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


Answers:


10

youtube -dl列出的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包含网址。


7

像往常一样使用URL列表创建批处理文件。并在行#的开头添加注释。

youtube-dl不会读取该行。

例: url.txt

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

4

您可以按照在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

3

您可以通过在行首添加a #或a 来注释;行。两者都会起作用。

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.