ffmpeg将字幕加入到视频当中

date
Mar 12, 2022
slug
tip-ffmpeg-video-subtitle
status
Published
summary
小技巧
tags
tip
type
Post
URL

Solution

将字幕拷入视频 - 字幕是可开可观的


ffmpeg -i video.mp4 -i subtitle.srt -c:v copy -c:a copy -c:s mov_text video_subtitle_copied.mp4

将字幕”烧入”到视频 - 字幕不可关闭

ffmpeg -i video.mp4 -vf subtitles=subtitle.srt video_subtitle_burntin.mp4
notion image

© Ying Bun 2021 - 2024