2012-12-25 27 views
0

我搜索了所有类似的问题,但无奈。 这是关于使用MPMoviePlayerController的流式传输https://172.16.58.100:8443/test02.mp4 URL。MPMoviePlayerController:流https URL失败


我使用MPMoviePlayerController来流式传输视频并在我的应用程序中播放。 像http://172.16.58.100:8080/test.mp4这样的网址是好的,MPMoviePlayerController工作正常。

但是像URL,MPMoviePlayerController不起作用,它返回MPMovieFinishReasonPlaybackError。我知道这意味着videoPlayer初始化失败并导致MPMoviePlayerPlaybackDidFinishNotification。我不知道如何做到这一点。

我也试过这样:

NSURLCredential *credental = [[NSURLCredential alloc]initWithUser:@"tomcat" 
                 password:@"123456" 
                 persistence:NSURLCredentialPersistenceForSession]; 
NSURLProtectionSpace *protectSpace = [[NSURLProtectionSpace alloc]initWithHost:@"172.16.58.100" 
                      port:8443 
                     protocol:@"http" 
                     realm:nil 
                  authenticationMethod:NSURLAuthenticationMethodDefault]; 
[[NSURLCredentialStorage sharedCredentialStorage]setDefaultCredential:credental forProtectionSpace:protectSpace]; 

NSURL *fileURL = [NSURL URLWithString:@"https://172.16.58.100:8443/test.mp4"]; 
[self.moviePlayer playMovieFile:fileURL]; 

但它仍然显示了同样的错误(初始化失败,进入MPMoviePlayerPlaybackDidFinishNotification)

============== ===============

我的意思是我只是想知道如何通过MPMoviePlayerController流像“https://xxx.xxx.xx.mp4”的URL。

有什么建议吗?圣诞节快乐。

回答

0

也许我在服务器配置上犯了一个错误;现在改为webDav,流http http:& https工作正常。