Browse Source

[YoutubeDL] Allow multiple input URLs to be used with stdout as output template

master-ytdl-org
Sergey M․ 8 years ago
parent
commit
9487ce03e9
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      youtube_dl/YoutubeDL.py

+ 1
- 0
youtube_dl/YoutubeDL.py View File

@ -1872,6 +1872,7 @@ class YoutubeDL(object):
"""Download a given list of URLs."""
outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL)
if (len(url_list) > 1 and
outtmpl != '-' and
'%' not in outtmpl and
self.params.get('max_downloads') != 1):
raise SameFileError(outtmpl)


Loading…
Cancel
Save