[primesharetv] remove extractor
This commit is contained in:
parent
f517c0c0a7
commit
612a159510
|
@ -901,7 +901,6 @@ from .puhutv import (
|
||||||
PuhuTVSerieIE,
|
PuhuTVSerieIE,
|
||||||
)
|
)
|
||||||
from .presstv import PressTVIE
|
from .presstv import PressTVIE
|
||||||
from .primesharetv import PrimeShareTVIE
|
|
||||||
from .promptfile import PromptFileIE
|
from .promptfile import PromptFileIE
|
||||||
from .prosiebensat1 import ProSiebenSat1IE
|
from .prosiebensat1 import ProSiebenSat1IE
|
||||||
from .puls4 import Puls4IE
|
from .puls4 import Puls4IE
|
||||||
|
|
|
@ -1,62 +0,0 @@
|
||||||
from __future__ import unicode_literals
|
|
||||||
|
|
||||||
from .common import InfoExtractor
|
|
||||||
from ..utils import (
|
|
||||||
ExtractorError,
|
|
||||||
sanitized_Request,
|
|
||||||
urlencode_postdata,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class PrimeShareTVIE(InfoExtractor):
|
|
||||||
_VALID_URL = r'https?://(?:www\.)?primeshare\.tv/download/(?P<id>[\da-zA-Z]+)'
|
|
||||||
|
|
||||||
_TEST = {
|
|
||||||
'url': 'http://primeshare.tv/download/238790B611',
|
|
||||||
'md5': 'b92d9bf5461137c36228009f31533fbc',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '238790B611',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'Public Domain - 1960s Commercial - Crest Toothpaste-YKsuFona',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
def _real_extract(self, url):
|
|
||||||
video_id = self._match_id(url)
|
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
|
||||||
|
|
||||||
if '>File not exist<' in webpage:
|
|
||||||
raise ExtractorError('Video %s does not exist' % video_id, expected=True)
|
|
||||||
|
|
||||||
fields = self._hidden_inputs(webpage)
|
|
||||||
|
|
||||||
headers = {
|
|
||||||
'Referer': url,
|
|
||||||
'Content-Type': 'application/x-www-form-urlencoded',
|
|
||||||
}
|
|
||||||
|
|
||||||
wait_time = int(self._search_regex(
|
|
||||||
r'var\s+cWaitTime\s*=\s*(\d+)',
|
|
||||||
webpage, 'wait time', default=7)) + 1
|
|
||||||
self._sleep(wait_time, video_id)
|
|
||||||
|
|
||||||
req = sanitized_Request(
|
|
||||||
url, urlencode_postdata(fields), headers)
|
|
||||||
video_page = self._download_webpage(
|
|
||||||
req, video_id, 'Downloading video page')
|
|
||||||
|
|
||||||
video_url = self._search_regex(
|
|
||||||
r"url\s*:\s*'([^']+\.primeshare\.tv(?::443)?/file/[^']+)'",
|
|
||||||
video_page, 'video url')
|
|
||||||
|
|
||||||
title = self._html_search_regex(
|
|
||||||
r'<h1>Watch\s*(?: )?\s*\((.+?)(?:\s*\[\.\.\.\])?\)\s*(?: )?\s*<strong>',
|
|
||||||
video_page, 'title')
|
|
||||||
|
|
||||||
return {
|
|
||||||
'id': video_id,
|
|
||||||
'url': video_url,
|
|
||||||
'title': title,
|
|
||||||
'ext': 'mp4',
|
|
||||||
}
|
|
Loading…
Reference in New Issue