5

我想使用 MPMoviePlayerViewController 在我的服务器上播放视频文件。但它不起作用。

我的 iOS 代码如下:

NSURL *mediaURL = [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@"http://127.0.0.1:3000/media/%@", @"sample_iTunes.mov"]];
self.player = [[MPMoviePlayerViewController alloc] initWithContentURL: mediaURL];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieFinishedCallback:) name:MPMoviePlayerPlaybackDidFinishNotification object:self.player.moviePlayer];
self.player.moviePlayer.shouldAutoplay = YES;
self.player.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;
[self presentMoviePlayerViewControllerAnimated:self.player];
[self.player.moviePlayer prepareToPlay];
[self.player.moviePlayer play];

-(void)movieFinishedCallback:(NSNotification*)aNotification
{
    NSLog(@"%@",[aNotification valueForKey:@"userInfo"]);
    MPMoviePlayerViewController* theMovie = [aNotification object];
}

我收到的错误消息NSNotification是:

MPMoviePlayerPlaybackDidFinishReasonUserInfoKey = 1;
error = "Error Domain=MediaPlayerErrorDomain Code=-11850 \"Operation Stopped\" UserInfo=0x1d51b640 {NSLocalizedDescription=Operation Stopped}";

然后我将网址更改为

http://km.support.apple.com/library/APPLE/APPLECARE_ALLGEOS/HT1211/sample_iTunes.mov

但它运作良好。由于这两个文件是完全相同的文件。我认为我的远程服务器一定有问题。这是来自我的服务器的响应标头:

HTTP/1.1 200 OK
Content-Length: 3284257
Date: Mon, 14 Jan 2013 06:06:12 GMT
Last-Modified: Sun, 13 Jan 2013 10:44:02 +0000
Accept-Ranges: bytes
Content-Type: video/quicktime
Connection: close
Server: Jetty(7.6.1.v20120215)

此外,该视频可以在我的 Macbook 上用 Chrome/Safari 播放,但它也不能在 iPhone 上用浏览器播放。

4

2 回答 2

1

更正内容 URL 后,如果Error Domain=MediaPlayerErrorDomain Code=-11850 \"Operation Stopped\"仍然出现错误,可能是因为您的 HTTP 服务器不支持字节范围请求。有关详细信息,请参阅立即调用 MPMoviePlayerPlaybackDidFinishNotification

于 2014-11-03T23:56:29.623 回答
0

您将 MPMoviePlayerController 指向 127.0.0.1,这是当前设备的 IP。因此,您的 iOS 应用程序正在寻找您的 iPhone 上托管该文件的 Web 服务器。您的代码看起来不错,否则您只需将 .mov 托管在有效的地方。

于 2013-09-18T00:43:30.287 回答