是否可以下载YouTube视频,例如MP3然后用ffmpeg将其转换为flac?我可以使用--postprocessor-args指定ffmpeg在下载后使用的参数,但我不知道如何在那里获取文件名。
- postprocessor-args“-i downloadedfile.xxx -c:flac downloadedfile.flac”
这将是我想要使用的参数。这可能吗?
答案 0 :(得分:9)
从youtube-dl 2017.03.16开始 - 或right now如果您查看git存储库 - 您只需传入--extract-audio --audio-format flac
,如下所示:
youtube-dl -x --audio-format flac https://www.youtube.com/watch?v=BaW_jenozKc
(-x
是--extract-audio
的缩写。)