1

cocos2d で .mp4 ビデオを再生しようとしています。以下の私のコードを見てください。ビデオは再生されず、画面の 3 分の 1 強を覆う黒い背景のみが表示されます。

指示.m:

#import "Instructions.h"

@implementation Instructions

- (id)init
{
    self = [super init];
    if (self != nil)
    {
        [self playInstructionsVideo];
    }
    return self;
}

- (void)playInstructionsVideo
{
    NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Instructions" ofType:@"mp4"]];
    MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];

    // Register to receive a notification when the movie has finished playing.
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(moviePlayBackDidFinish:)
                                                 name:MPMoviePlayerPlaybackDidFinishNotification
                                               object:moviePlayer];

    if ([moviePlayer respondsToSelector:@selector(setFullscreen:animated:)])
    {
        // Use the new 3.2 style API
        moviePlayer.controlStyle = MPMovieControlStyleNone;
        moviePlayer.shouldAutoplay = YES;
        // This does blows up in cocos2d, so we'll resize manually
        // [moviePlayer setFullscreen:YES animated:YES];
        [moviePlayer.view setTransform:CGAffineTransformMakeRotation((float)M_PI_2)];
        CGSize winSize = [[CCDirector sharedDirector] winSize];
        moviePlayer.view.frame = CGRectMake(0, 0, winSize.height, winSize.width);    // width and height are swapped after rotation
        [[[CCDirector sharedDirector] view] addSubview:moviePlayer.view];
    }
    else
    {
        // Use the old 2.0 style API
        moviePlayer.controlStyle = MPMovieControlStyleNone;
        [moviePlayer play];
    }
}

- (void)moviePlayBackDidFinish:(NSNotification *)notification
{
    MPMoviePlayerController *moviePlayer = [notification object];
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:MPMoviePlayerPlaybackDidFinishNotification
                                                  object:moviePlayer];

    // If the moviePlayer.view was added to the openGL view, it needs to be removed
    if ([moviePlayer respondsToSelector:@selector(setFullscreen:animated:)])
    {
        [moviePlayer.view removeFromSuperview];
    }

    [moviePlayer release];
}

@end

助けてください。異常な動作の原因がわかりません。

4

1 に答える 1

2

このコードをコピーしただけだと思います。とにかく、スクリーンショットから、向きの変更が setTransform の結果であることは明らかです。ラインの削除

[moviePlayer.view setTransform:CGAffineTransformMakeRotation((float)M_PI_2)];

向きの問題を解決する必要があります。

于 2013-10-07T17:41:00.683 に答える