tom

VLC:一款基于VLC的在线视频播放器

2017-07-28  本文已影响66人  yehkong

序言:VLC是开源的多媒体播放器,也是基于FFmpeg,而且现行的大部分常用的视频格式都可以正常解码和播放。基于编译出来的MobileVLCKit.framework,我封装了一款在线视频播放器,托管的GitHub地址:基于VLC的在线视频播放器

IMG_1003.PNG
IMG_1005.PNG
 NSURL *url = [NSURL URLWithString:@"http://v4ttyey-10001453.video.myqcloud.com/Microblog/288-4-1452304375video1466172731.mp4"];
 NSURL *bundleUrl = [[NSBundle mainBundle]URLForResource:@"YTVLCMoivePlayer" withExtension:@"bundle"];
NSBundle *myBundle = [NSBundle bundleWithURL:bundleUrl];
YTVLCMoivePlayer *player = [[YTVLCMoivePlayer alloc]initWithNibName:@"YTVLCMoivePlayer" bundle:myBundle];
//    YTVLCMoivePlayer *player = [[YTVLCMoivePlayer alloc]init];
    player.url = url;
[self presentViewController:player animated:YES completion:nil];
上一篇下一篇

猜你喜欢

热点阅读