如何更改视频播放速度
我想知道是否可以在 iPhone 应用程序中更改视频播放速度。我们希望用户对着麦克风大喊以加快播放速度并结束。
I'm wondering if it's possible to change the video playback speed in an iphone application. we want users to yell in the microphone to speed up the playback and get to the end.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须使用 setCurrentPlaybackRate:
You have to use setCurrentPlaybackRate:
AVPlayer
有一个rate
属性。如果您采用 Apple 资源部分中名为“avPlayerDemo”的示例,则只需设置
mplayer.rate
即可。它对我有用,我在 xib 文件中创建了一个新滑块,在AVPlayerDemoPlaybackViewController
中实现了该滑块,并将mPlayer.rate
设置为滑块值。There is a
rate
property for theAVPlayer
.If you take the example from Apple called "avPlayerDemo" in the resource section, you then simply have to set the
mplayer.rate
. It worked for me, I created a new slider in the xib files, implemented that slider in theAVPlayerDemoPlaybackViewController
and simply setmPlayer.rate
to the slider value.MPMoviePlayerController 怎么样?
这是一些在该位置不起作用的代码
What about the MPMoviePlayerController?
Here's some code which does not work at that spot