ios音频视频资料--备用
视频播放 MediaPlayer.framework
MPMoviePlayerViewController VS MPMoviePlayerController
MPMoviePlayerViewController |
MPMoviePlayerController |
|
版本支持 |
Available in iOS 3.2 and later. |
Available in iOS 2.0 and later.(多数属性支持3.2后) |
大小 |
只支持全屏播放 如果addsubview 不支持横竖屏 |
可全屏也可自己设置frame |
调用 |
presentMoviePlayerViewControllerAnimated: dismissMoviePlayerViewControllerAnimated |
addsubview: |
属性 |
moviePlayer [mMPVC. moviePlayer play]; |
BOOL shouldAutoplay NSTimInterval initialPlaybackTime NSTimeInterval duration MPMovieControlStyle controlStyle |
函数 |
initWithContentURL shouldAutorotateToInterfaceOrientation |
initWithContentURL requestThumbnailImagesAtTimes:timeOption thumbnailImageAtTime:timeOption timedMetadata (4.0) |
notification |
MPMoviePlayerPlaybackDidFinishNotification 播放完成 MPMovieMediaTypesAvailableNotification 视频开始播放 (载入完成) MPMoviePlayerNowPlayingMovieDidChangeNotification 视频开播 (开始载入) MPMoviePlayerPlaybackStateDidChangeNotification 播放状态变化 判断 mediaPlayer.playbackState MPMoviePlayerDidEnterFullscreenNotification 全屏 相关 |
另外 UIWebview播放方式 方便 但是对一些视频不支持 经测试有的流媒体的 使用 MPMoviePlayerController 可以播放 但 UIWebview不支持.
因 MPMoviePlayerController 为单例4.0之后 可使用 AVPlayerLayer 的播放方式 addSubLayer实现多个视频同时播放
player1 = [AVPlayer playerWithURL:[NSURL fileURLWithPath:moviePath]];
player1.actionAtItemEnd = AVPlayerActionAtItemEndNone;
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerItemDidReachEnd:)
name:AVPlayerItemDidPlayToEndTimeNotification
object:[player1 currentItem]];
[player1 play];
playerLayer1 = [AVPlayerLayer playerLayerWithPlayer:player1];
playerLayer1.frame = self.bounds;
[self.layer addSublayer:playerLayer1];
参考:
MPMoviePlayerViewController
MPMoviePlayerController
http://developer.apple.com/library/ios/#documentation/mediaplayer/reference/MPMoviePlayerController_Class/Reference/Reference.html
音频播放
AVFoundation.framework
System Sound Services |
AVAudioPlayer 类 |
MPMusicPlayerController |
|
特点 |
播放短音效 |
播放任意长度音频 |
播放本地ipod音乐 |
版本 |
ios 2.0 or later |
ios 2.2 or later |
ios 3.0 later |
属性 |
playing,duration,currentTime, |
repeatMode,currentPlaybackTime, numberOfLoops |
|
常用方法: |
AudioServicesCreateSy stemSoundID(CFURLR inFileURL, SystemSoundID *outSystemSoundID) AudioServicesPlay SystemSound(SystemSoundID inSystemSoundID) |
- (id)initWithContentsOfURL:(NSURL *)url error:(NSError*)outError; - (id)initWithData:(NSData *)dataerror:(NSError *)outError; - (BOOL)play; - (void)pause; - (void)stop; |
applicationMusicPlayer; - (void)setQueueWithQuery:(MPMediaQuery *)query; -(void)play; -(void)pause; -(void)stop; |
一 各个播放器初始化方法:
1 System Sound Services
// 创建路径
NSString*dropMusicPath = [[NSBundle mainBundle] pathForResource:@"bird drop" ofType:@"wav"];
CFURLRefdropURL = (CFURLRef)[NSURL fileURLWithPath:dropMusicPath];
//创建系统声音
AudioServicesCreateSystemSoundID(dropURL, &birdDropID);
//播放音效
AudioServicesPlaySystemSound(birdDropID);
2 AVAudioPlayer 类
// 设置音乐文件路径
path = [[NSBundle mainBundle] pathForResource:@"InTheMood" ofType:@"mp3"];
// 设置 player url为本地音频文件路径
player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:&error];
在线播放用data初始化
player = [[AVAudioPlayer alloc] initWithData:receiveData error:&err];
[player play];
3 MPMusicPlayerController
player = [MPMusicPlayerController applicationMusicPlayer];
MPMediaItemCollection *_mediaCollection = [[MPMediaItemCollection alloc]initWithItems:SongList];
self.mediaCollection = _mediaCollection;
[_mediaCollection release];
[player setQueueWithItemCollection:mediaCollection];
[player setRepeatMode:MPMusicRepeatModeAll];
[player play];
二 音频后台播放:
(1) 设置 AVAudioSession 属性支持
NSError * err;
AVAudioSession*audioSession;
audioSession = [AVAudioSession sharedInstance];
[audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];
[audioSession setActive:YES error:nil];
(2) 设置工程文件plist属性
三 系统后台控制音频播放
(1) 重写方法 canBecomeFirstResponder 返回YES
- (BOOL)canBecomeFirstResponder
{
return YES;
}
- (void)viewDidLoad {
[super viewDidLoad];
[self canBecomeFirstResponder];
}
(2) 实现接收RemoteControlEvents方法
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[self becomeFirstResponder];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
[[UIApplication sharedApplication] endReceivingRemoteControlEvents];
[self resignFirstResponder];
}
(3) 在回调方法做相应处理
- (void) remoteControlReceivedWithEvent: (UIEvent *) receivedEvent {
if (receivedEvent.type == UIEventTypeRemoteControl)
{
switch (receivedEvent.subtype)
{
case UIEventSubtypeRemoteControlTogglePlayPause:
break;
case UIEventSubtypeRemoteControlPlay:
break;
case UIEventSubtypeRemoteControlPause:
break;
case UIEventSubtypeRemoteControlPreviousTrack:
break;
case UIEventSubtypeRemoteControlNextTrack:
break;
default:
break;
}
}
}
ios音频视频资料--备用的更多相关文章
- iOS 音频视频图像合成那点事
代码地址如下:http://www.demodashi.com/demo/13420.html 人而无信不知其可 前言 很久很久没有写点什么了,只因为最近事情太多了,这几天终于闲下来了,趁此机会,记录 ...
- 《转》iOS音频视频初级开发
代码改变世界 Posts - 73, Articles - 0, Comments - 1539 Cnblogs Dashboard Logout HOME CONTACT GALLERY RSS ...
- IOS音频视频
视频播放 MediaPlayer.framework MPMoviePlayerViewController VS MPMoviePlayerController MPMoviePlayerViewC ...
- iOS 音频视频制作
--iOS多媒体 概览 随着移动互联网的发展,如今的手机早已不是打电话.发短信那么简单了,播放音乐.视频.录音.拍照等都是很常用的功能.在iOS中对于多媒体的支持是非常强大的,无论是音视频播放.录制, ...
- iOS 音频/视频 学习目录
参考 iOS原生API 音/视频录制 编辑 https://www.cnblogs.com/kenshincui/p/4186022.html#summary iOS视频编解码常用库比较 http: ...
- iOS 直播-获取音频(视频)数据
iOS 直播-获取音频(视频)数据 // // ViewController.m // capture-test // // Created by caoxu on 16/6/3. // Copyri ...
- iOS音频AAC视频H264编码 推流最佳方案
iOS音频AAC视频H264编码 推流最佳方案 项目都是个人的调研与实验,可能很多不好或者不对的地方请多包涵. 1 功能概况 * 实现音视频的数据的采集 * 实现音视频数据的编码,视频编码成 ...
- iOS 微信 音频 视频自动播放
iOS 微信 音频 视频自动播放 http://www.w3ctech.com/topic/1165
- 2015最全iOS开发自学视频资料(基础+实战)
最全的iOS自学视频,包括c,objective-c,UI等等,没有你找不到的,只有你学不会的,只要你想学,这里都有你所需要的. 推荐教程点这里:http://www.mobiletrain.org/ ...
随机推荐
- typedef的使用2——定义函数
#include <stdio.h> #include <string.h> #pragma warning(disable:4996) //闲言碎语都先不要讲了,直接上函数吧 ...
- c数组和指针的理解
#include<stdio.h> int main(void) { ,,,,}; ); printf(,*(p-)); // ] = &a; √ // ] = a; × // ] ...
- [转载]“java.sql.SQLException:指定了无效的 Oracle URL”
原文地址:"java.sql.SQLException:指定了无效的 Oracle URL"作者:康愚 昨天晚上用MyEclipse连接Oracle,出现了" java. ...
- 关于Eclipse插件开发(四)-------给视图加下拉菜单和按钮和加入编辑器.
本例将给视图加入下拉菜单和按钮,同时再为列表添加一个右键菜单. 创建ActionGroup类 加入菜单和按钮的方法与SWT和JFace组件的一样,先创建一个ActionGroup代码如下: MyAct ...
- 浅谈在实验室的一个作品---8x8x8光立方
在实验室学习51单片机之后,觉得是得做点东西,提高一下动手能力,光立方就成了自己忙碌的目标.买了1000个灯,准备好之后就开始了为期一周的焊接, 一周之后就是这个样子啦.... 之后就进行了电路板的焊 ...
- db2相关问题及解决方法
DB2相关问题及解决方法: 一.DB2中的代码页(codepage)问题. DB2备份时发生过代码页错误的问题,修改代码页后备份正常,但创建数据库时又发生代码页的错误.这是DB2服务器使用的代码页配置 ...
- ArcEngine 直连连接SDE
关键代码IPropertySet pPropertySet = new PropertySetClass(); pPropertySet.SetProperty("S ...
- iOS-学习路线图(推荐)
在学习一个新的知识时,除了保持积极的态度.对知识的渴望,学习路线以及方法也是很重要的.在学习iOS的时候,遇到这样的情况,非常想去学习,提高,但是没有一个学习路线,不知道从哪里入手,该先学什么.在学什 ...
- 02_HttpClient_Get请求
[实例1. GET请求百度(乱码)] /** * Http GET请求百度,但是返回乱码 */ public static void main(String[] args) throws Except ...
- Java对象的序列化与反序列化:默认格式及JSON格式(使用jackson)
我的技术博客经常被流氓网站恶意爬取转载.请移步原文:http://www.cnblogs.com/hamhog/p/3558663.html,享受整齐的排版.有效的链接.正确的代码缩进.更好的阅读体验 ...