欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 财经 > 产业 > 在vue3+vite中给 Video视频 添加字幕

在vue3+vite中给 Video视频 添加字幕

2025/6/15 3:46:12 来源:https://blog.csdn.net/weixin_44804419/article/details/148553794  浏览:    关键词:在vue3+vite中给 Video视频 添加字幕

Video视频 添加字幕

    • 方式一: 使用 track标签
      • template标签中
      • css样式修改
    • 方式二:直接读取.vtt文件

方式一: 使用 track标签

参考1:https://blog.csdn.net/weixin_42321819/article/details/112442773
参考2:https://blog.csdn.net/foren_whb/article/details/80810552

template标签中

<div ref="wrapperRef" class="video-container w-full box-border bg-black p-20px min-h-400px"><video ref="videoRef" class="my-video  pos-relative w-full h-400px" controls><source :src="video_1" type="video/mp4"><track src="/src/assets/video/video_1.vtt" srclang="en" kind="subtitles" label="English" default></video>
</div>

css样式修改


/* 直接给字幕标签加样式是无效的,必须以下面的方法给样式。*/
/* 由于google chrome和firefox的字幕默认样式是黑色背景,因此需要样式调整 */
<style lang="scss">video {width: 100%;display: block;}video::cue {background-color: transparent;color: #fff;font-size: 16px;background-color: rgba(0, 0, 0

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词