i tried following-
created different instances of MPMoviePlayer
on a single view but at a time only one video is playing. i am not getting how to do this. I have to do this for live camera video streaming on single view that is 4 camera output on single view. just give me the idea or way.
As explained in apple documentation you can not do this using MPMoviePlayerController.
Although you can create multiple MPMoviePlayerController objects and present their
views in your interface, only one movie player at a time can play its movie.
So checkout this nice tutorial for multiple-video-playback-on-ios.
and check this nice sample code also.
So finally you can use AVPlayer for this because you can have multiple instances of AVPlayer
playing the same video at the same time. .