Przesyłanie strumieniowe wideo przez HTTP w IOS

Pracuję nad moją aplikacją, która wymaga odtwarzania wideo na iPhone przez serwer. Mam link wideohttp://www.cwtmedia.se/cwtvideo.mp4 . Czy każdy organ może zasugerować mi, jak to zrobić na MPMoviePlayerController. Używam tego kodu do tego, ale nie działa.

enter code here


NSURL *url = [NSURL fileURLWithPath:@"http://www.cwtmedia.se/cwtvideo.mp4"];
moviePlayer1 = [[MPMoviePlayerController alloc] initWithContentURL:url];
[self.view addSubview:moviePlayer1.view];
moviePlayer1.view.frame = CGRectMake(0, 0, 320, 416); 
moviePlayer1.fullscreen=YES;
[moviePlayer1 setFullscreen:NO animated:YES];
moviePlayer1.controlStyle = MPMovieControlStyleFullscreen;

[moviePlayer1 play];

questionAnswers(2)

yourAnswerToTheQuestion