Youtube-dl-视频和音频的配置文件不同?

Youtube-dl-视频和音频的配置文件不同?

是否可以传递特定的配置文件youtube-dl而不在命令行中写入所有参数?

现在我正在使用 AHK 在 PowerShell 中输入视频

youtube-dl.exe -o '%(playlist_index)s. %(title)s.%(ext)s' -i -f mp4 --write-sub --sub-lang en --yes-playlist ''

以及音频

youtube-dl.exe --extract-audio --audio-format mp3 --audio-quality 0 ''

今天我使用视频参数编写了配置文件...Roaming\youtube-dl\config.txt。但有时我只想下载音频格式,有时我想知道是否有办法将2 config.txt文件一个用于音频,另一个用于视频。

答案1

我想知道是否有办法拥有 2 个 config.txt 文件,一个用于音频,一个用于视频?

您可以使用--config-location选项并拥有 2 个不同的文件,例如video.cfgaudio.cfg。请确保指定文件的完整路径:

--config-location PATH               Location of the configuration file;
                                     either the path to the config or its
                                     containing directory.

来源:youtube-dl/README.md at master · ytdl-org/youtube-dl · GitHub

相关内容