1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-22 16:44:32 +01:00

flake8 fix

This commit is contained in:
Giuseppe Fabiano 2019-01-22 22:27:01 +01:00
parent 8acad5300e
commit ad06fd0b27
No known key found for this signature in database
GPG Key ID: 6F1847F062CB0C54

View File

@ -326,45 +326,45 @@ class ORFFM4StoryIE(InfoExtractor):
_VALID_URL = r'https?://fm4\.orf\.at/stories/(?P<id>\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 Wont 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 Wont 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)