aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2018-05-16 18:44:33 +0100
committerRemita Amine <remitamine@gmail.com>2018-05-16 18:44:33 +0100
commit58a68d8fdae5358273ee52d05d77fe42094e128e (patch)
tree8a0d792bd01d335a3ca81680d6a8fd709040f90c /youtube_dl
parenteea2fafcf506336e37ca514f72757acf8ee004af (diff)
downloadyoutube-dl-58a68d8fdae5358273ee52d05d77fe42094e128e.tar.xz
[moniker] Remove extractor(closes #15336)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/extractors.py1
-rw-r--r--youtube_dl/extractor/moniker.py116
2 files changed, 0 insertions, 117 deletions
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py
index 48e3da9c4..24c23646c 100644
--- a/youtube_dl/extractor/extractors.py
+++ b/youtube_dl/extractor/extractors.py
@@ -625,7 +625,6 @@ from .mnet import MnetIE
from .moevideo import MoeVideoIE
from .mofosex import MofosexIE
from .mojvideo import MojvideoIE
-from .moniker import MonikerIE
from .morningstar import MorningstarIE
from .motherless import (
MotherlessIE,
diff --git a/youtube_dl/extractor/moniker.py b/youtube_dl/extractor/moniker.py
deleted file mode 100644
index b208820fe..000000000
--- a/youtube_dl/extractor/moniker.py
+++ /dev/null
@@ -1,116 +0,0 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-import os.path
-import re
-
-from .common import InfoExtractor
-from ..utils import (
- ExtractorError,
- remove_start,
- sanitized_Request,
- urlencode_postdata,
-)
-
-
-class MonikerIE(InfoExtractor):
- IE_DESC = 'allmyvideos.net and vidspot.net'
- _VALID_URL = r'https?://(?:www\.)?(?:allmyvideos|vidspot)\.net/(?:(?:2|v)/v-)?(?P<id>[a-zA-Z0-9_-]+)'
-
- _TESTS = [{
- 'url': 'http://allmyvideos.net/jih3nce3x6wn',
- 'md5': '710883dee1bfc370ecf9fa6a89307c88',
- 'info_dict': {
- 'id': 'jih3nce3x6wn',
- 'ext': 'mp4',
- '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': {
- 'id': 'l2ngsmhs8ci5',
- 'ext': 'mp4',
- 'title': 'youtube-dl test video',
- },
- }, {
- 'url': 'https://www.vidspot.net/l2ngsmhs8ci5',
- 'only_matching': True,
- }, {
- 'url': 'http://vidspot.net/2/v-ywDf99',
- 'md5': '5f8254ce12df30479428b0152fb8e7ba',
- 'info_dict': {
- 'id': 'ywDf99',
- 'ext': 'mp4',
- 'title': 'IL FAIT LE MALIN EN PORSHE CAYENNE ( mais pas pour longtemps)',
- 'description': 'IL FAIT LE MALIN EN PORSHE CAYENNE.',
- },
- }, {
- 'url': 'http://allmyvideos.net/v/v-HXZm5t',
- 'only_matching': True,
- }]
-
- def _real_extract(self, 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:
- raise ExtractorError('Video %s does not exist' % video_id, expected=True)
-
- error = self._search_regex(
- r'class="err">([^<]+)<', orig_webpage, 'error', default=None)
- if error:
- raise ExtractorError(
- '%s returned error: %s' % (self.IE_NAME, error), expected=True)
-
- builtin_url = self._search_regex(
- r'<iframe[^>]+src=(["\'])(?P<url>.+?/builtin-.+?)\1',
- orig_webpage, 'builtin URL', default=None, group='url')
-
- if builtin_url:
- req = sanitized_Request(builtin_url)
- req.add_header('Referer', url)
- webpage = self._download_webpage(req, video_id, 'Downloading builtin page')
- title = self._og_search_title(orig_webpage).strip()
- description = self._og_search_description(orig_webpage).strip()
- else:
- fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
- data = dict(fields)
-
- post = urlencode_postdata(data)
- headers = {
- b'Content-Type': b'application/x-www-form-urlencoded',
- }
- req = sanitized_Request(url, post, headers)
- webpage = self._download_webpage(
- req, video_id, note='Downloading video page ...')
-
- title = os.path.splitext(data['fname'])[0]
- description = None
-
- # Could be several links with different quality
- links = re.findall(r'"file" : "?(.+?)",', webpage)
- # Assume the links are ordered in quality
- formats = [{
- 'url': l,
- 'quality': i,
- } for i, l in enumerate(links)]
- self._sort_formats(formats)
-
- return {
- 'id': video_id,
- 'title': title,
- 'description': description,
- 'formats': formats,
- }