How can i do streaming of video files using AVPlayerlayer?
Asked
Active
Viewed 355 times
-1
-
1Did your ISP block google.com? – user523234 Jul 28 '13 at 11:17
-
no , its not blocking... – ChenSmile Jul 29 '13 at 04:58
-
hi.. audio files streaming is possible but video files are not streaming.... – ChenSmile Jul 29 '13 at 05:40
1 Answers
0
You could try using Matt Gallagher's AudioStreamer to stream the songs.
https://github.com/mattgallagher/AudioStreamer
For videos you could use MPMoviePlayerController
:
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:streamURL];
[player play];

UpL1nK
- 559
- 1
- 6
- 14
-
ya it is good for audio files but i want to stream videos files along with audio files in my All songs list... – ChenSmile Jul 29 '13 at 05:07
-