iOS 上如何在视频上绘制文字以显示字幕?
如何在 iOS 上使用叠加视图在视频上方显示字幕?
How to show subtitle above video with an overlay view on iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 iOS 上使用叠加视图在视频上方显示字幕?
How to show subtitle above video with an overlay view on iOS?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以使用 UILabel 创建一个覆盖视图来显示字幕,如下所示
,然后您可以将其作为子视图添加到 MPMoviePlayerController 的视图中,以在播放视频时显示字幕。
这里,_mpMoviePlayerController是MPMoviePlayerController的一个对象。
希望这将帮助您满足要求。
You can create an overlay view using UILabel to show subtitle as below
then you can add it as a subview to the view of MPMoviePlayerController to show a subtitle while playing the video.
here, _mpMoviePlayerController is an object of MPMoviePlayerController.
Hope this will help you to fulfill the requirements.
将子视图添加到显示视频的视图并将其放在前面。
这可能有帮助:
Add a subview to the view showing the video and put it in front.
This might help: