diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py index 6b5f0f7b7..f34eda382 100644 --- a/youtube_dl/extractor/orf.py +++ b/youtube_dl/extractor/orf.py @@ -326,45 +326,45 @@ class ORFFM4StoryIE(InfoExtractor): _VALID_URL = r'https?://fm4\.orf\.at/stories/(?P\d+)' _TESTS = [{ - 'url': 'http://fm4.orf.at/stories/2865738/', - 'playlist': [{ - 'md5': 'e1c2c706c45c7b34cf478bbf409907ca', - 'info_dict': { - 'id': '547792', - 'ext': 'flv', - 'title': 'Manu Delago und Inner Tongue live', - 'description': 'Manu Delago und Inner Tongue haben bei der FM4 Soundpark Session live alles gegeben. Hier gibt es Fotos und die gesamte Session als Video.', - 'duration': 1748.52, - 'thumbnail': r're:^https?://.*\.jpg$', - 'upload_date': '20170913', - }, - }, { - 'md5': 'c6dd2179731f86f4f55a7b49899d515f', - 'info_dict': { - 'id': '547798', - 'ext': 'flv', - 'title': 'Manu Delago und Inner Tongue live (2)', - 'duration': 1504.08, - 'thumbnail': r're:^https?://.*\.jpg$', - 'upload_date': '20170913', - 'description': 'Manu Delago und Inner Tongue haben bei der FM4 Soundpark Session live alles gegeben. Hier gibt es Fotos und die gesamte Session als Video.', - }, - }], + 'url': 'http://fm4.orf.at/stories/2865738/', + 'playlist': [{ + 'md5': 'e1c2c706c45c7b34cf478bbf409907ca', + 'info_dict': { + 'id': '547792', + 'ext': 'flv', + 'title': 'Manu Delago und Inner Tongue live', + 'description': 'Manu Delago und Inner Tongue haben bei der FM4 Soundpark Session live alles gegeben. Hier gibt es Fotos und die gesamte Session als Video.', + 'duration': 1748.52, + 'thumbnail': r're:^https?://.*\.jpg$', + 'upload_date': '20170913', + }, }, { - 'url': 'https://fm4.orf.at/stories/2959300/', - 'playlist': [{ - 'md5': 'f8d9b519d3f2714822f27736e636d02c', - 'info_dict': { - 'id': '641511', - 'ext': 'flv', - 'title': '"Lots of Miserable Songs by Scottish People"', - 'duration': 252.52, - 'thumbnail': r're:^https?://.*\.jpg$', - 'upload_date': '20190117', - 'description': 'The Twilight Sad aus Schottland veröffentlichen mit „It Won’t Be Like This All The Time“ ihre direkteste und roheste Platte und waren für eine Acoustic Session bei FM4 zu Gast.', - } - }] + 'md5': 'c6dd2179731f86f4f55a7b49899d515f', + 'info_dict': { + 'id': '547798', + 'ext': 'flv', + 'title': 'Manu Delago und Inner Tongue live (2)', + 'duration': 1504.08, + 'thumbnail': r're:^https?://.*\.jpg$', + 'upload_date': '20170913', + 'description': 'Manu Delago und Inner Tongue haben bei der FM4 Soundpark Session live alles gegeben. Hier gibt es Fotos und die gesamte Session als Video.', + }, + }], + }, { + 'url': 'https://fm4.orf.at/stories/2959300/', + 'playlist': [{ + 'md5': 'f8d9b519d3f2714822f27736e636d02c', + 'info_dict': { + 'id': '641511', + 'ext': 'flv', + 'title': '"Lots of Miserable Songs by Scottish People"', + 'duration': 252.52, + 'thumbnail': r're:^https?://.*\.jpg$', + 'upload_date': '20190117', + 'description': 'The Twilight Sad aus Schottland veröffentlichen mit „It Won’t Be Like This All The Time“ ihre direkteste und roheste Platte und waren für eine Acoustic Session bei FM4 zu Gast.', + } }] + }] def _real_extract(self, url): story_id = self._match_id(url)