mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 02:03:23 +01:00
Add support for the "simulate" option
This commit is contained in:
parent
9fcd8355e5
commit
b609fd549f
@ -55,6 +55,7 @@ class FileDownloader(object):
|
|||||||
password: Password for authentication purposes.
|
password: Password for authentication purposes.
|
||||||
usenetrc: Use netrc for authentication instead.
|
usenetrc: Use netrc for authentication instead.
|
||||||
quiet: Do not print messages to stdout.
|
quiet: Do not print messages to stdout.
|
||||||
|
simulate: Do not download the video files.
|
||||||
format: Video format code.
|
format: Video format code.
|
||||||
outtmpl: Template for output names.
|
outtmpl: Template for output names.
|
||||||
"""
|
"""
|
||||||
@ -162,6 +163,9 @@ class FileDownloader(object):
|
|||||||
if (len(url_list) > 1 or len(results) > 1) and re.search(r'%\(.+?\)s', self._params['outtmpl']) is None:
|
if (len(url_list) > 1 or len(results) > 1) and re.search(r'%\(.+?\)s', self._params['outtmpl']) is None:
|
||||||
sys.exit('ERROR: fixed output name but more than one file to download')
|
sys.exit('ERROR: fixed output name but more than one file to download')
|
||||||
|
|
||||||
|
if self._params.get('simulate', False):
|
||||||
|
continue
|
||||||
|
|
||||||
for result in results:
|
for result in results:
|
||||||
try:
|
try:
|
||||||
filename = self._params['outtmpl'] % result
|
filename = self._params['outtmpl'] % result
|
||||||
@ -435,6 +439,7 @@ if __name__ == '__main__':
|
|||||||
'username': None,
|
'username': None,
|
||||||
'password': None,
|
'password': None,
|
||||||
'quiet': False,
|
'quiet': False,
|
||||||
|
'simulate': True,
|
||||||
'format': None,
|
'format': None,
|
||||||
'outtmpl': '%(id)s.%(ext)s'
|
'outtmpl': '%(id)s.%(ext)s'
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user