AVCaptureSession cancels background audio

ε祈祈猫儿з 提交于 2019-11-29 14:55:47

问题


Whenever I start an AVCaptureSession running with the microphone as an input it cancels whatever background music is currently running (iPod music for instance). If I comment out the line adding the audio input, the background audio continues.

Does anyone know of a way to record video clips with the microphone while continuing to allow background audio to play? I've looked around a lot, and can't seem to find any references to this behavior.

Thanks for any help!


回答1:


Try setting kAudioSessionProperty_OverrideCategoryMixWithOthers as seen in https://stackoverflow.com/a/7426406/16572




回答2:


Is the background music a looping track? -- if so you could make it a system sound and tell it to re-play when it finishes playing. The reason being you can only have tracks up to 30 seconds as a system sound.

Don't know if it helps -- but thats one approach :)

Cheers,

Michael




回答3:


I had the same problem and used this in my app and it worked:

UInt32 audioRouteOverride = kAudioSessionCategory_AmbientSound;
AudioSessionSetProperty (kAudioSessionProperty_AudioCategory,sizeof (audioRouteOverride),&audioRouteOverride);

I was able to record video and audio and at the same time play a sound out of the speakers.



来源:https://stackoverflow.com/questions/3490786/avcapturesession-cancels-background-audio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!