如何在UISlider中显示AVplayer当前播放时长
我正在使用自定义 UISlider 在 AVPlayer 中播放视频时实现擦除。尝试找出在 UISlider 两端显示当前播放时间和剩余持续时间的最佳方式,就像通常在 MPMoviePlayerController 中显示的那样。
任何帮助表示赞赏。
I am using a custom UISlider to implement the scrubbing while playing a video in AVPlayer. Trying to figure out the best way to show the current play time and the remaining duration on the respective ends of the UISlider as it usually is shown in MPMoviePlayerController.
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Swift 4.x
或
使用
Swift 4.x
or
Use
在每一端放置一个 UILabel。使用
-[AVPlayer addPeriodicTimeObserverForInterval:queue:usingBlock:]
更新它们。使用-[AVPlayer currentTime]
和-[AVPlayerItemuration]
计算剩余时间。Put a UILabel at each end. Update them using
-[AVPlayer addPeriodicTimeObserverForInterval:queue:usingBlock:]
. Compute the time remaining using-[AVPlayer currentTime]
and-[AVPlayerItem duration]
.