IOS播放音频 AVAudioPlayer(实例)

1. AVFoundation

Build Phases => Link Binary With Libraies => + => AVFoundation.framework => add

firstviewcontroller.h

C代码  

  1. #import <UIKit/UIKit.h>
  2. #import <AVFoundation/AVFoundation.h>
  3. @interface FirstViewController : UIViewController
  4. {
  5. __weak IBOutlet UILabel *label;
  6. AVAudioPlayer *player;
  7. }
  8. - (IBAction)toplay:(id)sender;
  9. @end
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>

@interface FirstViewController : UIViewController
{
    __weak IBOutlet UILabel *label;
    AVAudioPlayer *player;
}

- (IBAction)toplay:(id)sender;

@end

firstviewcontroller.m

C代码  

  1. - (IBAction)toplay:(id)sender
  2. {
  3. NSURL  *url = [NSURL fileURLWithPath:[NSString  stringWithFormat:@"%@/test.mp3",  [[NSBundle mainBundle]  resourcePath]]];
  4. NSError  *error;
  5. player  = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
  6. player.numberOfLoops = -1;
  7. [player play];
  8. [label setText:@"Play ..."];
  9. }
- (IBAction)toplay:(id)sender
{
    NSURL  *url = [NSURL fileURLWithPath:[NSString  stringWithFormat:@"%@/test.mp3",  [[NSBundle mainBundle]  resourcePath]]];

    NSError  *error;
    player  = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];

    player.numberOfLoops = -1;
    [player play];

    [label setText:@"Play ..."];
}

或者:

C代码  

  1. NSString *path = [[NSBundle mainBundle] pathForResource:@"sound" ofType:@"mp3"];
  2. NSError  *error;
  3. player = [[AVAudioPlayer alloc]initWithContentsOfURL:[[NSURL alloc]initFileURLWithPath:path]error:&error];
  4. [player prepareToPlay];
  5. player.numberOfLoops = -1;
  6. [player play];
NSString *path = [[NSBundle mainBundle] pathForResource:@"sound" ofType:@"mp3"];
NSError  *error;
player = [[AVAudioPlayer alloc]initWithContentsOfURL:[[NSURL alloc]initFileURLWithPath:path]error:&error];
[player prepareToPlay];
player.numberOfLoops = -1;
[player play];

test.mp3 拖放到 Supporting Files 文件夹。

播放,暂停和停止

C代码  

  1. [player play];  //播放
  2. [player pause]; //暂停
  3. [player stop];  //停止
[player play];  //播放
[player pause]; //暂停
[player stop];  //停止

更多功能:

1. 音量:

Java代码  

  1. player.volume=0.8;//0.0~1.0之间
player.volume=0.8;//0.0~1.0之间  

2. 循环次数

C代码  

  1. player.numberOfLoops = 3;//默认只播放一次 负数(-1)为无限循环
player.numberOfLoops = 3;//默认只播放一次 负数(-1)为无限循环

3.播放位置

C代码  

  1. player.currentTime = 15.0;//可以指定从任意位置开始播放
player.currentTime = 15.0;//可以指定从任意位置开始播放 

3.1 显示当前时间

C代码  

  1. NSLog(@"%f seconds played so  far", player.currentTime);
NSLog(@"%f seconds played so  far", player.currentTime);

4.声道数

C代码  

  1. NSUInteger channels = player.numberOfChannels;//只读属性
NSUInteger channels = player.numberOfChannels;//只读属性 

5.持续时间

C代码  

  1. NSTimeInterval duration = player.dueration;//获取采样的持续时间
NSTimeInterval duration = player.dueration;//获取采样的持续时间  

6.仪表计数

C代码  

  1. player.meteringEnabled = YES;//开启仪表计数功能
  2. [ player updateMeters];//更新仪表读数
  3. //读取每个声道的平均电平和峰值电平,代表每个声道的分贝数,范围在-100~0之间。
  4. for(int i = 0; i<player.numberOfChannels;i++){
  5. float power = [player averagePowerForChannel:i];
  6. float peak = [player peakPowerForChannel:i];
  7. }
