I want to play a video from a remote server and not from youtube. The video should start streaming in the in built video player of the iphone.
Can anyone help me with this.....
Thanx in advance
I want to play a video from a remote server and not from youtube. The video should start streaming in the in built video player of the iphone.
Can anyone help me with this.....
Thanx in advance
You can use the Media Player Framework, there is an example here http://developer.apple.com/iphone/library/samplecode/MoviePlayer%5FiPhone/index.html
I use UIWebView to play my apps tutorial movies. Just make sure you're providing an iPhone-compatible movie format.
NSUrl *url = @"http://streamXXX.com/mymovie.m4v";
[yourWebview loadRequest:[NSURLRequest requestWithURL:url]];
And FWIW, I was going to embed the videos in my bundle, but it quickly grew beyond the 10MB app store download limit (when not connected with wifi) so after fighting with hosting them at youtube, blip.tv came to the rescue. My vids weren't reformatted dimensionally @blip.