python youtube-dl 的下载器选项 --restrict-filenames 是什么
What is the downloader option --restrict-filenames for python youtube-dl
大家好,我想知道终端 --restrict-filenames
中此参数的 python 基于版本 youtube-dl
的选项是什么? python 元组需要添加什么选项?
提前致谢,Ondeckshooting
根据文档,该选项不需要参数。所以一个命令
这样就足够了:
youtube-dl --restrict-filenames 73VCKpU9ZnA
选项详情如下:
Restrict filenames to only ASCII characters, and avoid "&" and spaces in
filenames
至于什么是 ASCII,此脚本将揭示:
#!/usr/bin/awk -f
BEGIN {
while (z++ < 0x7e) {
[=11=] = sprintf("%c", z)
if (/[[:graph:]]/) printf [=11=]
}
}
结果
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
大家好,我想知道终端 --restrict-filenames
中此参数的 python 基于版本 youtube-dl
的选项是什么? python 元组需要添加什么选项?
提前致谢,Ondeckshooting
根据文档,该选项不需要参数。所以一个命令 这样就足够了:
youtube-dl --restrict-filenames 73VCKpU9ZnA
选项详情如下:
Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames
至于什么是 ASCII,此脚本将揭示:
#!/usr/bin/awk -f
BEGIN {
while (z++ < 0x7e) {
[=11=] = sprintf("%c", z)
if (/[[:graph:]]/) printf [=11=]
}
}
结果
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~