Pregunta

How can i do streaming of video files using AVPlayerlayer?

¿Fue útil?

Solución

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];
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top