mirror of
https://github.com/soimort/you-get.git
synced 2025-02-03 16:53:56 +03:00
26 lines
777 B
Python
26 lines
777 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
__all__ = ['iqilu_download']
|
||
|
|
||
|
from ..common import *
|
||
|
|
||
|
def iqilu_download(url, output_dir = '.', merge = False, info_only = False):
|
||
|
''''''
|
||
|
if re.match(r'http://v.iqilu.com/\w+', url):
|
||
|
|
||
|
#URL in webpage
|
||
|
html = get_content(url)
|
||
|
url = match1(html, r"<input type='hidden' id='playerId' url='(.+)'")
|
||
|
|
||
|
#grab title
|
||
|
title = match1(html, r'<meta name="description" content="(.*?)\"\W')
|
||
|
|
||
|
type_, ext, size = url_info(url)
|
||
|
print_info(site_info, title, type_, size)
|
||
|
if not info_only:
|
||
|
download_urls([url], title, ext, total_size=None, output_dir=output_dir, merge=merge)
|
||
|
|
||
|
|
||
|
site_info = "iQilu"
|
||
|
download = iqilu_download
|
||
|
download_playlist = playlist_not_supported('iqilu')
|