From 05a84b35cc937952f86c0cf5b0accbd2a376ff93 Mon Sep 17 00:00:00 2001 From: Ricardo Garcia Date: Tue, 22 Jul 2008 10:00:43 +0200 Subject: [PATCH] Add forceurl and forcetitle downloader options --- youtube-dl | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/youtube-dl b/youtube-dl index 6a79bf93a..cc2ba4262 100755 --- a/youtube-dl +++ b/youtube-dl @@ -55,6 +55,8 @@ class FileDownloader(object): password: Password for authentication purposes. usenetrc: Use netrc for authentication instead. quiet: Do not print messages to stdout. + forceurl: Force printing final URL. + forcetitle: Force printing title. simulate: Do not download the video files. format: Video format code. outtmpl: Template for output names. @@ -174,10 +176,18 @@ class FileDownloader(object): if len(results) > 1 and self.fixed_template(): sys.exit('ERROR: fixed output name but more than one file to download') - if self._params.get('simulate', False): - continue - for result in results: + + # Forced printings + if self._params.get('forcetitle', False): + print result['title'] + if self._params.get('forceurl', False): + print result['url'] + + # Do nothing else if in simulate mode + if self._params.get('simulate', False): + continue + try: filename = self._params['outtmpl'] % result except (ValueError, KeyError), err: @@ -450,6 +460,8 @@ if __name__ == '__main__': 'username': None, 'password': None, 'quiet': False, + 'forceurl': False, + 'forcetitle': False, 'simulate': False, 'format': None, 'outtmpl': '%(ext)s/%(ext)s/%(id)s.%(ext)s'