Rapsys Git
/
youtubedl
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Prepare to release.
[youtubedl]
/
youtube_dl
/
extractor
/
moevideo.py
diff --git
a/youtube_dl/extractor/moevideo.py
b/youtube_dl/extractor/moevideo.py
index 5a66302f6ec317f89c4153248565159ebd075010..44bcc498254dc2503b8ce103b59d1c207c44df66 100644
(file)
--- a/
youtube_dl/extractor/moevideo.py
+++ b/
youtube_dl/extractor/moevideo.py
@@
-5,13
+5,11
@@
import json
import re
from .common import InfoExtractor
import re
from .common import InfoExtractor
-from ..compat import (
- compat_urllib_parse,
- compat_urllib_request,
-)
from ..utils import (
ExtractorError,
int_or_none,
from ..utils import (
ExtractorError,
int_or_none,
+ sanitized_Request,
+ urlencode_postdata,
)
)
@@
-32,12
+30,13
@@
class MoeVideoIE(InfoExtractor):
'ext': 'flv',
'title': 'Sink cut out machine',
'description': 'md5:f29ff97b663aefa760bf7ca63c8ca8a8',
'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': 17822500,
'width': 540,
'height': 360,
'duration': 179,
'filesize': 17822500,
- }
+ },
+ 'skip': 'Video has been removed',
},
{
'url': 'http://playreplay.net/video/77107.7f325710a627383d40540d8e991a',
},
{
'url': 'http://playreplay.net/video/77107.7f325710a627383d40540d8e991a',
@@
-47,7
+46,7
@@
class MoeVideoIE(InfoExtractor):
'ext': 'flv',
'title': 'Operacion Condor.',
'description': 'md5:7e68cb2fcda66833d5081c542491a9a3',
'ext': 'flv',
'title': 'Operacion Condor.',
'description': 'md5:7e68cb2fcda66833d5081c542491a9a3',
- 'thumbnail': 're:^https?://.*\.jpg$',
+ 'thumbnail':
r
're:^https?://.*\.jpg$',
'width': 480,
'height': 296,
'duration': 6027,
'width': 480,
'height': 296,
'duration': 6027,
@@
-79,8
+78,8
@@
class MoeVideoIE(InfoExtractor):
],
]
r_json = json.dumps(r)
],
]
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)
req.add_header('Content-type', 'application/x-www-form-urlencoded')
response = self._download_json(req, video_id)