1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-07-27 07:38:30 +00:00
This commit is contained in:
doe1080 2025-07-16 16:59:27 +09:00
parent 0f7f5da9b4
commit 72d88b9b16
2 changed files with 12 additions and 13 deletions

View File

@ -1491,16 +1491,6 @@ class GenericIE(InfoExtractor):
'title': 'WALL-TO-GORTAT', 'title': 'WALL-TO-GORTAT',
}, },
'skip': 'Site changed', '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 # ✅124
# YoutubeIE # YoutubeIE

View File

@ -37,7 +37,7 @@ class VideaIE(InfoExtractor):
'id': '8YfIAjxwWGwT8HVQ', 'id': '8YfIAjxwWGwT8HVQ',
'ext': 'mp4', 'ext': 'mp4',
'title': 'Az őrült kígyász 285 kígyót enged szabadon', 'title': 'Az őrült kígyász 285 kígyót enged szabadon',
'thumbnail': r're:^https?://.*', 'thumbnail': r're:https?://.+',
'duration': 21, 'duration': 21,
'age_limit': 0, 'age_limit': 0,
}, },
@ -48,7 +48,7 @@ class VideaIE(InfoExtractor):
'id': 'jAHDWfWSJH5XuFhH', 'id': 'jAHDWfWSJH5XuFhH',
'ext': 'mp4', 'ext': 'mp4',
'title': 'Supercars előzés', 'title': 'Supercars előzés',
'thumbnail': r're:^https?://.*', 'thumbnail': r're:https?://.+',
'duration': 64, 'duration': 64,
'age_limit': 0, 'age_limit': 0,
}, },
@ -59,7 +59,7 @@ class VideaIE(InfoExtractor):
'id': '8YfIAjxwWGwT8HVQ', 'id': '8YfIAjxwWGwT8HVQ',
'ext': 'mp4', 'ext': 'mp4',
'title': 'Az őrült kígyász 285 kígyót enged szabadon', 'title': 'Az őrült kígyász 285 kígyót enged szabadon',
'thumbnail': r're:^https?://.*', 'thumbnail': r're:https?://.+',
'duration': 21, 'duration': 21,
'age_limit': 0, 'age_limit': 0,
}, },
@ -76,6 +76,15 @@ class VideaIE(InfoExtractor):
'url': 'https://videakid.hu/player/v/8YfIAjxwWGwT8HVQ?autoplay=1', 'url': 'https://videakid.hu/player/v/8YfIAjxwWGwT8HVQ?autoplay=1',
'only_matching': True, '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' _STATIC_SECRET = 'xHb0ZvME5q8CBcoQi6AngerDu3FGO9fkUlwPmLVY_RTzj2hJIS4NasXWKy1td7p'
@staticmethod @staticmethod