mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
fixed: urls with a video in a playlist were incorrectly downloaded as a whole playlist as single item instead of split by each video
This commit is contained in:
parent
c675db1ae5
commit
5b64f2f615
1 changed files with 4 additions and 3 deletions
|
@ -267,7 +267,9 @@ class DownloadQueue:
|
|||
|
||||
etype = entry.get('_type') or 'video'
|
||||
|
||||
if etype == 'playlist':
|
||||
if etype.startswith('url'):
|
||||
return await self.add(entry['url'], quality, format, folder, custom_name_prefix, playlist_strict_mode, playlist_item_limit, auto_start, already)
|
||||
elif etype == 'playlist' or etype.startswith('url'):
|
||||
entries = entry['entries']
|
||||
log.info(f'playlist detected with {len(entries)} entries')
|
||||
playlist_index_digits = len(str(len(entries)))
|
||||
|
@ -310,8 +312,7 @@ class DownloadQueue:
|
|||
self.pending.put(Download(dldirectory, self.config.TEMP_DIR, output, output_chapter, quality, format, ytdl_options, dl))
|
||||
await self.notifier.added(dl)
|
||||
return {'status': 'ok'}
|
||||
elif etype.startswith('url'):
|
||||
return await self.add(entry['url'], quality, format, folder, custom_name_prefix, playlist_strict_mode, playlist_item_limit, auto_start, already)
|
||||
|
||||
return {'status': 'error', 'msg': f'Unsupported resource "{etype}"'}
|
||||
|
||||
async def add(self, url, quality, format, folder, custom_name_prefix, playlist_strict_mode, playlist_item_limit, auto_start=True, already=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue