I have "imported" the extension "CCVideoPlayer" to my cocos2d project and I would like to use it in order to show a video splash screen before my game starts (I know many people hate it, but I don't care). However, there are not as many tutorials on the Internet, so you guys are pretty much my last resort. I have copied my Video - a 1280 x 720 Quicktime Movie (671 MB) - into my project properly and when I call:
[CCVideoPlayer setDelegate:self];
[CCVideoPlayer playMovieWithFile:@"Main.mov"];
I see a black screen and the sound of the movie plays correctly, however there is no video. So what should I do ?
Side note: I have implemented the delegate methods and my class adheres to the CCVideoPlayerDelegate
.