有没有办法在 youtube-dl 批处理文件中添加评论?

有没有办法在 youtube-dl 批处理文件中添加评论?

假设你想列出一长串网址但用评论隔开

表示什么网址是关于。有办法吗?

答案1

youtube -dl#url 列表批处理文件中的每一行仅支持一个 url。如果 url/行以或 之后的部分行开头,它将不会读取该 url/行#。在这种情况下,您的批处理文件应如下所示,

#comment 1
https://www.youtube.com/watch?v=foo
#commeent 2 
https://www.youtube.com/watch?v=bar

你也可以这样评论,

https://www.youtube.com/watch?v=foo #comment 1
https://www.youtube.com/watch?v=bar #comment 2

要使用此类批处理文件下载,请使用

youtube-dl --title --batch-file='/path/to/list.txt'

我认为list.txt其中包含了 URL。

答案2

像往常一样使用 url 列表创建批处理文件。然后#在行首添加 来注释一行。

youtube-dl 不会读取该行。

例子:url.txt

#This is link 1
youtube.com/watch=url
#This is link 2 (blabla)
youtube.com/watch=url

答案3

您可以像在 bash 中注释它们一样注释它们。只需在#注释前面加上一个。您可以得到这样的文本文件。

#This is a comment
# I hope people are not tasty
https://www.youtube.com/watch?v=qWAF9PgDg2c #Would we eat each other if it were legal
#I love the moon
https://www.youtube.com/watch?v=Bbgz4yY-xX0   #This is a comment too

答案4

您可以通过在行首添加#或 来注释一行。两者都可以。;

相关内容