mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-03-17 21:42:22 +09:00
Revert "Download videos from jeuxvideo.com"
This reverts commit 943f7f7a39
.
Conflicts:
youtube-dl
This commit is contained in:
parent
1a8527605b
commit
5a7fa1989e
@ -36,7 +36,6 @@ from .ign import IGNIE, OneUPIE
|
|||||||
from .ina import InaIE
|
from .ina import InaIE
|
||||||
from .infoq import InfoQIE
|
from .infoq import InfoQIE
|
||||||
from .instagram import InstagramIE
|
from .instagram import InstagramIE
|
||||||
from .jeuxvideo import JeuxVideoIE
|
|
||||||
from .jukebox import JukeboxIE
|
from .jukebox import JukeboxIE
|
||||||
from .justintv import JustinTVIE
|
from .justintv import JustinTVIE
|
||||||
from .kankan import KankanIE
|
from .kankan import KankanIE
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
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]
|
|
Loading…
Reference in New Issue
Block a user