mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-09 06:52:56 +08:00
Add files via upload
This commit is contained in:
parent
f9d5ba2d17
commit
209c18d4d1
37
akvideo.py
Normal file
37
akvideo.py
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# coding: utf-8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
class AKVideoIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://akvideo\.stream/video/(?P<id>\w+)'
|
||||||
|
_TEST = {
|
||||||
|
'url': 'https://akvideo.stream/video/0bvtm479w9iw#',
|
||||||
|
'info_dic': {
|
||||||
|
'id': '0bvtm479w9iw#',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'TEST_VIDEO-C0DPdy98e4c'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
title = ''
|
||||||
|
formats = []
|
||||||
|
videoinfo = re.findall(r'download_video\(\'' + video_id + '\',\'(\w)\',\'(.*)\'\)".*<td nowrap *>(\d+)x(\d+)', webpage)
|
||||||
|
for info in videoinfo:
|
||||||
|
webpage = self._download_webpage('https://akvideo.stream/dl?op=download_orig&id=' + video_id + '&mode=' + info[0] + '&hash=' + info[1], video_id)
|
||||||
|
|
||||||
|
movie_url = re.findall(r'<a class="dwnb" href="(.*?)"', webpage)
|
||||||
|
title = str(movie_url[0]).split("/")[-1]
|
||||||
|
|
||||||
|
formats.append({'url': movie_url[0], 'height': int(info[3]), 'width': int(info[2]) })
|
||||||
|
time.sleep(3)
|
||||||
|
|
||||||
|
self._sort_formats(formats)
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'title': title,
|
||||||
|
'description': title,
|
||||||
|
'formats': formats
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user