diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index 678d9a213..18b692a7d 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -793,24 +793,6 @@ class GenericIE(InfoExtractor): 'upload_date': '20220111', }, 'params': {'skip_download': 'm3u8'}, - }, { - # ✅67 - # IndavideoEmbedIE - 'url': 'https://palyazat.indavideo.hu/video/RUSH_1', - 'info_dict': { - 'id': '3808180', - 'ext': 'mp4', - 'title': 'RUSH', - 'age_limit': 0, - 'description': '', - 'duration': 650, - 'tags': 'count:2', - 'thumbnail': 'https://pics.indavideo.hu/videos/003/808/180/7-1.jpg', - 'timestamp': 1729136266, - 'upload_date': '20241017', - 'uploader': '7summerfilms', - 'uploader_id': '1628496', - }, }, { # ✅124 # YoutubeIE diff --git a/yt_dlp/extractor/indavideo.py b/yt_dlp/extractor/indavideo.py index 85e388e0d..2da1d796e 100644 --- a/yt_dlp/extractor/indavideo.py +++ b/yt_dlp/extractor/indavideo.py @@ -11,7 +11,6 @@ class IndavideoEmbedIE(InfoExtractor): _VALID_URL = r'https?://(?:(?:embed\.)?indavideo\.hu/player/video/|assets\.indavideo\.hu/swf/player\.swf\?.*\b(?:v(?:ID|id))=)(?P[\da-f]+)' # Some example URLs covered by generic extractor: - # https://indavideo.hu/video/Vicces_cica_1 # https://index.indavideo.hu/video/Hod_Nemetorszagban # https://auto.indavideo.hu/video/Sajat_utanfutoban_a_kis_tacsko # https://film.indavideo.hu/video/f_farkaslesen @@ -25,14 +24,14 @@ class IndavideoEmbedIE(InfoExtractor): 'ext': 'mp4', 'title': 'Cicatánc', 'description': '', - 'thumbnail': r're:^https?://.*\.jpg$', 'uploader': 'cukiajanlo', 'uploader_id': '83729', + 'thumbnail': r're:https?://pics\.indavideo\.hu/videos/.+\.jpg', 'timestamp': 1439193826, 'upload_date': '20150810', 'duration': 72, 'age_limit': 0, - 'tags': ['tánc', 'cica', 'cuki', 'cukiajanlo', 'newsroom'], + 'tags': 'count:5', }, }, { 'url': 'https://embed.indavideo.hu/player/video/1bdc3c6d80?autostart=1&hide=1', @@ -45,14 +44,30 @@ class IndavideoEmbedIE(InfoExtractor): 'ext': 'mp4', 'title': 'Vicces cica', 'description': 'Játszik a tablettel. :D', - 'thumbnail': r're:^https?://.*\.jpg$', + 'thumbnail': r're:https?://pics\.indavideo\.hu/videos/.+\.jpg', 'uploader': 'Jet_Pack', 'uploader_id': '491217', 'timestamp': 1390821212, 'upload_date': '20140127', 'duration': 7, 'age_limit': 0, - 'tags': ['cica', 'Jet_Pack'], + 'tags': 'count:2', + }, + }, { + 'url': 'https://palyazat.indavideo.hu/video/RUSH_1', + 'info_dict': { + 'id': '3808180', + 'ext': 'mp4', + 'title': 'RUSH', + 'age_limit': 0, + 'description': '', + 'duration': 650, + 'tags': 'count:2', + 'thumbnail': r're:https?://pics\.indavideo\.hu/videos/.+\.jpg', + 'timestamp': 1729136266, + 'upload_date': '20241017', + 'uploader': '7summerfilms', + 'uploader_id': '1628496', }, }]