youtube-dl 下载自动翻译字幕

xra*_*alf 9 command-line networking video-subtitles youtube-dl

我想下载自动生成的字幕youtube-dl 如下

$ youtube-dl --write-auto-sub \
             --skip-download \
             https://www.youtube.com/watch?v=vbLEf4HR74E
Run Code Online (Sandbox Code Playgroud)

它下载的文件The habits of happiness _ Matthieu Ricard-vbLEf4HR74E.en.vtt不是自动生成的字幕,它包含单词coke box而不是Coca-Cola tins.

如何下载正确的文件?

Jal*_*eks 11

youtube-dl --write-sub \
           --skip-download \
           --sub-lang=en \
           "https://www.youtube.com/watch?v=vbLEf4HR74E"
Run Code Online (Sandbox Code Playgroud)

在 version 上做一些看起来不错的事情2017.05.18.1-1

youtube-dl 说Couldn't find automatic captions for vbLEf4HR74Ewith--write-auto-sub--write-sub使用选定的语言--sub-lang=en似乎有效。

  • 是的,有时可以使用“--write-sub”,有时可以使用“--write-auto-sub”(当缺少人工翻译的字幕时) (2认同)