2012-09-01 23:38:23 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
__all__ = ['acfun_download']
|
|
|
|
|
|
|
|
from ..common import *
|
|
|
|
|
2012-12-01 19:14:04 +04:00
|
|
|
from .qq import qq_download_by_id
|
2013-07-14 19:34:42 +04:00
|
|
|
from .sina import sina_download_by_vid
|
2012-09-01 23:38:23 +04:00
|
|
|
from .tudou import tudou_download_by_iid
|
|
|
|
from .youku import youku_download_by_id
|
|
|
|
|
|
|
|
import json, re
|
|
|
|
|
|
|
|
def get_srt_json(id):
|
2014-04-13 15:31:21 +04:00
|
|
|
url = 'http://comment.acfun.com/%s.json' % id
|
2012-09-01 23:38:23 +04:00
|
|
|
return get_html(url)
|
|
|
|
|
2013-12-07 08:28:38 +04:00
|
|
|
def get_srt_lock_json(id):
|
2014-04-13 15:31:21 +04:00
|
|
|
url = 'http://comment.acfun.com/%s_lock.json' % id
|
2013-12-07 08:28:38 +04:00
|
|
|
return get_html(url)
|
|
|
|
|
2014-02-14 05:20:06 +04:00
|
|
|
def acfun_download_by_vid(vid, title=None, output_dir='.', merge=True, info_only=False):
|
2014-04-13 15:31:21 +04:00
|
|
|
info = json.loads(get_html('http://www.acfun.com/video/getVideo.aspx?id=' + vid))
|
2014-02-14 05:20:06 +04:00
|
|
|
sourceType = info['sourceType']
|
|
|
|
sourceId = info['sourceId']
|
|
|
|
danmakuId = info['danmakuId']
|
|
|
|
if sourceType == 'sina':
|
|
|
|
sina_download_by_vid(sourceId, title, output_dir=output_dir, merge=merge, info_only=info_only)
|
|
|
|
elif sourceType == 'youku':
|
|
|
|
youku_download_by_id(sourceId, title, output_dir=output_dir, merge=merge, info_only=info_only)
|
|
|
|
elif sourceType == 'tudou':
|
|
|
|
tudou_download_by_iid(sourceId, title, output_dir=output_dir, merge=merge, info_only=info_only)
|
|
|
|
elif sourceType == 'qq':
|
|
|
|
qq_download_by_id(sourceId, title, output_dir=output_dir, merge=merge, info_only=info_only)
|
2012-09-01 23:38:23 +04:00
|
|
|
else:
|
2014-05-29 04:27:38 +04:00
|
|
|
raise NotImplementedError(sourceType)
|
2014-02-14 05:20:06 +04:00
|
|
|
|
2012-09-16 12:50:35 +04:00
|
|
|
if not info_only:
|
2014-05-21 04:39:35 +04:00
|
|
|
title = get_filename(title)
|
2013-12-16 15:08:38 +04:00
|
|
|
try:
|
2014-05-29 04:42:57 +04:00
|
|
|
print('Downloading %s ...\n' % (title + '.cmt.json'))
|
2014-02-14 05:20:06 +04:00
|
|
|
cmt = get_srt_json(danmakuId)
|
2013-12-16 15:08:38 +04:00
|
|
|
with open(os.path.join(output_dir, title + '.cmt.json'), 'w') as x:
|
|
|
|
x.write(cmt)
|
2014-05-29 04:42:57 +04:00
|
|
|
print('Downloading %s ...\n' % (title + '.cmt_lock.json'))
|
2014-02-14 05:20:06 +04:00
|
|
|
cmt = get_srt_lock_json(danmakuId)
|
2013-12-16 15:08:38 +04:00
|
|
|
with open(os.path.join(output_dir, title + '.cmt_lock.json'), 'w') as x:
|
|
|
|
x.write(cmt)
|
|
|
|
except:
|
|
|
|
pass
|
2012-09-01 23:38:23 +04:00
|
|
|
|
|
|
|
def acfun_download(url, output_dir = '.', merge = True, info_only = False):
|
2014-04-13 15:31:21 +04:00
|
|
|
assert re.match(r'http://[^\.]+.acfun.[^\.]+/v/ac(\d+)', url)
|
2012-09-01 23:38:23 +04:00
|
|
|
html = get_html(url)
|
2014-02-14 05:20:06 +04:00
|
|
|
|
2014-04-13 15:31:21 +04:00
|
|
|
title = r1(r'<h1 id="txt-title-view">([^<>]+)<', html)
|
2012-09-01 23:38:23 +04:00
|
|
|
title = unescape_html(title)
|
|
|
|
title = escape_file_path(title)
|
2014-02-14 05:20:06 +04:00
|
|
|
assert title
|
|
|
|
|
|
|
|
videos = re.findall("data-vid=\"(\d+)\" href=\"[^\"]+\" title=\"([^\"]+)\"", html)
|
|
|
|
if videos is not None:
|
|
|
|
for video in videos:
|
|
|
|
p_vid = video[0]
|
|
|
|
p_title = title + " - " + video[1]
|
|
|
|
acfun_download_by_vid(p_vid, p_title, output_dir=output_dir, merge=merge, info_only=info_only)
|
2012-10-02 02:17:52 +04:00
|
|
|
else:
|
2014-02-14 05:20:06 +04:00
|
|
|
# Useless - to be removed?
|
|
|
|
id = r1(r"src=\"/newflvplayer/player.*id=(\d+)", html)
|
|
|
|
sina_download_by_vid(id, title, output_dir=output_dir, merge=merge, info_only=info_only)
|
2012-09-01 23:38:23 +04:00
|
|
|
|
2014-04-13 15:31:21 +04:00
|
|
|
site_info = "AcFun.com"
|
2012-09-01 23:38:23 +04:00
|
|
|
download = acfun_download
|
|
|
|
download_playlist = playlist_not_supported('acfun')
|