rFlex / SCRecorder

iOS camera engine with Vine-like tap to record, animatable filters, slow motion, segments editing
Apache License 2.0
3.06k stars 583 forks source link

Will block the other audio channel #379

Open Olive-l opened 7 years ago

Olive-l commented 7 years ago

When call SCRecorder up, even only taking a photo, will block the other audio channel which in playing.

Should we can add 2 lines code as blow, when stop the recorder running:

AVAudioSession *audioSession=[AVAudioSession sharedInstance]; if (audioSession) { [audioSession setActive:NO withOptions:AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation error:nil]; }