2014-01-17 11:09:07 +09:00
|
|
|
|
# coding: utf-8
|
2014-01-15 20:18:55 +09:00
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
2014-01-15 15:19:50 +09:00
|
|
|
|
from .common import InfoExtractor
|
2014-09-19 22:58:50 +09:00
|
|
|
|
from ..utils import int_or_none
|
2014-01-17 11:09:07 +09:00
|
|
|
|
|
|
|
|
|
|
2014-01-15 15:19:50 +09:00
|
|
|
|
class FranceInterIE(InfoExtractor):
|
2016-03-22 00:36:32 +09:00
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?franceinter\.fr/player/reecouter\?play=(?P<id>[0-9]+)'
|
2014-01-17 11:09:07 +09:00
|
|
|
|
_TEST = {
|
|
|
|
|
'url': 'http://www.franceinter.fr/player/reecouter?play=793962',
|
|
|
|
|
'md5': '4764932e466e6f6c79c317d2e74f6884',
|
2016-02-14 18:37:17 +09:00
|
|
|
|
'info_dict': {
|
2014-09-19 22:58:50 +09:00
|
|
|
|
'id': '793962',
|
|
|
|
|
'ext': 'mp3',
|
|
|
|
|
'title': 'L’Histoire dans les jeux vidéo',
|
|
|
|
|
'description': 'md5:7e93ddb4451e7530022792240a3049c7',
|
|
|
|
|
'timestamp': 1387369800,
|
|
|
|
|
'upload_date': '20131218',
|
2014-01-17 11:09:07 +09:00
|
|
|
|
},
|
|
|
|
|
}
|
2014-01-15 15:19:50 +09:00
|
|
|
|
|
2014-01-17 11:09:07 +09:00
|
|
|
|
def _real_extract(self, url):
|
2015-12-22 19:30:35 +09:00
|
|
|
|
video_id = self._match_id(url)
|
2014-01-17 11:10:54 +09:00
|
|
|
|
|
2014-01-17 11:09:07 +09:00
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
2014-09-19 22:58:50 +09:00
|
|
|
|
|
2014-01-17 11:09:07 +09:00
|
|
|
|
path = self._search_regex(
|
2014-09-19 22:58:50 +09:00
|
|
|
|
r'<a id="player".+?href="([^"]+)"', webpage, 'video url')
|
2014-01-17 11:09:07 +09:00
|
|
|
|
video_url = 'http://www.franceinter.fr/' + path
|
|
|
|
|
|
2014-09-19 22:58:50 +09:00
|
|
|
|
title = self._html_search_regex(
|
2015-12-22 19:27:18 +09:00
|
|
|
|
r'<span class="title-diffusion">(.+?)</span>', webpage, 'title')
|
2014-09-19 22:58:50 +09:00
|
|
|
|
description = self._html_search_regex(
|
|
|
|
|
r'<span class="description">(.*?)</span>',
|
|
|
|
|
webpage, 'description', fatal=False)
|
|
|
|
|
timestamp = int_or_none(self._search_regex(
|
|
|
|
|
r'data-date="(\d+)"', webpage, 'upload date', fatal=False))
|
|
|
|
|
|
2014-01-17 11:09:07 +09:00
|
|
|
|
return {
|
|
|
|
|
'id': video_id,
|
2014-09-19 22:58:50 +09:00
|
|
|
|
'title': title,
|
|
|
|
|
'description': description,
|
|
|
|
|
'timestamp': timestamp,
|
2014-01-17 11:09:07 +09:00
|
|
|
|
'formats': [{
|
|
|
|
|
'url': video_url,
|
|
|
|
|
'vcodec': 'none',
|
|
|
|
|
}],
|
|
|
|
|
}
|