player.meteringEnabled = YES;//开启仪表计数功能
[ player updateMeters];//更新仪表读数
//读取每个声道的平均电平和峰值电平,代表每个声道的分贝数,范围在-100~0之间。
for(int i = 0; i<player.numberOfChannels;i++){
float power = [player averagePowerForChannel:i];
float peak = [player peakPowerForChannel:i];
}

7. 初始化播放器

C代码  

  1. [player prepareToPlay];
[player prepareToPlay];

8. 判断是否正在播放

C代码  

  1. [player isPlaying]
[player isPlaying]

9、代理方法

加入播放出现异常,或者被更高级别的系统任务打断,我们的程序还没来得及收场就挂了,怎么办?不急,我们可以通过几个委托方法很好地处理所有的情形。

首先给player设置委托是必须的:

C代码  

  1. player.delegate = self;
player.delegate = self;  

C代码  

  1. - (void)audioPlayerDidFinishPlaying:(AVAudioPlayer*)player successfully:(BOOL)flag{
  2. //播放结束时执行的动作
  3. }
  4. - (void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer*)player error:(NSError *)error{
  5. //解码错误执行的动作
  6. }
  7. - (void)audioPlayerBeginInteruption:(AVAudioPlayer*)player{
  8. //处理中断的代码
  9. }
  10. - (void)audioPlayerEndInteruption:(AVAudioPlayer*)player{
  11. //处理中断结束的代码
  12. }
- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer*)player successfully:(BOOL)flag{
    //播放结束时执行的动作
}
- (void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer*)player error:(NSError *)error{
    //解码错误执行的动作
}
- (void)audioPlayerBeginInteruption:(AVAudioPlayer*)player{
    //处理中断的代码
}
- (void)audioPlayerEndInteruption:(AVAudioPlayer*)player{
    //处理中断结束的代码
}

参考:

http://blog.csdn.net/xys289187120/article/details/6595919

http://blog.csdn.net/iukey/article/details/7295962

视频:

http://www.youtube.com/watch?v=kCpw6iP90cY

2. AudioToolbox

Build Phases => Link Binary With Libraies => + => AudioToolbox.framework => add

firstviewcontroller.h

C代码  

  1. #import <UIKit/UIKit.h>
  2. #import <AudioToolbox/AudioToolbox.h>
  3. @interface FirstViewController : UIViewController
  4. {
  5. }
  6. - (IBAction)toplay:(id)sender;
  7. @end
#import <UIKit/UIKit.h>
#import <AudioToolbox/AudioToolbox.h>

@interface FirstViewController : UIViewController
{
}

- (IBAction)toplay:(id)sender;

@end

firstviewcontroller.m

C代码  

  1. - (IBAction)toplay:(id)sender
  2. {
  3. CFBundleRef mainBundle = CFBundleGetMainBundle();
  4. CFURLRef soundFileURLRef;
  5. soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"sound1", CFSTR ("wav"), NULL);
  6. UInt32 soundID;
  7. AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
  8. AudioServicesPlaySystemSound(soundID);
  9. }
- (IBAction)toplay:(id)sender
{
    CFBundleRef mainBundle = CFBundleGetMainBundle();
    CFURLRef soundFileURLRef;
    soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"sound1", CFSTR ("wav"), NULL);

    UInt32 soundID;
    AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
    AudioServicesPlaySystemSound(soundID);
}

视频:

http://www.youtube.com/watch?v=lSJhYx28Krg&feature=youtu.be

时间: 2024-10-25 03:58:06

IOS播放音频 AVAudioPlayer(实例)的相关文章

iOS 播放音频的几种方法

iOS 播放音频的几种方法 iPhone OS 主要提供以下了几种播放音频的方法: System Sound Services AVAudioPlayer 类 Audio Queue Services OpenAL 1. System Sound Services System Sound Services 是最底层也是最简单的声音播放服务,调用 AudioServicesPlaySystemSound 这个方法就可以播放一些简单的音频文件,使用此方法只适合播放一些很小的提示或者警告音,因为它有

IOS 播放音频

