Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple Video, Same Screen

Tags:

ios

Is it possible to play more than one video the same time / on the same screen with iOS?

(E.g. Picture-in-Picture mode or split screen.)

like image 961
Beffa Avatar asked Jul 26 '11 09:07

Beffa


2 Answers

Step by step and full source code on how to do this: http://iosguy.com/2012/01/11/multiple-video-playback-on-ios/

like image 93
Cezar Signori Avatar answered Oct 14 '22 07:10

Cezar Signori


You can't using MPMoviePlayerController. The documentation states that clearly..

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.

But I think you can do this with lower level AVFoundation framework..But I never tried it..See this

like image 44
Krishnabhadra Avatar answered Oct 14 '22 08:10

Krishnabhadra