diff options
Diffstat (limited to 'youtube_dl/__init__.py')
| -rw-r--r-- | youtube_dl/__init__.py | 62 | 
1 files changed, 39 insertions, 23 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index a52d69a30..92478aa6b 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -1,6 +1,8 @@  #!/usr/bin/env python  # -*- coding: utf-8 -*- +from __future__ import with_statement +  __authors__  = (  	'Ricardo Garcia Gonzalez',  	'Danny Colligan', @@ -19,7 +21,7 @@ __authors__  = (  	)  __license__ = 'Public Domain' -__version__ = '2012.10.09' +__version__ = '2012.11.28'  UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'  UPDATE_URL_VERSION = 'https://raw.github.com/rg3/youtube-dl/master/LATEST_VERSION' @@ -46,7 +48,7 @@ from PostProcessor import *  def updateSelf(downloader, filename):  	''' Update the program file with the latest version from the repository '''  	# Note: downloader only used for options -	 +  	if not os.access(filename, os.W_OK):  		sys.exit('ERROR: no write permissions on %s' % filename) @@ -64,7 +66,7 @@ def updateSelf(downloader, filename):  		directory = os.path.dirname(exe)  		if not os.access(directory, os.W_OK):  			sys.exit('ERROR: no write permissions on %s' % directory) -			 +  		try:  			urlh = urllib2.urlopen(UPDATE_URL_EXE)  			newcontent = urlh.read() @@ -73,20 +75,18 @@ def updateSelf(downloader, filename):  				outf.write(newcontent)  		except (IOError, OSError), err:  			sys.exit('ERROR: unable to download latest version') -			 +  		try:  			bat = os.path.join(directory, 'youtube-dl-updater.bat')  			b = open(bat, 'w') -			 -			print >> b, """ +			b.write("""  echo Updating youtube-dl...  ping 127.0.0.1 -n 5 -w 1000 > NUL  move /Y "%s.new" "%s"  del "%s" -			""" %(exe, exe, bat) -			 +			\n""" %(exe, exe, bat))  			b.close() -			 +  			os.startfile(bat)  		except (IOError, OSError), err:  			sys.exit('ERROR: unable to overwrite current version') @@ -187,6 +187,11 @@ def parseOpts():  			dest='ratelimit', metavar='LIMIT', help='download rate limit (e.g. 50k or 44.6m)')  	general.add_option('-R', '--retries',  			dest='retries', metavar='RETRIES', help='number of retries (default is %default)', default=10) +	general.add_option('--buffer-size', +			dest='buffersize', metavar='SIZE', help='size of download buffer (e.g. 1024 or 16k) (default is %default)', default="1024") +	general.add_option('--no-resize-buffer', +			action='store_true', dest='noresizebuffer', +			help='do not automatically adjust the buffer size. By default, the buffer size is automatically resized from an initial value of SIZE.', default=False)  	general.add_option('--dump-user-agent',  			action='store_true', dest='dump_user_agent',  			help='display the current browser identification', default=False) @@ -263,13 +268,18 @@ def parseOpts():  	filesystem.add_option('-t', '--title',  			action='store_true', dest='usetitle', help='use title in file name', default=False) +	filesystem.add_option('--id', +			action='store_true', dest='useid', help='use video ID in file name', default=False)  	filesystem.add_option('-l', '--literal', -			action='store_true', dest='useliteral', help='use literal title in file name', default=False) +			action='store_true', dest='usetitle', help='[deprecated] alias of --title', default=False)  	filesystem.add_option('-A', '--auto-number',  			action='store_true', dest='autonumber',  			help='number downloaded files starting from 00000', default=False)  	filesystem.add_option('-o', '--output', -			dest='outtmpl', metavar='TEMPLATE', help='output filename template. Use %(stitle)s to get the title, %(uploader)s for the uploader name, %(autonumber)s to get an automatically incremented number, %(ext)s for the filename extension, %(upload_date)s for the upload date (YYYYMMDD), %(extractor)s for the provider (youtube, metacafe, etc), %(id)s for the video id and %% for a literal percent. Use - to output to stdout.') +			dest='outtmpl', metavar='TEMPLATE', help='output filename template. Use %(title)s to get the title, %(uploader)s for the uploader name, %(autonumber)s to get an automatically incremented number, %(ext)s for the filename extension, %(upload_date)s for the upload date (YYYYMMDD), %(extractor)s for the provider (youtube, metacafe, etc), %(id)s for the video id and %% for a literal percent. Use - to output to stdout.') +	filesystem.add_option('--restrict-filenames', +			action='store_true', dest='restrictfilenames', +			help='Restrict filenames to only ASCII characters, and avoid "&" and spaces in filenames', default=False)  	filesystem.add_option('-a', '--batch-file',  			dest='batchfile', metavar='FILE', help='file containing URLs to download (\'-\' for stdin)')  	filesystem.add_option('-w', '--no-overwrites', @@ -294,7 +304,7 @@ def parseOpts():  			help='write video metadata to a .info.json file', default=False) -	postproc.add_option('--extract-audio', action='store_true', dest='extractaudio', default=False, +	postproc.add_option('-x', '--extract-audio', action='store_true', dest='extractaudio', default=False,  			help='convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)')  	postproc.add_option('--audio-format', metavar='FORMAT', dest='audioformat', default='best',  			help='"best", "aac", "vorbis", "mp3", "m4a", or "wav"; best by default') @@ -422,10 +432,10 @@ def _real_main():  		parser.error(u'using .netrc conflicts with giving username/password')  	if opts.password is not None and opts.username is None:  		parser.error(u'account username missing') -	if opts.outtmpl is not None and (opts.useliteral or opts.usetitle or opts.autonumber): -		parser.error(u'using output template conflicts with using title, literal title or auto number') -	if opts.usetitle and opts.useliteral: -		parser.error(u'using title conflicts with using literal title') +	if opts.outtmpl is not None and (opts.usetitle or opts.autonumber or opts.useid): +		parser.error(u'using output template conflicts with using title, video ID or auto number') +	if opts.usetitle and opts.useid: +		parser.error(u'using title conflicts with using video ID')  	if opts.username is not None and opts.password is None:  		opts.password = getpass.getpass(u'Type account password and press return:')  	if opts.ratelimit is not None: @@ -438,6 +448,11 @@ def _real_main():  			opts.retries = long(opts.retries)  		except (TypeError, ValueError), err:  			parser.error(u'invalid retry count specified') +	if opts.buffersize is not None: +		numeric_buffersize = FileDownloader.parse_bytes(opts.buffersize) +		if numeric_buffersize is None: +			parser.error(u'invalid buffer size specified') +		opts.buffersize = numeric_buffersize  	try:  		opts.playliststart = int(opts.playliststart)  		if opts.playliststart <= 0: @@ -476,19 +491,20 @@ def _real_main():  		'format_limit': opts.format_limit,  		'listformats': opts.listformats,  		'outtmpl': ((opts.outtmpl is not None and opts.outtmpl.decode(preferredencoding())) -			or (opts.format == '-1' and opts.usetitle and u'%(stitle)s-%(id)s-%(format)s.%(ext)s') -			or (opts.format == '-1' and opts.useliteral and u'%(title)s-%(id)s-%(format)s.%(ext)s') +			or (opts.format == '-1' and opts.usetitle and u'%(title)s-%(id)s-%(format)s.%(ext)s')  			or (opts.format == '-1' and u'%(id)s-%(format)s.%(ext)s') -			or (opts.usetitle and opts.autonumber and u'%(autonumber)s-%(stitle)s-%(id)s.%(ext)s') -			or (opts.useliteral and opts.autonumber and u'%(autonumber)s-%(title)s-%(id)s.%(ext)s') -			or (opts.usetitle and u'%(stitle)s-%(id)s.%(ext)s') -			or (opts.useliteral and u'%(title)s-%(id)s.%(ext)s') +			or (opts.usetitle and opts.autonumber and u'%(autonumber)s-%(title)s-%(id)s.%(ext)s') +			or (opts.usetitle and u'%(title)s-%(id)s.%(ext)s') +			or (opts.useid and u'%(id)s.%(ext)s')  			or (opts.autonumber and u'%(autonumber)s-%(id)s.%(ext)s')  			or u'%(id)s.%(ext)s'), +		'restrictfilenames': opts.restrictfilenames,  		'ignoreerrors': opts.ignoreerrors,  		'ratelimit': opts.ratelimit,  		'nooverwrites': opts.nooverwrites,  		'retries': opts.retries, +		'buffersize': opts.buffersize, +		'noresizebuffer': opts.noresizebuffer,  		'continuedl': opts.continue_dl,  		'noprogress': opts.noprogress,  		'playliststart': opts.playliststart, @@ -528,7 +544,7 @@ def _real_main():  			parser.error(u'you must provide at least one URL')  		else:  			sys.exit() -	 +  	try:  		retcode = fd.download(all_urls)  	except MaxDownloadsReached:  | 
