gpt4 book ai didi

objective-c - AVPlayer不播放视频

转载 作者:行者123 更新时间:2023-12-01 17:19:46 24 4
gpt4 key购买 nike

- (void)viewDidLoad{

[super viewDidLoad];

NSString *path = [[NSBundle mainBundle] pathForResource:@"VidName" ofType:@"mov"];
NSURL *url = [NSURL URLWithString:path];

AVPlayer *av = [[AVPlayer alloc] initWithURL:url];
AVPlayerLayer *layer = [AVPlayerLayer playerLayerWithPlayer:av];
[layer setFrame:self.view.frame];
[self.view.layer addSublayer:layer];
[av play];

NSLog(@"error: %@", av.error);
}

正在记录的错误为NULL。

最佳答案

代替
NSURL *url = [NSURL URLWithString:path];
使用以下行。

NSURL *url=[[NSURL alloc]initFileURLWithPath:path];

关于objective-c - AVPlayer不播放视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11359966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com