forked from iambus/youku-lixian
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sohu.py
executable file
·37 lines (29 loc) · 1.04 KB
/
sohu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
__all__ = ['sohu_download']
from common import *
def real_url(host, prot, file, new):
url = 'http://%s/?prot=%s&file=%s&new=%s' % (host, prot, file, new)
start, _, host, key, _, _ = get_html(url).split('|')
return '%s%s?key=%s' % (start[:-1], new, key)
def sohu_download(url, merge=True):
vid = r1('vid="(\d+)"', get_html(url))
assert vid
import json
data = json.loads(get_decoded_html('http://hot.vrs.sohu.com/vrs_flash.action?vid=%s' % vid))
host = data['allot']
prot = data['prot']
urls = []
data = data['data']
title = data['tvName']
size = sum(data['clipsBytes'])
assert len(data['clipsURL']) == len(data['clipsBytes']) == len(data['su'])
for file, new in zip(data['clipsURL'], data['su']):
urls.append(real_url(host, prot, file, new))
assert data['clipsURL'][0].endswith('.mp4')
download_urls(urls, title, 'mp4', total_size=size, refer=url, merge=merge)
download = sohu_download
download_playlist = playlist_not_supported('sohu')
def main():
script_main('sohu', sohu_download)
if __name__ == '__main__':
main()