This commit is contained in:
Vito Van 2016-05-11 09:50:56 +08:00
parent 50446e4273
commit 5b25857f39
4 changed files with 24 additions and 1 deletions

View File

@ -373,6 +373,7 @@ Use `--url`/`-u` to get a list of downloadable resource URLs extracted from the
| 央视网 | <http://www.cntv.cn/> |✓| | |
| 花瓣 | <http://huaban.com/> | |✓| |
| 东方财富 | <http://video.eastmoney.com/> |✓| | |
| 第一财经 | <http://www.yicai.com/video/> |✓| | |
For all other sites not on the list, the universal extractor will take care of finding and downloading interesting resources from the page.

View File

@ -87,7 +87,8 @@ SITES = {
'youtu' : 'youtube',
'youtube' : 'youtube',
'zhanqi' : 'zhanqi',
'eastmoney' : 'eastmoney'
'eastmoney' : 'eastmoney',
'yicai' : 'yicai'
}
import getopt

View File

@ -76,3 +76,4 @@ from .youtube import *
from .ted import *
from .khan import *
from .eastmoney import *
from .yicai import *

View File

@ -0,0 +1,20 @@
#!/usr/bin/env python
__all__ = ['yicai_download']
from ..common import *
def yicai_download(url, output_dir = '.', merge = True, info_only = False, **kwargs):
if "www.yicai.com" in url:
url = url.replace('www.yicai.com','m.yicai.com')
html = get_content(url)
title = match1(html, r'<h1 class="f-ff3">(.+)</h1>')
url = match1(html, r'<source.+?src="([^"]+)"')
_, ext, size = url_info(url)
print_info(site_info, title, ext, size)
if not info_only:
download_urls([url], title, ext, size, output_dir = output_dir, merge = merge)
site_info = "*.yicai.com/video"
download = yicai_download
download_playlist = playlist_not_supported('yicai')