I create a .caf audio file using AVAudioRecorder and if I try and play it back using AVAudioPlay I get no sound on the iPhone (if played in simulator works fine). If I close my application and reopen the file plays fine. Also I am not able to adjust the phone volume after recording unless I close and reopen my application. Any ideas?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Was facing the same problem. Solved the problem by setting the AVAudioSession category to AVAudioSessionCategoryPlayback mode. This is my working code:
Also make sure that the audio recording has been finished successfully by implementing:
And check that you have added in your interface declaration. |
|||
|
|
|
I have the same problem with a aac file. I used ima4 before which worked perfectly! I guess the difference is, that aac is hardware and ima4 software decoded. Did you try to reinitialize the player when the file behind got rerecorded? That worked for me! Markus |
||||
|
|