yt-dlc/youtube_dlc/extractor/defense.py

40 lines
1.2 KiB
Python
Raw Normal View History

2014-01-07 08:45:40 +00:00
from __future__ import unicode_literals
2013-09-02 23:51:17 +00:00
from .common import InfoExtractor
class DefenseGouvFrIE(InfoExtractor):
2014-01-07 08:45:58 +00:00
IE_NAME = 'defense.gouv.fr'
_VALID_URL = r'https?://.*?\.defense\.gouv\.fr/layout/set/ligthboxvideo/base-de-medias/webtv/(?P<id>[^/?#]*)'
2013-09-02 23:51:17 +00:00
_TEST = {
2014-01-07 08:45:40 +00:00
'url': 'http://www.defense.gouv.fr/layout/set/ligthboxvideo/base-de-medias/webtv/attaque-chimique-syrienne-du-21-aout-2013-1',
'md5': '75bba6124da7e63d2d60b5244ec9430c',
2015-02-01 11:10:15 +00:00
'info_dict': {
'id': '11213',
'ext': 'mp4',
'title': 'attaque-chimique-syrienne-du-21-aout-2013-1'
2013-09-03 10:03:19 +00:00
}
2013-09-02 23:51:17 +00:00
}
def _real_extract(self, url):
2015-02-01 11:10:15 +00:00
title = self._match_id(url)
2013-09-02 23:51:17 +00:00
webpage = self._download_webpage(url, title)
2015-02-01 11:10:15 +00:00
2013-09-02 23:51:17 +00:00
video_id = self._search_regex(
r"flashvars.pvg_id=\"(\d+)\";",
webpage, 'ID')
2014-11-23 19:41:03 +00:00
2015-02-21 13:55:13 +00:00
json_url = (
'http://static.videos.gouv.fr/brightcovehub/export/json/%s' %
video_id)
2015-02-01 11:10:15 +00:00
info = self._download_json(json_url, title, 'Downloading JSON config')
video_url = info['renditions'][0]['url']
return {
'id': video_id,
'ext': 'mp4',
'url': video_url,
'title': title,
}