youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5d60b9971784289acd4325a8ed7b5afd7bea05ca
parent 9e6a4180158026e78f65563d0586923fef8ccece
Author: Arend v. Reinersdorff <arend@arendvr.com>
Date:   Tue, 27 Mar 2018 17:25:29 +0200

[options] Mention comments support in --batch-file


Diffstat:
Myoutube_dl/options.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/options.py b/youtube_dl/options.py @@ -676,7 +676,8 @@ def parseOpts(overrideArguments=None): filesystem.add_option( '-a', '--batch-file', dest='batchfile', metavar='FILE', - help='File containing URLs to download (\'-\' for stdin)') + help="File containing URLs to download ('-' for stdin), one URL per line. " + "Lines starting with '#', ';' or ']' are considered as comments and ignored.") filesystem.add_option( '--id', default=False, action='store_true', dest='useid', help='Use only video ID in file name')