mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 13:35:16 +03:00
YouTube: dirty fix to download the best quality & codecs, as required by Issue #24
This commit is contained in:
parent
1ca83e9908
commit
0d1d713215
@ -1,6 +1,13 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.3dev-20121209
|
||||||
|
---------------
|
||||||
|
|
||||||
|
*Date: 2012-12-09*
|
||||||
|
|
||||||
|
* YouTube: downloading the highest available quality now
|
||||||
|
|
||||||
0.2.16
|
0.2.16
|
||||||
------
|
------
|
||||||
|
|
||||||
|
@ -12,10 +12,35 @@ def youtube_download_by_id(id, title = None, output_dir = '.', merge = True, inf
|
|||||||
title = parse.unquote(title)
|
title = parse.unquote(title)
|
||||||
title = escape_file_path(title)
|
title = escape_file_path(title)
|
||||||
|
|
||||||
url = r1(r'crossdomain.xml"\);yt.preload.start\("([^"]+)"\)', html)
|
for itag in [
|
||||||
url = unicodize(url)
|
'38',
|
||||||
url = re.sub(r'\\/', '/', url)
|
'46', '37',
|
||||||
url = re.sub(r'generate_204', 'videoplayback', url)
|
'102', '45', '22',
|
||||||
|
'84',
|
||||||
|
'120',
|
||||||
|
'85',
|
||||||
|
'44', '35',
|
||||||
|
'101', '100', '43', '34', '82', '18',
|
||||||
|
'6',
|
||||||
|
'83', '5', '36',
|
||||||
|
'17',
|
||||||
|
'13',
|
||||||
|
]:
|
||||||
|
fmt = r1(r'itag=' + itag + r'\\u0026([^,]+),', html)
|
||||||
|
if fmt:
|
||||||
|
url = r1(r'url=([^\\]+)\\u0026', fmt)
|
||||||
|
url = unicodize(url)
|
||||||
|
url = parse.unquote(url)
|
||||||
|
sig = r1(r'sig=([^\\]+)\\u0026', fmt)
|
||||||
|
url = url + '&signature=' + sig
|
||||||
|
break
|
||||||
|
try:
|
||||||
|
url
|
||||||
|
except NameError:
|
||||||
|
url = r1(r'crossdomain.xml"\);yt.preload.start\("([^"]+)"\)', html)
|
||||||
|
url = unicodize(url)
|
||||||
|
url = re.sub(r'\\/', '/', url)
|
||||||
|
url = re.sub(r'generate_204', 'videoplayback', url)
|
||||||
|
|
||||||
type, ext, size = url_info(url)
|
type, ext, size = url_info(url)
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
__version__ = '0.3dev'
|
__version__ = '0.3dev-20121209'
|
||||||
__date__ = '2012-12-09'
|
__date__ = '2012-12-09'
|
||||||
|
Loading…
Reference in New Issue
Block a user