使用AVAudioPlayer播放音乐文件无声音

Posted 锦夏ing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用AVAudioPlayer播放音乐文件无声音相关的知识,希望对你有一定的参考价值。

使用AVAudioPlayer播放本地音乐文件。

1、声明全局AudioPlayer变量:

@property(nonatomic,strong)AVAudioPlayer *movePlayer ; 
 
2、初始化变量并播放:
NSString *tmp=[[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:@"a.mp3"]; 
//NSString * tmp = [[NSBundle mainBundle] pathForResource:@"a" ofType:@"mp3"]; 
NSURL *medioUrl=[NSURL fileURLWithPath:[[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:@"audio/move.mp3"]];  
NSError *err=nil;  
self.movePlayer=[[AVAudioPlayer alloc] initWithContentsOfURL:medioUrl error:&err];  
self.movePlayer.volume=1.0;  
[self.movePlayer prepareToPlay];

if (err!=nil) {  

NSLog(@"move player init error:%@",err);  

}else {  

 [self.movePlayer play]; 

}

3、AVAudioPlayer 模拟器有声音,真机耳机有声音,扬音器没有声音解决办法

在创建:AVAudioPlayer前,加入以下代码

AVAudiosession *audioSession = [AVAudioSession sharedInstance];  

[audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];  

[audioSession setActive:YES error:nil]; 

 

以上是关于使用AVAudioPlayer播放音乐文件无声音的主要内容,如果未能解决你的问题,请参考以下文章

iPhone:MPMusicPlayerController 停止 AVAudioPlayer

carplay在播放音乐时,为啥音乐声音突然变小。

解决audio在苹果机播放无声音

播放无声视频以及音乐应用程序播放歌曲

一起播放 iPod 音乐和 avaudioplayer

AVAudioPlayer 问题(如果设备被锁定,音乐文件不会在后台模式下播放)