一.音乐播放类概念
iOS 下能支持歌曲和声音播放的的类有几个:
- SystemSound
AVFoundtion库中的AVAudioPlayer #重要
MediMPMusicPlayerController
常用音频控件
3. MPMediaPickerController 本地音乐库选择器
5. MPVolumeView 播放进度条
这里有一个PPT在解释几种概念:
https://ccrma.stanford.edu/~jsanchez/NSSpain.pdf
这教程中同时用不同机制播放例子:
https://github.com/jsanchezsierra/AudioLab
声音可视化的设计
如果想要程序中输出声音,波形,频谱以及其它特效,
一定要看一下这一篇教程:
iPodVisualizer
http://www.raywenderlich.com/36475/how-to-make-a-music-visualizer-in-ios
它是种用AVAudioPlayer 的averagePowerForChannel 这样接口来输出波形文件。
MPMusicPlayerController没有发现支持这一功能
aurioTouch
另外Apple官方给出一个输出例子:aurioTouch 录音数据的波形,其中带普通波形文件,以及经过FFT运算得到频谱数据。可以参考。
源码在此:https://developer.apple.com/library/prerelease/ios/samplecode/aurioTouch/Introduction/Intro.html
以及更新版(苹果已经移走这个版本)
https://github.com/caseytcaprice/aurioTouch2
根据
https://github.com/irtemed88/PitchDetector
PitchDetector
画得更加完美的波形文件:
https://github.com/irtemed88/PitchDetector
SpeakHere
Apple官方给的例子,显示录音实时波开:
https://developer.apple.com/library/ios/samplecode/SpeakHere/Introduction/Intro.html
AvTouch
更简单的声音转波形的例子
https://developer.apple.com/library/ios/samplecode/avTouch/Introduction/Intro.html
选择系统歌曲文件
音乐App的歌曲来源有三种,一个是本地沙盒自带歌曲,另一个网络歌曲,
选择系统音乐库
第三个就系统音乐库带的歌曲,
它可以由 MPMediaPickerController 类来调用
- (IBAction)addPressed:(id)sender {
MPMediaType mediaType = MPMediaTypeMusic;
MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes:mediaType];
picker.delegate = self;
[picker setAllowsPickingMultipleItems:YES];
picker.prompt = NSLocalizedString(@"Select items to play", @"Select items to play");
[self presentViewController:picker animated:YES completion:nil];
}
它通过MPMediaPickerControllerDelegate接口返回一个
MPMediaItemCollection 选择的歌曲列列表,只需对MPMediaPickerController调用如下接口即可进行播放,以及上一首,下一首
[self.player setQueueWithItemCollection:self.collection];
如果是AVAudioPlayer来播放需要做得更多一点。即可把MPMediaItemCollection里歌曲URL取出来,直接传给AVAudioPlayer即可,这个URL格式类似于
ipod-library://item/item.m4a?id=1529654720874100371
- (void) mediaPicker: (MPMediaPickerController *) mediaPicker didPickMediaItems: (MPMediaItemCollection *) collection {
MPMediaItem *item = [[collection items] objectAtIndex:0];
NSURL *url = [item valueForProperty:MPMediaItemPropertyAssetURL];
// Play the item using AVPlayer
self.avAudioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
[self.avAudioPlayer play];
}
列表播放
MMMediaPlayer是自动支持,播放下一首,上一首可用如下方法:
上一首:
- (IBAction)rewindPressed:(id)sender {
if ([self.player indexOfNowPlayingItem] == 0) {
[self.player skipToBeginning];
} else {
[self.player endSeeking];
[self.player skipToPreviousItem];
}
}
下一首:
- (IBAction)fastForwardPressed:(id)sender {
NSUInteger nowPlayingIndex = [self.player indexOfNowPlayingItem];
[self.player endSeeking];
[self.player skipToNextItem];
if ([self.player nowPlayingItem] == nil) {
if ([self.collection count] > nowPlayingIndex+1) {
// added more songs while playing
[self.player setQueueWithItemCollection:self.collection];
MPMediaItem *item = [[self.collection items] objectAtIndex:nowPlayingIndex+1];
[self.player setNowPlayingItem:item];
[self.player play];
}
else {
// no more songs
[self.player stop];
NSMutableArray *items = [NSMutableArray arrayWithArray:[self.toolbar items]];
[items replaceObjectAtIndex:3 withObject:self.play];
[self.toolbar setItems:items];
}
}
}
暂停和恢复播放:
- (IBAction)playPausePressed:(id)sender {
[self.pause setTintColor:[UIColor blackColor]];
MPMusicPlaybackState playbackState = [self.player playbackState];
NSMutableArray *items = [NSMutableArray arrayWithArray:[self.toolbar items]];
if (playbackState == MPMusicPlaybackStateStopped || playbackState == MPMusicPlaybackStatePaused) {
[self.player play];
[items replaceObjectAtIndex:3 withObject:self.pause];
} else if (playbackState == MPMusicPlaybackStatePlaying) {
[self.player pause];
[items replaceObjectAtIndex:3 withObject:self.play];
}
[self.toolbar setItems:items animated:NO];
}
AVAudioPlayer 有播放结束的调用,因此在的上一首播完,重设一下一首歌即可
音乐后台播放
如果需要后台播放音乐,需要在应有的info.plist声明
否则会被系统强行干掉。
网络音频播放
AVAudioPlayer 不直接支持网络音频播放,可以先下载数据到一个NSData ,然后进行播放。
NSData *mydata=[[NSDataalloc]initWithContentsOfURL:[NSURLURLWithString:command]];
AVAudioPlayer *player=[[AVAudioPlayeralloc]initWithData:mydata error:nil];
[player prepareToPlay];
[player play];
但这种对于流媒体就无能为例了。因此可以使用更新的AVPlayer,它能直接播放(但是底层接口较少)
AVPlayer * _player = [[AVPlayer alloc] initWithURL:[NSURL URLWithString:@"http://stream.jewishmusicstream.com:8000"]];
音乐按键控制
AudioPlayer 可以接收 线控及蓝牙耳机的按键控制,
前题的要真的有一首的歌曲播放时,才能捕获按键。
这个可以在AppDelegate 中remoteControlReceivedWithEvent来捕获各种按键。
- (void)remoteControlReceivedWithEvent:(UIEvent *)event
{
NSLog(@"remoteControlReceivedWithEvent %d",event.subtype);
switch (event.subtype) {
case UIEventSubtypeRemoteControlPlay:
[self postNotificationWithName:remoteControlPlayButtonTapped];
break;
case UIEventSubtypeRemoteControlPause:
[self postNotificationWithName:remoteControlPauseButtonTapped];
break;
case UIEventSubtypeRemoteControlStop:
[self postNotificationWithName:remoteControlStopButtonTapped];
break;
case UIEventSubtypeRemoteControlNextTrack:
[self postNotificationWithName:remoteControlForwardButtonTapped];
break;
case UIEventSubtypeRemoteControlPreviousTrack:
[self postNotificationWithName:remoteControlBackwardButtonTapped];
break;
default:
[self postNotificationWithName:remoteControlOtherButtonTapped];
break;
}
}
理论上,可以在后台不断播放一段音频(音量设为0)来实现在应用中捕获耳机按键。比如蓝点工坊就用这个方法把蓝牙耳机充当自拍器用。
但是这种用法是过不了App Store 的审核 ,所以只能用Ad hoc发行方法。
具体参考:
https://github.com/MosheBerman/ios-audio-remote-control
它是在后台不断播放一个网络电台节目来达到目的,实际蓝点工坊测试测放App自带一个声音文件,如caf效果是一样的。
iOS 音频开发经验汇总的更多相关文章
-
iOS视频开发经验
iOS视频开发经验 手机比PC的优势除了便携外,我认为最重要的就是可以快速方便的创作多媒体作品.照片分享,语音输入,视频录制,地理位置.一个成功的手机APP从产品形态上都有这其中的一项或多项,比如in ...
-
一篇对iOS音频比较完善的文章
转自:http://www.cnblogs.com/iOS-mt/p/4268532.html 感谢作者:梦想通 前言 从事音乐相关的app开发也已经有一段时日了,在这过程中app的播放器几经修改我也 ...
-
iOS音频AAC视频H264编码 推流最佳方案
iOS音频AAC视频H264编码 推流最佳方案 项目都是个人的调研与实验,可能很多不好或者不对的地方请多包涵. 1 功能概况 * 实现音视频的数据的采集 * 实现音视频数据的编码,视频编码成 ...
-
IOS 音频开发文件大小计算
音频基础知识 音频文件计算大小 音频转码 标签(空格分隔): 调查 IOS音频 https://developer.apple.com/library/ios/documentation/MusicA ...
-
iOS音频处理
ios音频处理 1. iOS底层音频处理技术(带源代码) http://www.cocoachina.com/ios/20111122/3563.html 2.ios 音频入门 http://blog ...
-
IOS 音频播放
iOS音频播放 (一):概述 前言 从事音乐相关的app开发也已经有一段时日了,在这过程中app的播放器几经修改我也因此对于iOS下的音频播放实现有了一定的研究.写这个系列的博客目的一方面希望能够抛砖 ...
-
iOS音频播放(一):概述
(本文转自码农人生) 前言 从事音乐相关的app开发也已经有一段时日了,在这过程中app的播放器几经修改,我也因此对于iOS下的音频播放实现有了一定的研究.写这个 系列的博客目的一方面希望能够抛砖引玉 ...
-
Appium - iOS 各种问题汇总
Appium - iOS 各种问题汇总 作者: Max.Bai 时间: 2014/10 Appium - iOS 各种问题汇总 1. Appium 滑动: swipe 有三种方式: 第一种:swi ...
-
iOS 学习资料汇总
(适合初学者入门) 本文资料来源于GitHub 一.视频教程(英文) Developing iOS 7 Apps for iPhone and iPad斯坦福开放教程之一, 课程主要讲解了一些 iOS ...
随机推荐
-
那些PHP中没有全称的简写
PHP中的GD库,全网没发现GD二字母的全称是什么,包括PHP.net,都搜不到GD.G应该是graphi,D是什么? die: 从php_mysql.dll到php_mysqli的变化,那个i是什么 ...
-
c语言数据结构之 快速排序
编译器:VS2013 #include "stdafx.h"#include<stdlib.h> //函数声明 void QuickSort(int a[],int n ...
-
安装多JDK后,java编译环境和运行环境版本(JDK版本) 不一致解决:
由于之前安装过JDK1.7 ,现在一个项目是JDK1.5的,那么需要更改了环境变量了,此处不再赘述如何设置JDK 的环境变量了.然后网上找来方法: 在安装多个jdk后,出现了java -version ...
-
git 安装与使用场景
1. 安装 yum install git #自动安装依赖 centos sudo apt-get install git #ubutu http://msysgit.github.io/ #wind ...
-
sql server 2008有关SQL的模糊查询
执行 数据库查询时,有完整查询和模糊查询之分. 一般模糊语句如下: SELECT 字段 FROM 表 WHERE 某字段 Like 条件 其中关于条件,SQL提供了四种匹配模式: 1,%:表示任意0个 ...
-
什么是DNS劫持和DNS污染?
什么是DNS劫持和DNS污染? http://blogread.cn/it/article/7758?f=weekly 说明 我们知道,某些网络运营商为了某些目的,对 DNS 进行了某些操作,导致使用 ...
-
iOS开发网络篇之文件下载、大文件下载、断点下载
from: http://www.jianshu.com/p/f65e32012f07
-
CSAPP-链接
主要任务: 1.符号解析 在声明变量和函数之后,所有的符号声明都被保存到符号表. 而符号解析阶段会给每个符号一个定义. 2.重定位: 把每个符号的定义与一个内存位置关联起来,然后修改所有对这些符号的引 ...
-
LeetCode算法题(长期更新)
1.给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标. 你可以假设每种输入只会对应一个答案.但是,你不能重复利用这个数组中同样 ...
-
在iOS上使用ffmpeg播放视频
国外靠谱的有这几个:1.Mooncatventures group https://github.com/mooncatventures-group 2.KxMoviePlayer (use Open ...