视频

支持视频格式: WMV,AVI,MKV,RMVB,RM,XVID,MP4,3GP, MPG等。支持音频格式:MP3,WMA,RM,ACC,OGG,APE,FLAC,FLV等。 

框架

自定义视频框的框架

#import <AVFoundation/AVFoundation.h>

 NSString *string = [[NSBundle mainBundle]pathForResource:@"视频名"ofType:nil];

    NSURL *url = [NSURL fileURLWithPath:string];

    AVPlayer *player = [AVPlayer playerWithURL:url];

    AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];

    playerLayer.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height);

    [self.view.layer addSublayer:playerLayer];

自带的视频框的框架

#import <AVKit/AVKit.h>

@property(nonatomic,strong)AVPlayerViewController *player;

NSString *path = [[NSBundle mainBundle]pathForResource:@"我是艺术(I'm ill)-art--Hello Venus--art-ea189705d401ce51190a6e380f734203.mp4" ofType:nil];

    NSURL *url = [NSURL fileURLWithPath:path];

    AVPlayer *player = [AVPlayer playerWithURL:url];

    _player = [[AVPlayerViewController alloc]init];

    _player.player = player;

    [self presentViewController:_player animated:YES completion:nil];

转载于:https://my.oschina.net/j315088037/blog/740021

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值