5

如何播放资源库中的视频文件?我有像这样的文件的 URL

"assets-library://asset/asset.MOV?id=1000000023&ext=MOV"

但我无法使用以下代码在媒体播放器中播放此文件:

NSString *urlAddress = @"assets-library://asset/asset.mov?id=1000000023&ext=mov"; 
NSURL *theURL = [NSURL URLWithString:urlAddress]; 
MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:theURL];
4

1 回答 1

5

我也遇到了问题,并得到了解决方案。我使用了以下代码,它对我有用。这urlAddress是视频的网址ALAssetsLibrary

-(void)playVideo:(NSString *)urlAddress{

NSString *newUrl = [[NSString alloc] initWithFormat:@"%@",urlAddress];

NSURL *theURL = [NSURL URLWithString:newUrl];

//player = [[MPMoviePlayerController alloc] init];

[player setContentURL:theURL];
[player prepareToPlay];
[player play]; 

}
于 2012-02-16T13:30:53.653 回答