youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit a8374160252e2bb7d52b85f7476e36b08e649d10
parent c9d448876f7380d7e37c67981d8cb96c5cf0a153
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Tue, 12 Apr 2016 18:30:53 +0800

[jadorecettepub] Remove extractor: website gone

Diffstat:
Myoutube_dl/extractor/extractors.py | 1-
Dyoutube_dl/extractor/jadorecettepub.py | 47-----------------------------------------------
2 files changed, 0 insertions(+), 48 deletions(-)

diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py @@ -336,7 +336,6 @@ from .ivi import ( ) from .ivideon import IvideonIE from .izlesene import IzleseneIE -from .jadorecettepub import JadoreCettePubIE from .jeuxvideo import JeuxVideoIE from .jove import JoveIE from .jwplatform import JWPlatformIE diff --git a/youtube_dl/extractor/jadorecettepub.py b/youtube_dl/extractor/jadorecettepub.py @@ -1,47 +0,0 @@ -# coding: utf-8 - -from __future__ import unicode_literals - -import re - -from .common import InfoExtractor -from .youtube import YoutubeIE - - -class JadoreCettePubIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?jadorecettepub\.com/[0-9]{4}/[0-9]{2}/(?P<id>.*?)\.html' - - _TEST = { - 'url': 'http://www.jadorecettepub.com/2010/12/star-wars-massacre-par-les-japonais.html', - 'md5': '401286a06067c70b44076044b66515de', - 'info_dict': { - 'id': 'jLMja3tr7a4', - 'ext': 'mp4', - 'title': 'La pire utilisation de Star Wars', - 'description': "Jadorecettepub.com vous a gratifié de plusieurs pubs géniales utilisant Star Wars et Dark Vador plus particulièrement... Mais l'heure est venue de vous proposer une version totalement massacrée, venue du Japon. Quand les Japonais détruisent l'image de Star Wars pour vendre du thon en boite, ça promet...", - }, - } - - def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - display_id = mobj.group('id') - - webpage = self._download_webpage(url, display_id) - - title = self._html_search_regex( - r'<span style="font-size: x-large;"><b>(.*?)</b></span>', - webpage, 'title') - description = self._html_search_regex( - r'(?s)<div id="fb-root">(.*?)<script>', webpage, 'description', - fatal=False) - real_url = self._search_regex( - r'\[/postlink\](.*)endofvid', webpage, 'video URL') - video_id = YoutubeIE.extract_id(real_url) - - return { - '_type': 'url_transparent', - 'url': real_url, - 'id': video_id, - 'title': title, - 'description': description, - }