标签:
使用AVPlayer封装实现了本地视频播放,以及边下边播在线视频,缓存完成后将视频保存在本地文件夹中,下次播放时直接从本地播放。
并且实现了左右滑动快进快退视频、上下滑动调整音量,以及全屏功能。
HcdCachePlayer
简单介绍
用法
#import "HcdCacheVideoPlayer.h"
1
2
3
4
5
|
HcdCacheVideoPlayer *play = [HcdCacheVideoPlayer sharedInstance]; UIView *videoView = [[UIView alloc]initWithFrame:CGRectMake(0, 64, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.width * 0.5625)]; [ self .view addSubview:videoView]; [play playWithUrl:[ NSURL URLWithString: @"http://7xsnx0.com2.z0.glb.qiniucdn.com/14651947751451.mp4" ] showView:videoView andSuperView: self .view]; |
标签:
原文地址:http://www.cnblogs.com/Code4/p/5650981.html