iOS 做视频播放器的时候有一个很大的坑,就是系统的自带的播放器有很大的限制,有些格式的视频无法播放
这个时候我们就要借助一下第三方库等其他方式来实现,VLC就是其中一个,而且可以说是最好的一个
第一次接触VLC到官网去下载,很多人都会挑选最新的去下载,认为最新的是最完美的,可是下载完以后,集成近项目后发现出现错误了
MobileVLCKit(libvideotoolbox_plugin_la-videotoolbox.o)
这个错误我也找了好久,发现并不能解决,后来发现,VLC最新的不一定好用,所以我就又找了一个,最后才成功使用。VLC库非常大
以下内容都是手动添加
百度云下载链接:https://pan.baidu.com/s/11gwgTP24EG4GIv86GRPldg 密码:10hy
下载完成后将库导进项目,开始配制环境
首先添加依赖库。
AudioToolbox.framework
VideoToolbox.framework
CoreMedia.framework
CoreVideo.framework
CoreAudio.framework
AVFoundation.framework
MediaPlayer.framework
libstdc++.6.0.9.tbd
libiconv.2.tbd
libc++.1.tbd
libz.1.tbd
libbz2.1.0.tbd
由于库是C++编写的,需要接一个文件改成.mm后
在Build Setting 设置中 搜索C++ Standard Library 改为GNU模式
然后就可以使用了。
播放视频
首先、引入#import <MobileVLCKit/MobileVLCKit.h>头文件
接下来创建对象
@property (nonatomic,strong) VLCMediaPlayer *player;//播放器
@property (nonatomic,strong) UIView *videoView;//展示的View
在下来就是使用播放器,方法有很多,我就先写一个播放的
_videoView = [[UIView alloc] initWithFrame:CGRectMake(0, SafeAreaTopHeight, SCREEN_WIDTH,200)];
NSString *path=[[NSBundle mainBundle] pathForResource:@"testvideo" ofType:@"mov"];
[self.view addSubview:_videoView];
_player = [[VLCMediaPlayer alloc] initWithOptions:nil];
_player.drawable =_videoView;
_player.media = [VLCMedia mediaWithURL:[NSURL fileURLWithPath:path]];
[_player play];
视频获取缩略图
首先引入头文件
import <MobileVLCKit/VLCMediaThumbnailer.h>
import <MobileVLCKit/MobileVLCKit.h>
然后遵守以下协议
VLCMediaThumbnailerDelegate
创建对象
@property (strong,nonatomic) VLCMediaThumbnailer *thumbnailer;
然后就是直接使用
/**
创建获取缩略图对象
@param path 视频地址
*/
- (void)getVideoImage:(NSString*)path{
//创建对象有两种类型,一种是网络视频,另一种是本地视频 网络视屏用[VLCMedia mediaWithURL:path] 本地 [VLCMedia mediaWithPath:path]
// _thumbnailer = [VLCMediaThumbnailer thumbnailerWithMedia:[VLCMedia mediaWithURL:path] andDelegate:self];
_thumbnailer = [VLCMediaThumbnailer thumbnailerWithMedia:[VLCMedia mediaWithPath:path] andDelegate:self];
[_thumbnailer fetchThumbnail];
}
/**
获取视频缩略图超时
@param mediaThumbnailer mediaThumbnailer
*/
- (void)mediaThumbnailerDidTimeOut:(VLCMediaThumbnailer *)mediaThumbnailer{
_imageView.image = [UIImage imageNamed:@"homepage_tabheaderview_back.png"];
}
/**
协议回调获取缩略图
@param mediaThumbnailer mediaThumbnailer
@param thumbnail 视频缩略图
*/
- (void)mediaThumbnailer:(VLCMediaThumbnailer *)mediaThumbnailer didFinishThumbnail:(CGImageRef)thumbnail{
UIImage *image = [UIImage imageWithCGImage:thumbnail];
if (image == nil) {
image = [UIImage imageNamed:@"homepage_tabheaderview_back.png"];
} else {
_imageView.image = image;
}
}
以上就是VLC的简单使用,希望对大家有用