|
@ -504,6 +504,17 @@ def _real_main(): |
|
|
if not opts.audioquality.isdigit(): |
|
|
if not opts.audioquality.isdigit(): |
|
|
parser.error(u'invalid audio quality specified') |
|
|
parser.error(u'invalid audio quality specified') |
|
|
|
|
|
|
|
|
|
|
|
if sys.version_info < (3,): |
|
|
|
|
|
# In Python 2, sys.argv is a bytestring (also note http://bugs.python.org/issue2128 for Windows systems) |
|
|
|
|
|
opts.outtmpl = opts.outtmpl.decode(preferredencoding()) |
|
|
|
|
|
outtmpl =((opts.outtmpl is not None and opts.outtmpl) |
|
|
|
|
|
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-%(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') |
|
|
# File downloader |
|
|
# File downloader |
|
|
fd = FileDownloader({ |
|
|
fd = FileDownloader({ |
|
|
'usenetrc': opts.usenetrc, |
|
|
'usenetrc': opts.usenetrc, |
|
@ -521,14 +532,7 @@ def _real_main(): |
|
|
'format': opts.format, |
|
|
'format': opts.format, |
|
|
'format_limit': opts.format_limit, |
|
|
'format_limit': opts.format_limit, |
|
|
'listformats': opts.listformats, |
|
|
'listformats': opts.listformats, |
|
|
'outtmpl': ((opts.outtmpl is not None and opts.outtmpl.decode(preferredencoding())) |
|
|
|
|
|
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-%(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'), |
|
|
|
|
|
|
|
|
'outtmpl': outtmpl, |
|
|
'restrictfilenames': opts.restrictfilenames, |
|
|
'restrictfilenames': opts.restrictfilenames, |
|
|
'ignoreerrors': opts.ignoreerrors, |
|
|
'ignoreerrors': opts.ignoreerrors, |
|
|
'ratelimit': opts.ratelimit, |
|
|
'ratelimit': opts.ratelimit, |
|
|