ffmpeg 添加视频标题/名称作为字幕轨道

ffmpeg add video title / name as subtitle track

有没有一种简单的方法可以使用 ffmpeg 将视频(mp4、mkv 等)的标题添加为自定义字幕轨道(持续整个视频持续时间)?

例如:"The adventures of foo.mp4" 视频时长为 100 秒时,字幕 "The adventures of foo.mp4" 会嵌入字幕轨道上的第 0-100 秒吗?

创建字幕文件:"The adventures of foo.vtt"

WEBVTT

00:00:00.000 --> 00:01:40.000
The adventures of foo

和运行.

ffmpeg -i "The adventures of foo in.mkv" -i "The adventures of foo.vtt" -c copy -disposition:s:0 +default "The adventures of foo out.mkv"