mirror of
https://github.com/soimort/you-get.git
synced 2025-02-03 16:53:56 +03:00
73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
__all__ = ['longzhu_download']
|
||
|
|
||
|
import json
|
||
|
from ..common import (
|
||
|
get_content,
|
||
|
match1,
|
||
|
print_info,
|
||
|
download_urls,
|
||
|
playlist_not_supported,
|
||
|
)
|
||
|
from ..common import player
|
||
|
|
||
|
def longzhu_download(url, output_dir = '.', merge=True, info_only=False, **kwargs):
|
||
|
web_domain = url.split('/')[2]
|
||
|
if (web_domain == 'star.longzhu.com') or (web_domain == 'y.longzhu.com'):
|
||
|
domain = url.split('/')[3].split('?')[0]
|
||
|
m_url = 'http://m.longzhu.com/{0}'.format(domain)
|
||
|
m_html = get_content(m_url)
|
||
|
room_id_patt = r'var\s*roomId\s*=\s*(\d+);'
|
||
|
room_id = match1(m_html,room_id_patt)
|
||
|
|
||
|
json_url = 'http://liveapi.plu.cn/liveapp/roomstatus?roomId={0}'.format(room_id)
|
||
|
content = get_content(json_url)
|
||
|
data = json.loads(content)
|
||
|
streamUri = data['streamUri']
|
||
|
if len(streamUri) <= 4:
|
||
|
raise ValueError('The live stream is not online!')
|
||
|
title = data['title']
|
||
|
streamer = data['userName']
|
||
|
title = str.format(streamer,': ',title)
|
||
|
|
||
|
steam_api_url = 'http://livestream.plu.cn/live/getlivePlayurl?roomId={0}'.format(room_id)
|
||
|
content = get_content(steam_api_url)
|
||
|
data = json.loads(content)
|
||
|
isonline = data.get('isTransfer')
|
||
|
if isonline == '0':
|
||
|
raise ValueError('The live stream is not online!')
|
||
|
|
||
|
real_url = data['playLines'][0]['urls'][0]['securityUrl']
|
||
|
|
||
|
print_info(site_info, title, 'flv', float('inf'))
|
||
|
|
||
|
if not info_only:
|
||
|
download_urls([real_url], title, 'flv', None, output_dir, merge=merge)
|
||
|
|
||
|
elif web_domain == 'replay.longzhu.com':
|
||
|
videoid = match1(url, r'(\d+)$')
|
||
|
json_url = 'http://liveapi.longzhu.com/livereplay/getreplayfordisplay?videoId={0}'.format(videoid)
|
||
|
content = get_content(json_url)
|
||
|
data = json.loads(content)
|
||
|
|
||
|
username = data['userName']
|
||
|
title = data['title']
|
||
|
title = str.format(username,':',title)
|
||
|
real_url = data['videoUrl']
|
||
|
|
||
|
if player:
|
||
|
print_info('Longzhu Video', title, 'm3u8', 0)
|
||
|
download_urls([real_url], title, 'm3u8', 0, output_dir, merge=merge)
|
||
|
else:
|
||
|
urls = general_m3u8_extractor(real_url)
|
||
|
print_info('Longzhu Video', title, 'm3u8', 0)
|
||
|
if not info_only:
|
||
|
download_urls(urls, title, 'ts', 0, output_dir=output_dir, merge=merge, **kwargs)
|
||
|
|
||
|
else:
|
||
|
raise ValueError('Wrong url or unsupported link ... {0}'.format(url))
|
||
|
|
||
|
site_info = 'longzhu.com'
|
||
|
download = longzhu_download
|
||
|
download_playlist = playlist_not_supported('longzhu')
|