2015-09-03 06:28:43 +03:00
|
|
|
__all__ = ['embed_download']
|
|
|
|
|
|
|
|
from ..common import *
|
|
|
|
|
2015-11-11 07:17:45 +03:00
|
|
|
from .iqiyi import iqiyi_download_by_vid
|
2015-09-03 06:28:43 +03:00
|
|
|
from .letv import letvcloud_download_by_vu
|
|
|
|
from .qq import qq_download_by_vid
|
|
|
|
from .sina import sina_download_by_vid
|
|
|
|
from .tudou import tudou_download_by_id
|
2015-11-11 06:20:26 +03:00
|
|
|
from .yinyuetai import yinyuetai_download_by_id
|
2015-09-03 06:28:43 +03:00
|
|
|
from .youku import youku_download_by_vid
|
|
|
|
|
|
|
|
"""
|
|
|
|
refer to http://open.youku.com/tools
|
|
|
|
"""
|
2015-09-03 10:46:29 +03:00
|
|
|
youku_embed_patterns = [ 'youku\.com/v_show/id_([a-zA-Z0-9=]+)',
|
|
|
|
'player\.youku\.com/player\.php/sid/([a-zA-Z0-9=]+)/v\.swf',
|
|
|
|
'loader\.swf\?VideoIDS=([a-zA-Z0-9=]+)',
|
|
|
|
'player\.youku\.com/embed/([a-zA-Z0-9=]+)',
|
|
|
|
'YKU.Player\(\'[a-zA-Z0-9]+\',{ client_id: \'[a-zA-Z0-9]+\', vid: \'([a-zA-Z0-9]+)\''
|
|
|
|
]
|
|
|
|
|
2015-09-03 06:28:43 +03:00
|
|
|
"""
|
|
|
|
http://www.tudou.com/programs/view/html5embed.action?type=0&code=3LS_URGvl54&lcode=&resourceId=0_06_05_99
|
|
|
|
"""
|
2015-11-21 01:36:18 +03:00
|
|
|
tudou_embed_patterns = [ 'tudou\.com[a-zA-Z0-9\/\?=\&\.\;]+code=([a-zA-Z0-9_]+)\&',
|
2015-12-11 21:31:13 +03:00
|
|
|
'www\.tudou\.com/v/([a-zA-Z0-9_-]+)/[^"]*v\.swf'
|
2015-09-03 10:46:29 +03:00
|
|
|
]
|
2015-09-03 06:28:43 +03:00
|
|
|
|
|
|
|
"""
|
|
|
|
refer to http://open.tudou.com/wiki/video/info
|
|
|
|
"""
|
2015-09-03 10:46:29 +03:00
|
|
|
tudou_api_patterns = [ ]
|
2015-09-03 06:28:43 +03:00
|
|
|
|
2015-11-11 06:20:26 +03:00
|
|
|
yinyuetai_embed_patterns = [ 'player\.yinyuetai\.com/video/swf/(\d+)' ]
|
|
|
|
|
2015-11-11 07:17:45 +03:00
|
|
|
iqiyi_embed_patterns = [ 'player\.video\.qiyi\.com/([^/]+)/[^/]+/[^/]+/[^/]+\.swf[^"]+tvId=(\d+)' ]
|
|
|
|
|
2015-09-03 06:28:43 +03:00
|
|
|
def embed_download(url, output_dir = '.', merge = True, info_only = False ,**kwargs):
|
|
|
|
content = get_content(url)
|
|
|
|
found = False
|
|
|
|
title = match1(content, '<title>([^<>]+)</title>')
|
2015-09-03 10:46:29 +03:00
|
|
|
vids = matchall(content, youku_embed_patterns)
|
2015-10-19 04:03:58 +03:00
|
|
|
for vid in set(vids):
|
2015-09-03 06:28:43 +03:00
|
|
|
found = True
|
|
|
|
youku_download_by_vid(vid, title=title, output_dir=output_dir, merge=merge, info_only=info_only)
|
|
|
|
|
2015-09-03 10:46:29 +03:00
|
|
|
vids = matchall(content, tudou_embed_patterns)
|
2015-10-19 04:03:58 +03:00
|
|
|
for vid in set(vids):
|
2015-09-03 06:28:43 +03:00
|
|
|
found = True
|
|
|
|
tudou_download_by_id(vid, title=title, output_dir=output_dir, merge=merge, info_only=info_only)
|
2015-09-03 10:46:29 +03:00
|
|
|
|
2015-11-11 06:20:26 +03:00
|
|
|
vids = matchall(content, yinyuetai_embed_patterns)
|
|
|
|
for vid in vids:
|
|
|
|
found = True
|
|
|
|
yinyuetai_download_by_id(vid, title=title, output_dir=output_dir, merge=merge, info_only=info_only)
|
|
|
|
|
2015-11-11 07:17:45 +03:00
|
|
|
vids = matchall(content, iqiyi_embed_patterns)
|
|
|
|
for vid in vids:
|
|
|
|
found = True
|
|
|
|
iqiyi_download_by_vid((vid[1], vid[0]), title=title, output_dir=output_dir, merge=merge, info_only=info_only)
|
|
|
|
|
2015-09-03 06:28:43 +03:00
|
|
|
if not found:
|
|
|
|
raise NotImplementedError(url)
|
|
|
|
|
|
|
|
site_info = "any.any"
|
|
|
|
download = embed_download
|
|
|
|
download_playlist = playlist_not_supported('any.any')
|