VLC:一款基于VLC的在線視頻播放器

序言:VLC是開源的多媒體播放器,也是基于FFmpeg,而且現行的大部分常用的視頻格式都可以正常解碼和播放。基于編譯出來的MobileVLCKit.framework,我封裝了一款在線視頻播放器,托管的GitHub地址:基于VLC的在線視頻播放器

IMG_1003.PNG

IMG_1005.PNG
  • 項目結構:


    1.png
  • 播放器的使用也是非常的簡單,只要初始化后提供播放的URL即可開始播放。

 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];
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容