Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
662 views
in Technique[技术] by (71.8m points)

audio - iPhone - some sound files not playing

I have a list of short wav files. Two of these files do not play on either the simulator or the device itself. All are wav files 1 second long.

This is how I play the files

SystemSoundID soundID;
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"sound1" ofType:@"wav"];

NSURL *fileUrl = [NSURL fileURLWithPath:filePath];
AudioServicesCreateSystemSoundID((CFURLRef)fileUrl, &soundID);
AudioServicesPlaySystemSound(soundID);

Can someone please tell me what the problem could be. Thanks.

P.S. When I view the files in Finder, the files not playing show the default player as QuickTime and the others show the default player as iTunes if that helps in any way.

The solution as Alan suggested is to use AIFF files. To convert wav to AIFF, open the sound file in iTunes. In iTunes, select Preferences->General->Import Settings->Import using AIFF Encoder. Select the sound file and in Advanced menu option select the option "Create AIFF version"

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The iPhone only supports the following codecs:

  • AMR (Adaptive Multi-Rate, a speech codec)
  • iLBC (internet Low Bitrate Codec, also a speech codec)
  • IMA/ADPCM (also known as IMA-4)
  • Linear PCM
  • μLaw and aLaw

Your WAV files may contain audio that is in a different format, so even though the iPhone supports WAV files, it might not support your specific WAV file.

The best option is normally to use the command line program "afconvert" to convert everything to CAF files (which is Apple's default format). e.g.:

afconvert sound1.wav sound1.caf

the full set of conversion options can be listed by running:

afconvert -h

This conversion will be lossless from most formats. The CAF file format is normally the fastest and lowest overhead to use on the iPhone.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...