diff options
author | nixxo <c.nixxo@gmail.com> | 2020-11-09 09:57:15 +0100 |
---|---|---|
committer | nixxo <c.nixxo@gmail.com> | 2020-11-09 09:57:15 +0100 |
commit | 595188ec71e0dd0c2ebdb158a2ef3f931c3e871a (patch) | |
tree | e4642fa0ea4e97ef73f3cdf48d6c105b6d672a04 | |
parent | 6c1c3e5b85e8b0feb39bc3a09779f62216f5c273 (diff) | |
download | hypervideo-pre-595188ec71e0dd0c2ebdb158a2ef3f931c3e871a.tar.lz hypervideo-pre-595188ec71e0dd0c2ebdb158a2ef3f931c3e871a.tar.xz hypervideo-pre-595188ec71e0dd0c2ebdb158a2ef3f931c3e871a.zip |
[gedi] fixed Embeds tests, again
-rw-r--r-- | youtube_dlc/extractor/gedi.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/youtube_dlc/extractor/gedi.py b/youtube_dlc/extractor/gedi.py index baf558818..e64ecebe7 100644 --- a/youtube_dlc/extractor/gedi.py +++ b/youtube_dlc/extractor/gedi.py @@ -170,16 +170,6 @@ class GediIE(GediBaseIE): 'description': 'md5:9907d65b53765681fa3a0b3122617c1f', 'thumbnail': r're:^https://www\.repstatic\.it/video/photo/.+?-thumb-social-play\.jpg$', }, - }, { - 'url': 'https://video.espresso.repubblica.it/embed/tutti-i-video/01-ted-villa/14772/14870&width=640&height=360', - 'md5': '0391c2c83c6506581003aaf0255889c0', - 'info_dict': { - 'id': '14772/14870', - 'ext': 'mp4', - 'title': 'Festival EMERGENCY, Villa: «La buona informazione aiuta la salute» (14772-14870)', - 'description': 'md5:2bce954d278248f3c950be355b7c2226', - 'thumbnail': r're:^https://www\.repstatic\.it/video/photo/.+?-thumb-social-play\.jpg$', - }, }] @@ -214,6 +204,16 @@ class GediEmbedsIE(GediBaseIE): 'description': 'md5:d41d8cd98f00b204e9800998ecf8427e', 'thumbnail': r're:^https://www\.repstatic\.it/video/photo/.+?-thumb-social-play\.jpg$', }, + }, { + 'url': 'https://video.espresso.repubblica.it/embed/tutti-i-video/01-ted-villa/14772/14870&width=640&height=360', + 'md5': '0391c2c83c6506581003aaf0255889c0', + 'info_dict': { + 'id': '14772/14870', + 'ext': 'mp4', + 'title': 'Festival EMERGENCY, Villa: «La buona informazione aiuta la salute» (14772-14870)', + 'description': 'md5:2bce954d278248f3c950be355b7c2226', + 'thumbnail': r're:^https://www\.repstatic\.it/video/photo/.+?-thumb-social-play\.jpg$', + }, }] @staticmethod |