mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-14 05:03:09 +00:00
[YoutubeDL] Allow multiple input URLs to be used with stdout as output template
This commit is contained in:
parent
45e6ad21b4
commit
9487ce03e9
@ -1872,6 +1872,7 @@ class YoutubeDL(object):
|
|||||||
"""Download a given list of URLs."""
|
"""Download a given list of URLs."""
|
||||||
outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL)
|
outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL)
|
||||||
if (len(url_list) > 1 and
|
if (len(url_list) > 1 and
|
||||||
|
outtmpl != '-' and
|
||||||
'%' not in outtmpl and
|
'%' not in outtmpl and
|
||||||
self.params.get('max_downloads') != 1):
|
self.params.get('max_downloads') != 1):
|
||||||
raise SameFileError(outtmpl)
|
raise SameFileError(outtmpl)
|
||||||
|
Loading…
Reference in New Issue
Block a user