mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 05:47:24 +01:00
implemented requested changes
This commit is contained in:
parent
395d2793aa
commit
d3aec35e5b
@ -3560,9 +3560,11 @@ def download(self, url_list):
|
||||
|
||||
return self._download_retcode
|
||||
|
||||
def download_with_info(self, info_list):
|
||||
def download_with_info(self, *info_list):
|
||||
"""Download using already extracted info_dicts."""
|
||||
for info in info_list:
|
||||
infos = [self.sanitize_info(info, self.params.get('clean_infojson', True))
|
||||
for info in info_list]
|
||||
for info in infos:
|
||||
try:
|
||||
self.__download_wrapper(self.process_ie_result)(info, download=True)
|
||||
except (DownloadError, EntryNotInPlaylist, ReExtractInfo) as e:
|
||||
@ -3583,8 +3585,7 @@ def download_with_info_file(self, info_filename):
|
||||
[info_filename], mode='r',
|
||||
openhook=fileinput.hook_encoded('utf-8'))) as f:
|
||||
# FileInput doesn't have a read method, we can't call json.load
|
||||
infos = [self.sanitize_info(info, self.params.get('clean_infojson', True))
|
||||
for info in variadic(json.loads('\n'.join(f)))]
|
||||
infos = [info for info in variadic(json.loads('\n'.join(f)))]
|
||||
return self.download_with_info(infos)
|
||||
|
||||
@staticmethod
|
||||
|
Loading…
Reference in New Issue
Block a user