0

アプリケーションでビデオを再生したい。このために、次のコードを使用しました。

NSURL *fileURL = [NSURL URLWithString:@"http://www.boxmusiq.com/ThiruvasakamVideo        /VTS_01_2_converted.mp4"];

moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL]; 
[moviePlayerController.view setFrame:CGRectMake(0, 70, 320, 270)]; 
[self.view addSubview:moviePlayerController.view];  
moviePlayerController.fullscreen = YES;  
[moviePlayerController play]; 


 Now above url is a http link but I want to play video from rtsp link. 

私のrtspリンクは次のとおりです。

rtsp://v8.cache3.c.youtube.com/CjYLENy73wIaLQlxYJvp0_b1wxMYDSANFEIJbXYtZ29vZ2xlSARSBXdhdGNoYIiCgqTg6_XeTww=/0/0/0/video.3gp

誰かが rtsp リンクからビデオを再生する方法を知っている場合。解決策を教えてください。

ありがとうございます。

4

1 に答える 1

1

RTSP が実装されているgithubで次のプロジェクトを確認できます。

于 2012-06-27T11:06:19.597 に答える