aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/jeuxvideo.py
diff options
context:
space:
mode:
authorPierre Rudloff <pierre@rudloff.pro>2013-08-18 16:11:47 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-08-22 12:12:34 +0200
commit25b51c7816b5e8f3a20e7582f04d8dff7e0c788f (patch)
tree9085cf0ed3f1de07743ed19d05d41753d01903c2 /youtube_dl/extractor/jeuxvideo.py
parentddf3bd328b0077f3a88ff96e7f17bcd89baaeeac (diff)
downloadyoutube-dl-25b51c7816b5e8f3a20e7582f04d8dff7e0c788f.zip
youtube-dl-25b51c7816b5e8f3a20e7582f04d8dff7e0c788f.tar.gz
youtube-dl-25b51c7816b5e8f3a20e7582f04d8dff7e0c788f.tar.bz2
Download videos from jeuxvideo.com
Diffstat (limited to 'youtube_dl/extractor/jeuxvideo.py')
-rw-r--r--youtube_dl/extractor/jeuxvideo.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/youtube_dl/extractor/jeuxvideo.py b/youtube_dl/extractor/jeuxvideo.py
new file mode 100644
index 0000000..d74a1c9
--- /dev/null
+++ b/youtube_dl/extractor/jeuxvideo.py
@@ -0,0 +1,33 @@
+import json
+import re
+
+from .common import InfoExtractor
+
+class JeuxVideoIE(InfoExtractor):
+ _VALID_URL = r'http://.*?\.jeuxvideo\.com/.*/(.*?)-\d+\.htm'
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ title = re.match(self._VALID_URL, url).group(1)
+ webpage = self._download_webpage(url, title)
+ m_download = re.search(r'<param name="flashvars" value="config=(.*?)" />', webpage)
+
+ xml_link = m_download.group(1)
+
+ id = re.search(r'http://www.jeuxvideo.com/config/\w+/0011/(.*?)/\d+_player\.xml', xml_link).group(1)
+
+ xml_config = self._download_webpage(xml_link, title,
+ 'Downloading XML config')
+ info = re.search(r'<format\.json>(.*?)</format\.json>',
+ xml_config, re.MULTILINE|re.DOTALL).group(1)
+ info = json.loads(info)['versions'][0]
+
+ video_url = 'http://video720.jeuxvideo.com/' + info['file']
+
+ track_info = {'id':id,
+ 'title' : title,
+ 'ext' : 'mp4',
+ 'url' : video_url
+ }
+
+ return [track_info]