I need to record audio file in such a format which can be played on windows system also. I am using SpeakHere example's class AudioRecorder to record the audio but file recorded by this doesn't play on windows.

So what format flag should be used to achieve this compatibility. Currently my settings for format flags are as follows:

audioFormat.mSampleRate = 44100.0;
audioFormat.mFormatID   = formatID;//kAudioFormatLinearPCM
audioFormat.mChannelsPerFrame   = 1;
audioFormat.mFormatFlags    = kAudioFormatFlagIsSignedInteger |  kAudioFormatFlagIsPacked;
audioFormat.mFramesPerPacket    = 1;
audioFormat.mBitsPerChannel = 16;
audioFormat.mBytesPerPacket = 2;
audioFormat.mBytesPerFrame  = 2;
link|improve this question

0% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.