i am new in cocos2d and facing hard time to find the best file format which is supported in cocos2d ? and can i use ogg file format if Yes then please any link how to use it is cocos2d
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Here is the way to convert audio to best iOS formate: Click HERE Open terminal and run this command:
|
|||
|
|
|
Any file that are supported in iPhone but for me |
|||
|
|
|
No ogg on iOS. Here's the AVAudioPlayer supported audio formats list. You also have to differentiate between background audio (streaming audio) and audio effects. For the former you should use mp3 and play only one mp3 at a time because the iOS devices can only decode one mp3 at a time using hardware. Additional mp3 are decoded with the CPU. For audio effects uncompressed .caf and .wav files are standard. You want them to be 16-bit, mono and using a sample rate of 11, 22 or 44 kHz depending on the quality you need. Personally I would default to 22 kHz. |
||||
|
|