X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fmoevideo.py;h=44bcc498254dc2503b8ce103b59d1c207c44df66;hb=70d35d166c1cfb14af20fb6d45ed820b6249f941;hp=d2a73fdabfd52c727b8fa79067f68cae3117d796;hpb=5fb9077e8ca2e8bbab5f9e1c57747ff44296fe62;p=youtube-dl diff --git a/youtube_dl/extractor/moevideo.py b/youtube_dl/extractor/moevideo.py index d2a73fdab..44bcc4982 100644 --- a/youtube_dl/extractor/moevideo.py +++ b/youtube_dl/extractor/moevideo.py @@ -7,17 +7,17 @@ import re from .common import InfoExtractor from ..utils import ( ExtractorError, - compat_urllib_parse, - compat_urllib_request, int_or_none, + sanitized_Request, + urlencode_postdata, ) class MoeVideoIE(InfoExtractor): - IE_DESC = 'moevideo.net and playreplay.net' + IE_DESC = 'LetitBit video services: moevideo.net, playreplay.net and videochart.net' _VALID_URL = r'''(?x) https?://(?P(?:www\.)? - (?:moevideo\.net|playreplay\.net))/ + (?:(?:moevideo|playreplay|videochart)\.net))/ (?:video|framevideo)/(?P[0-9]+\.[0-9A-Za-z]+)''' _API_URL = 'http://api.letitbit.net/' _API_KEY = 'tVL0gjqo5' @@ -30,12 +30,13 @@ class MoeVideoIE(InfoExtractor): 'ext': 'flv', 'title': 'Sink cut out machine', 'description': 'md5:f29ff97b663aefa760bf7ca63c8ca8a8', - 'thumbnail': 're:^https?://.*\.jpg$', + 'thumbnail': r're:^https?://.*\.jpg$', 'width': 540, 'height': 360, 'duration': 179, - 'filesize_approx': 17822500, - } + 'filesize': 17822500, + }, + 'skip': 'Video has been removed', }, { 'url': 'http://playreplay.net/video/77107.7f325710a627383d40540d8e991a', @@ -45,12 +46,13 @@ class MoeVideoIE(InfoExtractor): 'ext': 'flv', 'title': 'Operacion Condor.', 'description': 'md5:7e68cb2fcda66833d5081c542491a9a3', - 'thumbnail': 're:^https?://.*\.jpg$', + 'thumbnail': r're:^https?://.*\.jpg$', 'width': 480, 'height': 296, 'duration': 6027, - 'filesize_approx': 588257923, - } + 'filesize': 588257923, + }, + 'skip': 'Video has been removed', }, ] @@ -76,8 +78,8 @@ class MoeVideoIE(InfoExtractor): ], ] r_json = json.dumps(r) - post = compat_urllib_parse.urlencode({'r': r_json}) - req = compat_urllib_request.Request(self._API_URL, post) + post = urlencode_postdata({'r': r_json}) + req = sanitized_Request(self._API_URL, post) req.add_header('Content-type', 'application/x-www-form-urlencoded') response = self._download_json(req, video_id) @@ -99,7 +101,7 @@ class MoeVideoIE(InfoExtractor): 'url': video_url, 'width': width, 'height': height, - 'filesize_approx': filesize, + 'filesize': filesize, }] return {