youtube-dl -o无法在配置文件中插入单个反斜杠(windows)


0

我在中创建了一个文件

%APPDATA%\ YouTube的-DL \ config.txt的

正如youtube-dl所建议的那样 DOC

我需要将文件的输出放到** D:\ Personal \ music **

但问题是我似乎无法得到一个反斜杠

这段代码

-c -v -o D:\\personal\\music

给出以下输出

[debug]用户配置:[' - c',' - v',' - o','D:\\ personal \\ music']

如果我改变如下

-c -v -o D:\personal\music

给出以下输出

[debug]用户配置:[' - c',' - v',' - o','D:personalmusic']

请帮助正确的语法。

谢谢。

Answers:


1

我不确定为什么反斜杠会导致您报告的效果,但使用正斜杠很容易避免它们:Windows文件系统并不关心您使用哪种。

但是,正如我读到的那样 youtube-dl 文档,您需要包含文件掩码以及输出规范中的目录,因此条目应为:

-c -v -o D:/personal/music/%(title)s-%(id)s.%(ext)s

这假设您要使用默认掩码。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.