Question

How can i do streaming of video files using AVPlayerlayer?

Was it helpful?

Solution

You could try using Matt Gallagher's AudioStreamer to stream the songs.

https://github.com/mattgallagher/AudioStreamer

For videos you could use MPMoviePlayerController:

http://developer.apple.com/library/ios/#documentation/MediaPlayer/Reference/MPMoviePlayerController_Class/

MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:streamURL];
[player play];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top