remove support of JPopsuki

This commit is contained in:
Mort Yao 2013-06-13 16:50:04 +02:00
parent 3b21acfe4b
commit a0d971de45
5 changed files with 0 additions and 28 deletions

View File

@ -25,7 +25,6 @@ Fork me on GitHub: <https://github.com/soimort/you-get>
* SoundCloud <http://soundcloud.com>
* Mixcloud <http://www.mixcloud.com>
* Freesound <http://www.freesound.org>
* JPopsuki <http://jpopsuki.tv>
* VID48 <http://vid48.com>
* Niconico (ニコニコ動画) <http://www.nicovideo.jp>
* Youku (优酷) <http://www.youku.com>
@ -243,7 +242,6 @@ You-Get基于优酷下载脚本[iambus/youku-lixian](https://github.com/iambus/y
* SoundCloud <http://soundcloud.com>
* Mixcloud <http://www.mixcloud.com>
* Freesound <http://www.freesound.org>
* JPopsuki <http://jpopsuki.tv>
* VID48 <http://vid48.com>
* NICONICO动画 <http://www.nicovideo.jp>
* 优酷 <http://www.youku.com>

View File

@ -28,7 +28,6 @@ Supported Sites (As of Now)
* SoundCloud http://soundcloud.com
* Mixcloud http://www.mixcloud.com
* Freesound http://www.freesound.org
* JPopsuki http://jpopsuki.tv
* VID48 http://vid48.com
* Niconico (ニコニコ動画) http://www.nicovideo.jp
* Youku (优酷) http://www.youku.com

View File

@ -36,7 +36,6 @@ def url_to_module(url):
'in': alive,
'iqiyi': iqiyi,
'joy': joy,
'jpopsuki': jpopsuki,
'kankanews': bilibili,
'ku6': ku6,
'miomio': miomio,

View File

@ -15,7 +15,6 @@ from .google import *
from .ifeng import *
from .iqiyi import *
from .joy import *
from .jpopsuki import *
from .ku6 import *
from .miomio import *
from .mixcloud import *

View File

@ -1,23 +0,0 @@
#!/usr/bin/env python
__all__ = ['jpopsuki_download']
from ..common import *
def jpopsuki_download(url, output_dir = '.', merge = True, info_only = False):
html = get_html(url)
title = r1(r'<meta name="title" content="([^"]*)"', html)
if title.endswith(' - JPopsuki TV'):
title = title[:-14]
url = "http://jpopsuki.tv%s" % r1(r'<source src="([^"]*)"', html)
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)
site_info = "JPopsuki.tv"
download = jpopsuki_download
download_playlist = playlist_not_supported('jpopsuki')