Popcorn.js 可以用来为 YouTube 视频添加字幕吗?
假设我们在网页上嵌入了 YouTube 视频。
在视频播放器下方,我们可以使用 Popcorn.js 这样的媒体框架显示与视频同步的字幕吗?
Let's say we embed a YouTube video on a web page.
Underneath the video player, could we display subtitles synched to the video using a media framework like Popcorn.js?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在嵌入 YouTube 视频时选择 HTML5 版本,并且实际上在 HTML5 浏览器中播放该视频,则它只是一个
video
标记,因此您可以使用 Popcorn.js。当它是Flash时,我不确定您是否可以进入该Flash并了解进度并收听事件。If you choose the HTML5 version when embedding the YouTube video and if it's actually being played within an HTML5 browser, it's just a
video
tag so you can use Popcorn.js. When it's a Flash, I'm not sure if you can get into that Flash and know the progress and listen to the events.如果您使用 YouTube JavaScript 播放器 API,则可以使用
player.getCurrentTime()
找出要显示的字幕行。话又说回来,YouTube 一开始就已经支持字幕了。
If you use the YouTube JavaScript Player API, you can use
player.getCurrentTime()
to find out which line of subtitling to show.Then again, YouTube already supports subtitles to begin with.
有趣的是你提到了 Popcorn.js,因为 Popcorn 确实支持 Youtube。
http://popcornjs.org/popcorn-with-youtube
但是,该文档已过时。
现在是:
“var example = Popcorn.youtube(”
有新文档正在路上。
Interesting you mentioned Popcorn.js, because Popcorn does support Youtube.
http://popcornjs.org/popcorn-with-youtube
Buuut, that documentation is out of date.
It is now:
"var example = Popcorn.youtube("
There are new docs on their way.