I have to record audio on an iPhone that will play back on Windows Media Player, using no non-standard codecs; that is, using no codecs that don't already ship with WMP. (Corporate requirement.) The audio has to go base-64 to a server, so I need to get the audio size as small as possible. Even at 8Kb recording frequency, AIFF files take ginormous amounts of space. I can't seem to find a compressed AIFF format that WMP will swallow.
|
|
Best bet is to write WAV files with ulaw or alaw compression (the Here's some code to set up an ExtAudioFile instance to write ulaw:
Hope that helps. --- ADDED --- Here are modifications to the SpeakHere sample code to get ulaw compression: SpeakHereController.mm:116
SpeakHereController.mm:158
AQRecorder.mm:192
AQRecorder.mm:215
|
||||||||||
|
