AFSoundManager
AFSoundManager copied to clipboard
iOS audio playing (both local and streaming) and recording made easy
``` NSURL *url = [NSURL URLWithString:@"http://222.186.15.28:8083/demo_store/2015/12/28/94ef7255caf8704acfa36fdf3d444052.mp3"]; NSURL *ceceurl = [NSURL URLWithString:@"http://www.cecesat.com/FileCenter/data/APS/TF/TPO-20-C1.mp3"]; AFSoundItem *item6 = [[AFSoundItem alloc] initWithStreamingURL:url ]; AFSoundItem *item7 = [[AFSoundItem alloc] initWithStreamingURL:ceceurl]; ``` item6 is ok,but item7 cant...
Is possible do such things with the library? start playing .mp3 from url immediately (like streaming or streaming) cache it and track caching progress during it's playback save cached file...
i found one bug, i want to play some mp3 in an queue, but the mp3 is very short, less than 1s,can‘t play other music unless the first one
how to remove the listener from the Afsoundplayback
> AFSoundManager/Classes/AFSoundRecord.m Null passed to a callee that requires a non-null argument `_recorder = [[AVAudioRecorder alloc] initWithURL:[NSURL fileURLWithPath:filePath] settings:0 error:nil]; `
GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1
For example:@"http://abv.cn/music/%E5%85%89%E8%BE%89%E5%B2%81%E6%9C%88.mp3"
As the title described, I'd like to let people can switch the output device between headphone and speaker while the sound is playing. For example, when people make his/her ear...