Allow to initialize a YoutubeDL object without parameters
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Mon, 25 Nov 2013 20:55:20 +0000 (21:55 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Mon, 25 Nov 2013 21:03:39 +0000 (22:03 +0100)
Having to pass the 'outtmpl' parameter feels really strange when you just want to extract the info of a video.

youtube_dl/YoutubeDL.py

index a1ef3a94ab501f75316e1c4e6b758bfc598e0445..46635bce1511f4fb6da7957905d295f692e9218f 100644 (file)
@@ -146,7 +146,7 @@ class YoutubeDL(object):
     _num_downloads = None
     _screen_file = None
 
-    def __init__(self, params):
+    def __init__(self, params={}):
         """Create a FileDownloader object with the given options."""
         self._ies = []
         self._ies_instances = {}
@@ -169,7 +169,7 @@ class YoutubeDL(object):
         self.params = params
         self.fd = FileDownloader(self, self.params)
 
-        if '%(stitle)s' in self.params['outtmpl']:
+        if '%(stitle)s' in self.params.get('outtmpl', ''):
             self.report_warning(u'%(stitle)s is deprecated. Use the %(title)s and the --restrict-filenames flag(which also secures %(uploader)s et al) instead.')
 
         self._setup_opener()