Philipp Lenssen
Philipp Lenssen

Reputation: 9218

Play one movie right after another in XCode Objective-C for iPad

I'm using a MPMoviePlayerViewController in an iOS Objective-C project and aim to play two movies right after each other in full screen, without any visible black flicker delay in-between the two playings. How would one go about this? Right now, when I run my code which is similar to http://www.devx.com/wireless/article/44642/1954 , there will be a small lag in-between the first and second movie, whereas the point of my potential game is that it should appear seamless and unnoticeable.

Thanks for any help!

Upvotes: 0

Views: 460

Answers (1)

Ankit Srivastava
Ankit Srivastava

Reputation: 12405

the lag will always be there , the only thing that you can do is join the two movies together before playing them using the AVComposition class and then play them without any lag.

Upvotes: 1

Related Questions