aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xyoutube-dl18
1 files 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'