Is it possible to play 2 video files simultaneously in the same view?

I want to do have them both playing over half the screen, a little like this:

 _ _ _ _ _ _ _ _ _ _ 
|                   |
|                   |
|       VIDEO       |
|                   |
|_ _ _ _ _ _ _ _ _ _|
|                   |
|                   |
|      VIDEO        | 
|                   |
|_ _ _ _ _ _ _ _ _ _|

How would I go about accomplishing this?

Thanks :)

link|improve this question

65% accept rate
feedback

2 Answers

up vote 5 down vote accepted

apple's document said:

Although you may create multiple MPMoviePlayerController objects and present their views in your interface, only one movie player at a time may play its movie.

so,you know...

link|improve this answer
@dinosaur: So wat should I do if I want to play animation with media file ? – Archana Chaurasia Feb 22 '11 at 10:14
animation with media file? what effect you want ? can you give me same Description? – dinosaur Feb 22 '11 at 15:02
I want to play an audio file in first half view and in second half view I want to play some animation that will be a video. Actually I am playing audio file with MPMoviePlayerController because while playing with AVAudioPlayer I m not getting the controls of player. So the theme is that I m playing an audio as a media file and also want to play another media file for animation. In this way here is 2 media file to play simultaneously. – Archana Chaurasia Feb 23 '11 at 6:49
when you play movie,other audio can not playback. – dinosaur Feb 23 '11 at 10:00
ok, thanks a lot !!! – Archana Chaurasia Feb 23 '11 at 11:22
show 1 more comment
feedback

Play 2 video's at a time is possible..

STEPS:

1.create 2 instance of MPMoviePlayer

2.set frame for 2 player by using CGRectMake

3.Add 2 players to the view(self.view)

I hope above steps are helpful for u.

setting frame for player only supported in iOS 3.2 and above versions.

Let me know you have any doubt.

Sample Code:

player1.view.frame = CGRectMake(0, 0, 320, 240);
[self.view addSubview:player1.view];
[[NSNotificationCenter defaultCenter]addObserver:self 
                                        selector:@selector(movieFinishedCallback:)
                                            name:MPMoviePlayerPlaybackDidFinishNotification
                                          object:player1];
[player1 play];
player2.view.frame = CGRectMake(0, 241, 320, 220);
[self.view addSubview:player2.view];
[[NSNotificationCenter defaultCenter]addObserver:self 
                                        selector:@selector(movieFinishedCallback:)
                                            name:MPMoviePlayerPlaybackDidFinishNotification
                                          object:player2];
[player2 play];
link|improve this answer
1  
Clear up your grammar and add some code and I'm sure you'll get some upvotes. – Aurum Aquila Feb 22 '11 at 9:25
Thanks, but here what is player in code [self.view addSubview:player.view]; – Archana Chaurasia Feb 22 '11 at 9:51
@Archana Chaurasia:[self.view addSubview:player.view]; and [self.view addSubview:player2.view]; for player1 and player2 – kanmani Feb 22 '11 at 9:54
@Archana Chaurasia:just check my answer now i have edited. – kanmani Feb 22 '11 at 9:55
@iphonecool: exactly same I am doing but it shows only last player means its overlapping the previous player although I set frame area. – Archana Chaurasia Feb 22 '11 at 10:13
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.