在iOS9之前,视频播放使用MPMoviePlayerController来实现。
在iOS9之后,MPMoviePlayerController被废弃了,取代它的是AVPlayerViewController
MPMoviePlayerController
MPMoviePlayerController包含在MediaPlayer.framwork框架中,可以实现本地视频和网络视频的播放。MPMoviePlayerController和MPMoviePlayerViewController这2个类都可以实现视频的播放,MPMoviePlayerViewController继承自UIViewController,默认有一个全屏播放的view,并且是自动播放的。MPMoviePlayerController继承自NSObject(一开始不知道在addChildViewController:的时候挂了),使用的时候需要设置view的frame
//
// ViewController.m
// MPMovicePlayerController
//
// Created by yangguangyu on 16/8/18.
// Copyright © 2016年 yangguangyu. All rights reserved.
//
#import "ViewController.h"
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController ()
@property (nonatomic, strong) MPMoviePlayerController *player;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"LG 观韵创意广告 典雅中国风_高清.mp4" ofType:nil];
NSURL *url = [NSURL fileURLWithPath:path];
[self playVideoWithUrl:url];
}
-(void)playVideoWithUrl:(NSURL *)url {
//三句代码就可以,并且自动播放
// MPMoviePlayerViewController *viewPlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
// [self addChildViewController:viewPlayer];
// [self.view addSubview:viewPlayer.view];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:url];
self.player = player;
player.view.frame = self.view.frame;
[self.view addSubview:player.view];
[player play];
}
@end
如果需要监听视频的状态,可以进头文件看一下,里面有很多的通知可以用
KRVideoPlayer基于MPMoviePlayerController的第三方,需要的可以看一下
AVPlayerViewController
AVPlayerViewController在AVKit.framework中,用来替代MPMoviePlayerController。使用起来还是很简单的,不过需要注意的是AVPlayer是在AVFoundation框架中的,导入的时候AVFoundation也需要导入。
//
// ViewController.m
// AVPlayer
//
// Created by yangguangyu on 16/8/18.
// Copyright © 2016年 yangguangyu. All rights reserved.
//
#import "ViewController.h"
#import <AVKit/AVKit.h>
#import <AVFoundation/AVFoundation.h>
#import "MyAVPlayerViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"LG 观韵创意广告 典雅中国风_高清.mp4" ofType:nil];
NSURL *url = [NSURL fileURLWithPath:path];
AVPlayerViewController *vc = [[AVPlayerViewController alloc] init];
vc.player = [[AVPlayer alloc] initWithURL:url];
vc.view.frame = self.view.frame;
[self addChildViewController:vc];//这句不写貌似AVPlayerViewController也不会挂掉
[self.view addSubview:vc.view];
[vc.player play];
}
@end
如果需要自己定制一下播放器的界面,可以使用苹果提供的AVPlayerLayer类来做。AVPlayerLayer这个类是CALayer 的子类,专门用来显示AVPlayer的视频播放。比较前面的直接用一个控制器要更加轻量级,最重要的是可以灵活的定制界面。
self.player = [[AVPlayer alloc] initWithURL:url];
AVPlayerLayer *layer = [AVPlayerLayer playerLayerWithPlayer:self.player];
layer.frame = self.view.frame;
[self.view.layer addSublayer:layer];
提供几个框架
VKVideoPlayer
ZFPlayer
ZFPlayer的swift版本
我关注的大神,很多分享
第三方框架
无论是MPMoviePlayerController还是AVPlayer来播放视频都相当强大,但是它也存在着一些不可回避的问题,那就是支持的视频编码格式很有限:H.264、MPEG-4,扩展名(压缩格式):.mp4、.mov、.m4v、.m2v、.3gp、.3g2等,如果是RMVB就不行了,我们可以借助第三方的框架来实现更多格式的支持VLC,FFmpeg。
提供几个框架
kxmovie 基于FFmpeg
ijkplayer直播的貌似很多都是用的这个
视频录制
iOS的视频录制可以通过2种方式
1.UIImagePickerController(视频的录制,以及图片的拍摄,图片选择)
The UIImagePickerController class manages customizable, system-supplied user interfaces for taking pictures and movies on supported devices, and for choosing saved images and movies for use in your app.
从苹果官方文档中找的一句话,大概意思是说 UIImagePickerController可以用来拍照、录制视频,或者用来选取以及保存的图片和视频。
2.AVFoundation
AVFoundation提供了一些方便的类(AVAudioPlayer、AVAudioRecorder、AVPlayer)来让我们使用,但是在视频录制的时候,相对来说就会复杂一些,没有现成的可以直接调用。
AVFoundation录制视频的步骤:
- 输入设备:麦克风,摄像头,键盘...
- 输出设备:解析数据
- 会话: 连接输入和输出设备
- 预览(显示)图层:在屏幕上展示
//
// ViewController.m
// 视频录制
//
// Created by yangguangyu on 16/8/18.
// Copyright © 2016年 yangguangyu. All rights reserved.
//
#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>
@interface ViewController ()<AVCaptureFileOutputRecordingDelegate>
@property (nonatomic, strong) AVCaptureDeviceInput *input;
@property (nonatomic, strong) AVCaptureMovieFileOutput *output;
@property (nonatomic, strong) AVCaptureSession *session;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//1.输入设备
//指定是视频输入设备
AVCaptureDevice *device = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo].firstObject;
self.input = [[AVCaptureDeviceInput alloc] initWithDevice:device error:nil];
//2.输出设备 -- 用来解析数据
/*
AVCaptureMetadataOutput //元数据(查的字典),应该就是没有进过处理的数据
AVCaptureFileOutput //把数据当做文件来处理
AVCaptureMovieFileOutput //把数据当做视频文件来处理
AVCaptureVideoDataOutput //把数据当做视频的data处理
AVCaptureAudioDataOutput //把数据当做音频的data处理
AVCaptureStillImageOutput //把数据当做静态图片处理处理 -- layer显示的时候就会是图片,不再是视频了
*/
//指定是视频文件输出
self.output = [[AVCaptureMovieFileOutput alloc] init];
//3.会话
self.session = [[AVCaptureSession alloc] init];
//连接输入设备
if ([self.session canAddInput:self.input]) {
[self.session addInput:self.input];
}
//连接输出设备
if ([self.session canAddOutput:self.output]) {
[self.session addOutput:self.output];
}
//设置代理,监听输出的数据
NSURL *url = [NSURL fileURLWithPath:@"/Users/yangguangyu/Desktop/123.mp4"];
NSLog(@"%@",url);
[self.output startRecordingToOutputFileURL:url recordingDelegate:self];
//4.预览图层
AVCaptureVideoPreviewLayer *layer = [AVCaptureVideoPreviewLayer layerWithSession:self.session];
layer.frame = [UIScreen mainScreen].bounds;
[self.view.layer addSublayer:layer];
}
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
if ([self.session isRunning]) {
[self.session stopRunning];
}else {
[self.session startRunning];
}
}
-(void)captureOutput:(AVCaptureFileOutput *)captureOutput didStartRecordingToOutputFileAtURL:(NSURL *)fileURL fromConnections:(NSArray *)connections {
NSLog(@"开始录制。。。");
}
-(void)captureOutput:(AVCaptureFileOutput *)captureOutput didFinishRecordingToOutputFileAtURL:(NSURL *)outputFileURL fromConnections:(NSArray *)connections error:(NSError *)error {
NSLog(@"%@",outputFileURL);
}
@end
上面的录制视频代码有一个问题,不能调用代理方法,暂时先放一下,有时间再弄一下。
总结:
UIImagePickerController,AVPlayerViewController和MPMoviePlayerController都是被苹果进一步的封装,让开发者可以用更少的学习成本来实现想要的功能。高度的封装意味着在自定义这块就会差一些,比如在二维码的扫描这块,虽然都是调用的摄像头来获取数据的,但是如果用UIImagePickerController就不能实现这个功能。