mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-09-14 06:53:47 +03:00
[ie/rumble] Ignore tar files
This commit is contained in:
@@ -179,6 +179,9 @@ class RumbleEmbedIE(InfoExtractor):
|
|||||||
meta = video_info.get('meta') or {}
|
meta = video_info.get('meta') or {}
|
||||||
if not video_info.get('url'):
|
if not video_info.get('url'):
|
||||||
continue
|
continue
|
||||||
|
# With default query parms returns m3u8 varients which are duplicates, without returns tar files
|
||||||
|
if ext == 'tar':
|
||||||
|
continue
|
||||||
if ext == 'hls':
|
if ext == 'hls':
|
||||||
if meta.get('live') is True and video.get('live') == 1:
|
if meta.get('live') is True and video.get('live') == 1:
|
||||||
live_status = 'post_live'
|
live_status = 'post_live'
|
||||||
|
|||||||
Reference in New Issue
Block a user