Added TED.com video downloader

Closes #56
This commit is contained in:
David Parunakian 2013-08-08 20:27:54 +04:00
parent 82532aa504
commit f21479c0a3
3 changed files with 26 additions and 0 deletions

View File

@ -38,5 +38,6 @@ from .xiami import *
from .yinyuetai import * from .yinyuetai import *
from .youku import * from .youku import *
from .youtube import * from .youtube import *
from .ted import *
from .__main__ import * from .__main__ import *

View File

@ -49,6 +49,7 @@ def url_to_module(url):
'sohu': sohu, 'sohu': sohu,
'songtaste':songtaste, 'songtaste':songtaste,
'soundcloud': soundcloud, 'soundcloud': soundcloud,
'ted': ted,
'tudou': tudou, 'tudou': tudou,
'tumblr': tumblr, 'tumblr': tumblr,
'vid48': vid48, 'vid48': vid48,

View File

@ -0,0 +1,24 @@
#!/usr/bin/env python
__all__ = ['ted_download']
from ..common import *
def ted_download(url, output_dir = '.', merge = True, info_only = False):
page = get_html(url).split("\n")
for line in page:
if line.find("<title>") > -1:
title = line.replace("<title>", "").replace("</title>", "").replace("\t", "")
title = title[:title.find(' | ')]
if line.find("no-flash-video-download") > -1:
url = line.replace('<a id="no-flash-video-download" href="', "").replace(" ", "").replace("\t", "").replace(".mp4", "-480p-en.mp4")
url = url[:url.find('"')]
type, ext, size = url_info(url)
print_info(site_info, title, type, size)
if not info_only:
download_urls([url], title, ext, size, output_dir, merge=merge)
break
site_info = "ted.com"
download = ted_download
download_playlist = playlist_not_supported('ted')