X-Git-Url: https://git.rapsys.eu/youtubedl/blobdiff_plain/6d835d4d6903cf5e18ad01844736929e06d16004..82abf0abb400fbf710e03be31cc8942c21a040be:/youtube_dl/extractor/moevideo.py diff --git a/youtube_dl/extractor/moevideo.py b/youtube_dl/extractor/moevideo.py index 2ff79b9..d930b96 100644 --- a/youtube_dl/extractor/moevideo.py +++ b/youtube_dl/extractor/moevideo.py @@ -5,11 +5,11 @@ import json import re from .common import InfoExtractor +from ..compat import compat_urllib_parse from ..utils import ( ExtractorError, - compat_urllib_parse, - compat_urllib_request, int_or_none, + sanitized_Request, ) @@ -50,7 +50,8 @@ class MoeVideoIE(InfoExtractor): 'height': 296, 'duration': 6027, 'filesize': 588257923, - } + }, + 'skip': 'Video has been removed', }, ] @@ -77,7 +78,7 @@ 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) + req = sanitized_Request(self._API_URL, post) req.add_header('Content-type', 'application/x-www-form-urlencoded') response = self._download_json(req, video_id)