在UITableViewCell中播放视频的最佳方式是什么

时间:2015-04-22 05:11:08

标签: ios video avplayer

我正在尝试根据单元格位置在 UITableViewCell 中制作自动播放视频。

我正在使用 AVPlayer

这是我的代码:

    __weak typeof(self)this = self;

    NSString* videoPath = @"http://test.com/test.mp4";
    AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL URLWithString:videoPath] options:nil];
    NSArray* keys = [NSArray arrayWithObjects:@"playable",nil];

    [asset loadValuesAsynchronouslyForKeys:keys completionHandler:^(){
        AVPlayerItem* playerItem = [AVPlayerItem playerItemWithAsset:asset];
        this.avPlayer = [AVPlayer playerWithPlayerItem:playerItem];
        this.avPlayerLayer = [AVPlayerLayer playerLayerWithPlayer:this.avPlayer];
        this.avPlayerLayer.frame = _videoContent.frame;

        dispatch_async(dispatch_get_main_queue(),^{
            [this.videoContent.layer addSublayer:this.avPlayerLayer];
            [this.avPlayer play];
        });
    }];

但是当我滚动表格时,我的UITableView被冻结了。 我认为有很多耗时的工作,但最重要的是

[this.avPlayer play]

所以我的问题是AVPlayer是这种情况下最好的方法吗? 有没有办法改善表现?

2 个答案:

答案 0 :(得分:0)

您确定创建AVPlayerItemAVPlayerAVPlayerLayer都可以在主线程中执行吗?您可能想尝试将这些内容放在主队列中调度的块中。

答案 1 :(得分:-4)

使用以下链接,这适合您的问题。

https://github.com/PRX/PRXPlayer