-1

How can i do streaming of video files using AVPlayerlayer?

djot
  • 2,952
  • 4
  • 19
  • 28
ChenSmile
  • 3,401
  • 4
  • 39
  • 69

1 Answers1

0

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];
UpL1nK
  • 559
  • 1
  • 6
  • 14