Hi!...in Gideros player and device real i get "...folder/archive.wav: Sound format is not supported." ...what is the problem?
with mp3 files I have no problems...I want to use .wav files for sound effects but I can not because it comes out that the format is not supported. For background music i use .mp3.Thanks for your answers
Comments
auido.wav -> WAV (Microsoft 16 bit PCM with sign) -> 98.0Kb -> Working
audio.wav -> GSM 6.10 WAV (mobile devices) -> 5.07Kb -> Not working
audio.mp3 -> Mp3 -> 9.79Kb -> Working
File convert mp3 to wav -> audio.wav -> 103Kb -> Not working
I want to use wav sound effects. But mp3 weighs much less.
Will I have a memory problem when using mp3 files and not use wav?
I found this
http://www.giderosmobile.com/forum/discussion/comment/22927 # Comment_22927
According to @ Atilim:
Atilim said:
Hi all,
You should use. Wav files for sound effects and. Mp3 for background music. Here are the advantages and disadvantages of these:
wav files-: Entire sound is loaded into memory. You have to play very low latency. Consumes little CPU while playing. Simultaneously Suitable for sound effects played.
mp3 files: Sound is played by reading small chunks THEREFORE consume little memory. Compared to consume more CPU. Wav files. Suitable for background music / speech. According to my tests, playing a single mp3 consume About% 20 of the CPU on iPod touch 2nd gen.
auido.wav -> 49.0Kb -> Working
But it's still heavier than mp3.
Will I have a memory problem when using mp3 files and not use wav?
That is one of the reasons to use wav for SFX and mp3 for BG music, as BG music would probably weight more (so using mp3 would compress it) and it does not get bothered by delay.
Sound effects however usually need to be played immediately, after some action of user, so they should weight more (which means they are uncompressed) and will be played almost instantly
The only problem I see is if you use many wav files, since they'd have a bigger weight to the application.
Imagine if you have a zoo in your application and you have 100 sound effects (a 25kb each sound) you would have to 2.5Mb wav, mp3 you would have compared to 0.5Mb (a 5kb each sound).
Which would be better? Always charge wav sound files?