iOS 上如何在视频上绘制文字以显示字幕?

发布于 2024-11-18 19:58:40 字数 32 浏览 4 评论 0原文

如何在 iOS 上使用叠加视图在视频上方显示字幕?

How to show subtitle above video with an overlay view on iOS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坏尐絯 2024-11-25 19:58:40

您可以使用 UILabel 创建一个覆盖视图来显示字幕,如下所示

//Overlay View
UILabel *lblOverlayView = [[UILabel alloc] init];
lblOverlayView.frame = CGRectMake(0, 459, 320, 21);
lblOverlayView.backgroundColor = [UIColor yellowColor];
lblOverlayView.alpha = 0.3f;
lblOverlayView.text = @"Video Subtitle";

,然后您可以将其作为子视图添加到 MPMoviePlayerController 的视图中,以在播放视频时显示字幕。

[_mpMoviePlayerController.view addSubview:lblOverlayView];

这里,_mpMoviePlayerController是MPMoviePlayerController的一个对象。
希望这将帮助您满足要求。

You can create an overlay view using UILabel to show subtitle as below

//Overlay View
UILabel *lblOverlayView = [[UILabel alloc] init];
lblOverlayView.frame = CGRectMake(0, 459, 320, 21);
lblOverlayView.backgroundColor = [UIColor yellowColor];
lblOverlayView.alpha = 0.3f;
lblOverlayView.text = @"Video Subtitle";

then you can add it as a subview to the view of MPMoviePlayerController to show a subtitle while playing the video.

[_mpMoviePlayerController.view addSubview:lblOverlayView];

here, _mpMoviePlayerController is an object of MPMoviePlayerController.
Hope this will help you to fulfill the requirements.

泪之魂 2024-11-25 19:58:40

将子视图添加到显示视频的视图并将其放在前面。
这可能有帮助:

[myView bringSubviewToFront: subtitleView];

Add a subview to the view showing the video and put it in front.
This might help:

[myView bringSubviewToFront: subtitleView];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文