aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/moniker.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-08-15 15:17:27 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-08-15 15:17:27 +0800
commitd0d6c097fc7859180f16a445536029c600b1e57f (patch)
treedce25db7845ba50822ed40db7cda532622b317b6 /youtube_dl/extractor/moniker.py
parent6be5e46994ea5db76d7a2659260606898c265957 (diff)
downloadyoutube-dl-d0d6c097fc7859180f16a445536029c600b1e57f.tar.xz
[moniker] Support embed- URLs (#6450)
Diffstat (limited to 'youtube_dl/extractor/moniker.py')
-rw-r--r--youtube_dl/extractor/moniker.py18
1 files changed, 16 insertions, 2 deletions
diff --git a/youtube_dl/extractor/moniker.py b/youtube_dl/extractor/moniker.py
index 88dcd4f73..69e4bcd1a 100644
--- a/youtube_dl/extractor/moniker.py
+++ b/youtube_dl/extractor/moniker.py
@@ -9,7 +9,10 @@ from ..compat import (
compat_urllib_parse,
compat_urllib_request,
)
-from ..utils import ExtractorError
+from ..utils import (
+ ExtractorError,
+ remove_start,
+)
class MonikerIE(InfoExtractor):
@@ -25,6 +28,14 @@ class MonikerIE(InfoExtractor):
'title': 'youtube-dl test video',
},
}, {
+ 'url': 'http://allmyvideos.net/embed-jih3nce3x6wn',
+ 'md5': '710883dee1bfc370ecf9fa6a89307c88',
+ 'info_dict': {
+ 'id': 'jih3nce3x6wn',
+ 'ext': 'mp4',
+ 'title': 'youtube-dl test video',
+ },
+ }, {
'url': 'http://vidspot.net/l2ngsmhs8ci5',
'md5': '710883dee1bfc370ecf9fa6a89307c88',
'info_dict': {
@@ -38,7 +49,10 @@ class MonikerIE(InfoExtractor):
}]
def _real_extract(self, url):
- video_id = self._match_id(url)
+ orig_video_id = self._match_id(url)
+ video_id = remove_start(orig_video_id, 'embed-')
+ url = url.replace(orig_video_id, video_id)
+ assert re.match(self._VALID_URL, url) is not None
orig_webpage = self._download_webpage(url, video_id)
if '>File Not Found<' in orig_webpage: