2014-02-15 01:14:28 +09:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
class HelsinkiIE(InfoExtractor):
|
2014-02-17 19:32:30 +09:00
|
|
|
IE_DESC = 'helsinki.fi'
|
2014-02-15 01:14:28 +09:00
|
|
|
_VALID_URL = r'https?://video\.helsinki\.fi/Arkisto/flash\.php\?id=(?P<id>\d+)'
|
|
|
|
_TEST = {
|
|
|
|
'url': 'http://video.helsinki.fi/Arkisto/flash.php?id=20258',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '20258',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Tietotekniikkafoorumi-iltapäivä',
|
2014-02-17 19:32:30 +09:00
|
|
|
'description': 'md5:f5c904224d43c133225130fe156a5ee0',
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True, # RTMP
|
2014-02-15 01:14:28 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2014-02-17 19:32:30 +09:00
|
|
|
video_id = mobj.group('id')
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
2014-02-15 01:14:28 +09:00
|
|
|
formats = []
|
2014-02-17 19:32:30 +09:00
|
|
|
|
|
|
|
mobj = re.search(r'file=((\w+):[^&]+)', webpage)
|
|
|
|
if mobj:
|
|
|
|
formats.append({
|
|
|
|
'ext': mobj.group(2),
|
|
|
|
'play_path': mobj.group(1),
|
|
|
|
'url': 'rtmp://flashvideo.it.helsinki.fi/vod/',
|
|
|
|
'player_url': 'http://video.helsinki.fi/player.swf',
|
|
|
|
'format_note': 'sd',
|
|
|
|
'quality': 0,
|
|
|
|
})
|
|
|
|
|
|
|
|
mobj = re.search(r'hd\.file=((\w+):[^&]+)', webpage)
|
|
|
|
if mobj:
|
|
|
|
formats.append({
|
|
|
|
'ext': mobj.group(2),
|
|
|
|
'play_path': mobj.group(1),
|
|
|
|
'url': 'rtmp://flashvideo.it.helsinki.fi/vod/',
|
|
|
|
'player_url': 'http://video.helsinki.fi/player.swf',
|
|
|
|
'format_note': 'hd',
|
|
|
|
'quality': 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
self._sort_formats(formats)
|
2014-02-15 01:14:28 +09:00
|
|
|
|
|
|
|
return {
|
2014-02-17 19:32:30 +09:00
|
|
|
'id': video_id,
|
2014-02-15 01:14:28 +09:00
|
|
|
'title': self._og_search_title(webpage).replace('Video: ', ''),
|
|
|
|
'description': self._og_search_description(webpage),
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
2014-02-17 19:32:30 +09:00
|
|
|
'formats': formats,
|
2014-02-15 01:14:28 +09:00
|
|
|
}
|