diff --git a/yt_dlp/extractor/generic.py b/yt_dlp/extractor/generic.py index 7460a60e09..a4bd3db577 100644 --- a/yt_dlp/extractor/generic.py +++ b/yt_dlp/extractor/generic.py @@ -1491,16 +1491,6 @@ class GenericIE(InfoExtractor): 'title': 'WALL-TO-GORTAT', }, 'skip': 'Site changed', - }, { - # 🔧112 - # VideaIE - 'url': 'https://videa.hu/', - 'info_dict': { - 'id': '623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style', - 'title': 'Deleted Magic - Star Wars: OT Deleted / Alt. Scenes Docu. Style - DVD Talk Forum', - }, - 'playlist_mincount': 2, - 'skip': 'IE fix required; embed detection', }, { # ✅124 # YoutubeIE diff --git a/yt_dlp/extractor/videa.py b/yt_dlp/extractor/videa.py index 8dc7ebd15e..2dca13ba9f 100644 --- a/yt_dlp/extractor/videa.py +++ b/yt_dlp/extractor/videa.py @@ -37,7 +37,7 @@ class VideaIE(InfoExtractor): 'id': '8YfIAjxwWGwT8HVQ', 'ext': 'mp4', 'title': 'Az őrült kígyász 285 kígyót enged szabadon', - 'thumbnail': r're:^https?://.*', + 'thumbnail': r're:https?://.+', 'duration': 21, 'age_limit': 0, }, @@ -48,7 +48,7 @@ class VideaIE(InfoExtractor): 'id': 'jAHDWfWSJH5XuFhH', 'ext': 'mp4', 'title': 'Supercars előzés', - 'thumbnail': r're:^https?://.*', + 'thumbnail': r're:https?://.+', 'duration': 64, 'age_limit': 0, }, @@ -59,7 +59,7 @@ class VideaIE(InfoExtractor): 'id': '8YfIAjxwWGwT8HVQ', 'ext': 'mp4', 'title': 'Az őrült kígyász 285 kígyót enged szabadon', - 'thumbnail': r're:^https?://.*', + 'thumbnail': r're:https?://.+', 'duration': 21, 'age_limit': 0, }, @@ -76,6 +76,15 @@ class VideaIE(InfoExtractor): 'url': 'https://videakid.hu/player/v/8YfIAjxwWGwT8HVQ?autoplay=1', 'only_matching': True, }] + _WEBPAGE_TESTS = [{ + 'url': 'https://videa.hu/', + 'info_dict': { + 'id': '623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style', + 'title': 'Deleted Magic - Star Wars: OT Deleted / Alt. Scenes Docu. Style - DVD Talk Forum', + }, + 'playlist_mincount': 2, + 'skip': 'IE fix required; embed detection', + }] _STATIC_SECRET = 'xHb0ZvME5q8CBcoQi6AngerDu3FGO9fkUlwPmLVY_RTzj2hJIS4NasXWKy1td7p' @staticmethod