2014-01-15 11:18:55 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-01-15 06:19:50 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
class FranceInterIE(InfoExtractor):
|
|
|
|
|
2014-01-15 11:18:55 +00:00
|
|
|
_VALID_URL=r'http://(?:www\.)?franceinter\.fr/player/reecouter\?play=(?P<id>[0-9]{6})'
|
2014-01-15 06:19:50 +00:00
|
|
|
_TEST={
|
|
|
|
u'url':u'http://www.franceinter.fr/player/reecouter?play=793962',
|
|
|
|
u'file':u'793962.mp3'
|
2014-01-15 11:18:55 +00:00
|
|
|
|
2014-01-15 06:19:50 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 11:18:55 +00:00
|
|
|
|
2014-01-15 06:19:50 +00:00
|
|
|
|
2014-01-15 11:18:55 +00:00
|
|
|
|
2014-01-15 06:19:50 +00:00
|
|
|
def _real_extract(self,url):
|
|
|
|
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
video_id = mobj.group('id')
|
|
|
|
|
|
|
|
webpage=self._download_webpage(url,video_id)
|
|
|
|
|
2014-01-15 11:18:55 +00:00
|
|
|
title=self._search_regex(u'(?<=<span class="roll_overflow">)(.*)(?=</span></h1>)', webpage, u'title')
|
2014-01-15 06:19:50 +00:00
|
|
|
|
2014-01-15 11:18:55 +00:00
|
|
|
video_url='http://www.franceinter.fr/'+self._search_regex(u'(?<=&urlAOD=)(.*)(?=&startTime)', webpage, u'video url')
|
2014-01-15 06:19:50 +00:00
|
|
|
|
|
|
|
return{'id': video_id,u'url': video_url,u'title': title}
|
|
|
|
|
2014-01-15 11:18:55 +00:00
|
|
|
|