1,播放短音频 #import <AudioToolbox/AudioToolbox.h>#import "GLYViewController.h"static void completionCallback(SystemSoundID mySSID){ AudioServicesPlaySystemSound(mySSID);}@interface GLYViewController () @end @implementation GLYViewControllerSys

iOS播放器 - AVAudioPlayer

今天记录一下AVAudioPlayer,这个播放器类苹果提供了一些代理方法,主要用来播放本地音频. 其实也可以用来播放网络音频,只不过是将整个网络文件下载下来而已,在实际开发中会比较耗费流量不做推荐. 下面是相关代码: #import "ViewController.h" //引入框架 #import <AVFoundation/AVFoundation.h> @interface ViewController () < AVAudioPlayerDelegate &

ios 播放音频 实现长时间后台运行(流氓)

对于ios7,苹果支持几种后台运行模式,backgroundTask,voip,后台播放音乐等,具体看官方文档就好. 我这边需要在后台跑一个长时间运行的计时器,所以就不能让app进入suspend状态. 很早以前听说可以通过后台播放音乐来实现,借鉴了一下,测试好几天,找出来了一个还比较靠谱的方案: 首先在 - (void)applicationDidEnterBackground:(UIApplication *)application{ } 里面申请backgroundTask [[UIApp

IOS 播放音频流媒体

#pragma mark - 加载播放数据 - (void)loadData:(NSString *)musicUrl { NSURL *playURL = [NSURL URLWithString:musicUrl]; self.playerItem = [AVPlayerItem playerItemWithURL:playURL]; //创建单利对象 self.playStationDetailsManager = [StationDetailsManager defaultManager

iOS 9音频应用播放音频之第一个ios9音频实例2

iOS 9音频应用播放音频之第一个ios9音频实例2 ios9音频应用关联 iOS9音频应用中对于在主视图上添加的视图或控件,在使用它们时必须要与插座变量进行关联.ios9插座变量其实就是为主视图中的视图或者控件起的别名,类似于实例化的对象.将主ios9视图中的Play Button按钮控件与插座变量playButton进行关联.具体的操作步骤如下: (1)使用设置编辑器的三个视图方式的图标,如图2.14所示,将Xcode的界面调整为如图2.15所示的效果. 图2.14  编辑器的三个视图方式的

iOS 9音频应用播放音频之控制播放速度

iOS 9音频应用播放音频之控制播放速度 iOS 9音频控制播放速度 iOS9音频文件在播放时是以一定的速度进行的.这个速度是可以进行更改的,从而实现iOS9音频文件的快速播放和慢速播放功能.要实现iOS9播放速度的更改需要使用AVAudioPlayer类中的rate属性实现.其语法形式如下: var rate: Float 其中,该属性设置的值为浮点类型,范围在0.5到2.0之间.如果该属性的值设置为1.0表示正常播放,它也是默认值.2.0表示以最快的速度进行播放,0.5表示以最慢的速度进行播

iOS 9音频应用播放音频之播放控制暂停停止前进后退的设置

iOS 9音频应用播放音频之播放控制暂停停止前进后退的设置 ios9音频应用播放控制 在“iOS 9音频应用播放音频之ios9音频基本功能”一文可以看到AVAudioPlayer类有很多的属性以及方法.本节将AVAudioPlayer类中常使用到的属性和方法进行详细的讲解. ios9音频应用暂停/停止 在音乐应用程序中都会有一个使音乐停止播放的按钮.当用户轻拍该按钮,正在播放的音乐就会停止.在iOS要想要正在播放的音频停止下来,可以使用AVAudioPlayer类中的pause()方法和stop

iOS开发—音频的播放的简单介绍和封装工具类

iOS开发—音频的播放的简单介绍和封装工具类 一.音效的播放简单介绍 简单来说,音频可以分为2种 (1)音效 又称“短音频”,通常在程序中的播放时长为1~2秒 在应用程序中起到点缀效果,提升整体用户体验 (2)音乐 比如游戏中的“背景音乐”,一般播放时间较长 框架:播放音频需要用到AVFoundation.framework框架 二.音效的播放 1.获得音效文件的路径 NSURL *url = [[NSBundle mainBundle] URLForResource:@"m_03.wav&qu