aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/miomio.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-08-20 00:08:23 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-08-20 00:08:23 +0800
commita9a3b4a081a6793f0dd0b40be8429a2aa3c1c36d (patch)
treedd419b0c9e06c530a3c9c36091f437b64fa140d9 /youtube_dl/extractor/miomio.py
parentecc90093f9c3793439832f4c9d279605da3489a7 (diff)
downloadyoutube-dl-a9a3b4a081a6793f0dd0b40be8429a2aa3c1c36d.zip
youtube-dl-a9a3b4a081a6793f0dd0b40be8429a2aa3c1c36d.tar.gz
youtube-dl-a9a3b4a081a6793f0dd0b40be8429a2aa3c1c36d.tar.bz2
[miomio] Adapt to the new API and update _TESTS
The test case is from #9680
Diffstat (limited to 'youtube_dl/extractor/miomio.py')
-rw-r--r--youtube_dl/extractor/miomio.py19
1 files changed, 6 insertions, 13 deletions
diff --git a/youtube_dl/extractor/miomio.py b/youtube_dl/extractor/miomio.py
index 937ba0f..ec1b4c4 100644
--- a/youtube_dl/extractor/miomio.py
+++ b/youtube_dl/extractor/miomio.py
@@ -25,10 +25,7 @@ class MioMioIE(InfoExtractor):
'title': '【SKY】字幕 铠武昭和VS平成 假面骑士大战FEAT战队 魔星字幕组 字幕',
'duration': 5923,
},
- 'params': {
- # The server provides broken file
- 'skip_download': True,
- }
+ 'skip': 'Unable to load videos',
}, {
'url': 'http://www.miomio.tv/watch/cc184024/',
'info_dict': {
@@ -47,16 +44,12 @@ class MioMioIE(InfoExtractor):
'skip': 'Unable to load videos',
}, {
# new 'h5' player
- 'url': 'http://www.miomio.tv/watch/cc273295/',
- 'md5': '',
+ 'url': 'http://www.miomio.tv/watch/cc273997/',
+ 'md5': '0b27a4b4495055d826813f8c3a6b2070',
'info_dict': {
- 'id': '273295',
+ 'id': '273997',
'ext': 'mp4',
- 'title': 'アウト×デラックス 20160526',
- },
- 'params': {
- # intermittent HTTP 500
- 'skip_download': True,
+ 'title': 'マツコの知らない世界【劇的進化SP!ビニール傘&冷凍食品2016】 1_2 - 16 05 31',
},
}]
@@ -116,7 +109,7 @@ class MioMioIE(InfoExtractor):
player_webpage = self._download_webpage(
player_url, video_id,
note='Downloading player webpage', headers={'Referer': url})
- entries = self._parse_html5_media_entries(player_url, player_webpage)
+ entries = self._parse_html5_media_entries(player_url, player_webpage, video_id)
http_headers = {'Referer': player_url}
else:
http_headers = {'Referer': 'http://www.miomio.tv%s' % mioplayer_path}