mirror of
https://github.com/soimort/you-get.git
synced 2025-01-24 22:15:03 +03:00
34 lines
1.4 KiB
Python
34 lines
1.4 KiB
Python
#!/usr/bin/env python
|
|
|
|
__all__ = ['yinyuetai_download', 'yinyuetai_download_by_id']
|
|
|
|
from ..common import *
|
|
|
|
def yinyuetai_download_by_id(id, title = None, output_dir = '.', merge = True, info_only = False):
|
|
assert title
|
|
html = get_html('http://www.yinyuetai.com/insite/get-video-info?flex=true&videoId=' + id)
|
|
#TODO: run a fully parse instead of text search
|
|
# url = r1(r'(http://flv.yinyuetai.com/uploads/videos/common/\w+\.flv\?t=[a-f0-9]{16})', html)
|
|
# url = r1(r'http://hc.yinyuetai.com/uploads/videos/common/[A-F0-9]{32}\.mp4\?v=\d{12}', html)
|
|
url = r1(r'(http://\w+\.yinyuetai\.com/uploads/videos/common/\w+\.(?:flv|mp4)\?(?:t=[a-f0-9]{16}|v=\d{12}))', html)
|
|
assert url
|
|
type, ext, size = url_info(url)
|
|
|
|
print_info(site_info, title, type, size)
|
|
if not info_only:
|
|
download_urls([url], title, ext, size, output_dir, merge = merge)
|
|
|
|
def yinyuetai_download(url, output_dir = '.', merge = True, info_only = False):
|
|
id = r1(r'http://www.yinyuetai.com/video/(\d+)$', url)
|
|
assert id
|
|
html = get_html(url, 'utf-8')
|
|
title = r1(r'<meta property="og:title" content="([^"]+)"/>', html)
|
|
assert title
|
|
title = parse.unquote(title)
|
|
title = escape_file_path(title)
|
|
yinyuetai_download_by_id(id, title, output_dir, merge = merge, info_only = info_only)
|
|
|
|
site_info = "YinYueTai.com"
|
|
download = yinyuetai_download
|
|
download_playlist = playlist_not_supported('yinyuetai')
|