应用程序音频不播放
App Audio Not Playing
所以在我的文件中我有以下代码,目的是在后台播放音乐文件:
-(void) BackGroundMusic {
NSString *soundPath = [[NSBundle mainBundle]pathForResource:@"LostInTheSea" ofType:@"mp3"];
SystemSoundID soundID;
AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath: soundPath], &soundID);
AudioServicesPlaySystemSound(soundID);
}
然后在视图中加载了我有的部分:
[self BackGroundMusic];
我添加了所有工具箱,例如 AVFoundation 和 AudioToolbox,但我听不到任何音频播放。请帮忙!
根据 document 对于 AudioServicesPlaySystemSound
:
您使用此功能播放的声音文件必须是:
No longer than 30 seconds in duration
In linear PCM or IMA4 (IMA/ADPCM) format
Packaged in a .caf, .aif, or .wav file
您不应该像 user523234 解释的那样使用系统声音来播放 mp3 文件。
请改用 AVAudioPlayer。这是一个无限循环的例子:
#import "AVFoundation/AVAudioPlayer.h"
#import "AVFoundation/AVAudioSession.h"
-(void)playbgMusic {
AVAudioPlayer *soundbgMusic;
NSString *soundPath;
soundPath= [[NSBundle mainBundle] pathForResource:@"bgMusic" ofType:@"mp3"];
soundbgMusic = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:soundPath] error:NULL];
soundbgMusic.volume = 1.0;
soundbgMusic.numberOfLoops = -1;
[soundbgMusic prepareToPlay];
soundbgMusic.currentTime = 0.0;
[soundbgMusic play];
}
所以在我的文件中我有以下代码,目的是在后台播放音乐文件:
-(void) BackGroundMusic {
NSString *soundPath = [[NSBundle mainBundle]pathForResource:@"LostInTheSea" ofType:@"mp3"];
SystemSoundID soundID;
AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath: soundPath], &soundID);
AudioServicesPlaySystemSound(soundID);
}
然后在视图中加载了我有的部分:
[self BackGroundMusic];
我添加了所有工具箱,例如 AVFoundation 和 AudioToolbox,但我听不到任何音频播放。请帮忙!
根据 document 对于 AudioServicesPlaySystemSound
:
您使用此功能播放的声音文件必须是:
No longer than 30 seconds in duration
In linear PCM or IMA4 (IMA/ADPCM) format
Packaged in a .caf, .aif, or .wav file
您不应该像 user523234 解释的那样使用系统声音来播放 mp3 文件。 请改用 AVAudioPlayer。这是一个无限循环的例子:
#import "AVFoundation/AVAudioPlayer.h"
#import "AVFoundation/AVAudioSession.h"
-(void)playbgMusic {
AVAudioPlayer *soundbgMusic;
NSString *soundPath;
soundPath= [[NSBundle mainBundle] pathForResource:@"bgMusic" ofType:@"mp3"];
soundbgMusic = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:soundPath] error:NULL];
soundbgMusic.volume = 1.0;
soundbgMusic.numberOfLoops = -1;
[soundbgMusic prepareToPlay];
soundbgMusic.currentTime = 0.0;
[soundbgMusic play];
}