菜鸟教程小白 发表于 2022-12-12 20:39:00

iphone - MPMoviePlayerController 在 iPhone 应用程序中反向(向后)播放电影不流畅


                                            <p><p>我正在开发一个需要反转视频播放的 iPhone 应用程序。我目前正在使用 XCode 4.2。我正在尝试使用 MPMoviePlayerController 反向播放电影。
但是当它反向播放时,它并不像向前播放那么流畅。它变得有点波涛汹涌,一点也不光滑。以下是我的代码。</p>

<pre><code>- (void)viewDidLoad{
//code for initializing the movie player
MPMoviePlayerController videoPlayer =
[ initWithContentURL:&#34;URL&#34;];
self.videoPlayer = videoPlayer;
;
self.videoPlayer.view.userInteractionEnabled = NO;
self.videoPlayer.initialPlaybackTime = -1;
self.videoPlayer.shouldAutoplay=NO;
;


//code for initializing the button
UIButton *button = ;

;

[button addTarget:self
action:@selector(reverseMovie) forControlEvents:UIControlEventTouchDown];

button.frame = CGRectMake(0, 0, 50, 40);

;
}

-(void)reverseMovie{
;
}
</code></pre>

<p>有什么可能的解决方案?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我尝试在 AVFoundation 中做同样的事情。在我设法让它工作之前,我不得不做很多工作。 </p>

<p>我所做的是生成图像,颠倒顺序,将它们放入assetWriter,导出视频然后播放。</p>

<p>你可以在这里下载我的代码:<a href="https://github.com/mikaelhellqvist/ReverseClip" rel="noreferrer noopener nofollow">https://github.com/mikaelhellqvist/ReverseClip</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - MPMoviePlayerController 在 iPhone 应用程序中反向(向后)播放电影不流畅,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10310945/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10310945/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - MPMoviePlayerController 在 iPhone 应用程序中反向(向后)播放电影不流畅