mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-01 23:14:33 +01:00
5c2266df4b
compat_urllib_request.Request [downloader/dash] Use sanitized_Request [downloader/http] Use sanitized_Request [atresplayer] Use sanitized_Request [bambuser] Use sanitized_Request [bliptv] Use sanitized_Request [brightcove] Use sanitized_Request [cbs] Use sanitized_Request [ceskatelevize] Use sanitized_Request [collegerama] Use sanitized_Request [extractor/common] Use sanitized_Request [crunchyroll] Use sanitized_Request [dailymotion] Use sanitized_Request [dcn] Use sanitized_Request [dramafever] Use sanitized_Request [dumpert] Use sanitized_Request [eitb] Use sanitized_Request [escapist] Use sanitized_Request [everyonesmixtape] Use sanitized_Request [extremetube] Use sanitized_Request [facebook] Use sanitized_Request [fc2] Use sanitized_Request [flickr] Use sanitized_Request [4tube] Use sanitized_Request [gdcvault] Use sanitized_Request [extractor/generic] Use sanitized_Request [hearthisat] Use sanitized_Request [hotnewhiphop] Use sanitized_Request [hypem] Use sanitized_Request [iprima] Use sanitized_Request [ivi] Use sanitized_Request [keezmovies] Use sanitized_Request [letv] Use sanitized_Request [lynda] Use sanitized_Request [metacafe] Use sanitized_Request [minhateca] Use sanitized_Request [miomio] Use sanitized_Request [meovideo] Use sanitized_Request [mofosex] Use sanitized_Request [moniker] Use sanitized_Request [mooshare] Use sanitized_Request [movieclips] Use sanitized_Request [mtv] Use sanitized_Request [myvideo] Use sanitized_Request [neteasemusic] Use sanitized_Request [nfb] Use sanitized_Request [niconico] Use sanitized_Request [noco] Use sanitized_Request [nosvideo] Use sanitized_Request [novamov] Use sanitized_Request [nowness] Use sanitized_Request [nuvid] Use sanitized_Request [played] Use sanitized_Request [pluralsight] Use sanitized_Request [pornhub] Use sanitized_Request [pornotube] Use sanitized_Request [primesharetv] Use sanitized_Request [promptfile] Use sanitized_Request [qqmusic] Use sanitized_Request [rtve] Use sanitized_Request [safari] Use sanitized_Request [sandia] Use sanitized_Request [shared] Use sanitized_Request [sharesix] Use sanitized_Request [sina] Use sanitized_Request [smotri] Use sanitized_Request [sohu] Use sanitized_Request [spankwire] Use sanitized_Request [sportdeutschland] Use sanitized_Request [streamcloud] Use sanitized_Request [streamcz] Use sanitized_Request [tapely] Use sanitized_Request [tube8] Use sanitized_Request [tubitv] Use sanitized_Request [twitch] Use sanitized_Request [twitter] Use sanitized_Request [udemy] Use sanitized_Request [vbox7] Use sanitized_Request [veoh] Use sanitized_Request [vessel] Use sanitized_Request [vevo] Use sanitized_Request [viddler] Use sanitized_Request [videomega] Use sanitized_Request [viewvster] Use sanitized_Request [viki] Use sanitized_Request [vk] Use sanitized_Request [vodlocker] Use sanitized_Request [voicerepublic] Use sanitized_Request [wistia] Use sanitized_Request [xfileshare] Use sanitized_Request [xtube] Use sanitized_Request [xvideos] Use sanitized_Request [yandexmusic] Use sanitized_Request [youku] Use sanitized_Request [youporn] Use sanitized_Request [youtube] Use sanitized_Request [patreon] Use sanitized_Request [extractor/common] Remove unused import [nfb] PEP 8
114 lines
3.6 KiB
Python
114 lines
3.6 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import json
|
|
import re
|
|
|
|
from .common import InfoExtractor
|
|
from ..compat import compat_urllib_parse
|
|
from ..utils import (
|
|
ExtractorError,
|
|
int_or_none,
|
|
sanitized_Request,
|
|
)
|
|
|
|
|
|
class MoeVideoIE(InfoExtractor):
|
|
IE_DESC = 'LetitBit video services: moevideo.net, playreplay.net and videochart.net'
|
|
_VALID_URL = r'''(?x)
|
|
https?://(?P<host>(?:www\.)?
|
|
(?:(?:moevideo|playreplay|videochart)\.net))/
|
|
(?:video|framevideo)/(?P<id>[0-9]+\.[0-9A-Za-z]+)'''
|
|
_API_URL = 'http://api.letitbit.net/'
|
|
_API_KEY = 'tVL0gjqo5'
|
|
_TESTS = [
|
|
{
|
|
'url': 'http://moevideo.net/video/00297.0036103fe3d513ef27915216fd29',
|
|
'md5': '129f5ae1f6585d0e9bb4f38e774ffb3a',
|
|
'info_dict': {
|
|
'id': '00297.0036103fe3d513ef27915216fd29',
|
|
'ext': 'flv',
|
|
'title': 'Sink cut out machine',
|
|
'description': 'md5:f29ff97b663aefa760bf7ca63c8ca8a8',
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
'width': 540,
|
|
'height': 360,
|
|
'duration': 179,
|
|
'filesize': 17822500,
|
|
}
|
|
},
|
|
{
|
|
'url': 'http://playreplay.net/video/77107.7f325710a627383d40540d8e991a',
|
|
'md5': '74f0a014d5b661f0f0e2361300d1620e',
|
|
'info_dict': {
|
|
'id': '77107.7f325710a627383d40540d8e991a',
|
|
'ext': 'flv',
|
|
'title': 'Operacion Condor.',
|
|
'description': 'md5:7e68cb2fcda66833d5081c542491a9a3',
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
'width': 480,
|
|
'height': 296,
|
|
'duration': 6027,
|
|
'filesize': 588257923,
|
|
},
|
|
'skip': 'Video has been removed',
|
|
},
|
|
]
|
|
|
|
def _real_extract(self, url):
|
|
mobj = re.match(self._VALID_URL, url)
|
|
video_id = mobj.group('id')
|
|
|
|
webpage = self._download_webpage(
|
|
'http://%s/video/%s' % (mobj.group('host'), video_id),
|
|
video_id, 'Downloading webpage')
|
|
|
|
title = self._og_search_title(webpage)
|
|
thumbnail = self._og_search_thumbnail(webpage)
|
|
description = self._og_search_description(webpage)
|
|
|
|
r = [
|
|
self._API_KEY,
|
|
[
|
|
'preview/flv_link',
|
|
{
|
|
'uid': video_id,
|
|
},
|
|
],
|
|
]
|
|
r_json = json.dumps(r)
|
|
post = compat_urllib_parse.urlencode({'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)
|
|
if response['status'] != 'OK':
|
|
raise ExtractorError(
|
|
'%s returned error: %s' % (self.IE_NAME, response['data']),
|
|
expected=True
|
|
)
|
|
item = response['data'][0]
|
|
video_url = item['link']
|
|
duration = int_or_none(item['length'])
|
|
width = int_or_none(item['width'])
|
|
height = int_or_none(item['height'])
|
|
filesize = int_or_none(item['convert_size'])
|
|
|
|
formats = [{
|
|
'format_id': 'sd',
|
|
'http_headers': {'Range': 'bytes=0-'}, # Required to download
|
|
'url': video_url,
|
|
'width': width,
|
|
'height': height,
|
|
'filesize': filesize,
|
|
}]
|
|
|
|
return {
|
|
'id': video_id,
|
|
'title': title,
|
|
'thumbnail': thumbnail,
|
|
'description': description,
|
|
'duration': duration,
|
|
'formats': formats,
|
|
}
|