summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-08-28 12:14:45 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-08-28 12:14:45 +0200
commitedde6c56ac20af57d7fd494810834125bbd3728d (patch)
tree34f7dbbec72b386cc9f35fe9b1a1c9edab8eea6d
parentae3531adf926998d42d1fb52453491c85e33b5f0 (diff)
downloadyoutube-dl-edde6c56ac20af57d7fd494810834125bbd3728d.tar.gz
youtube-dl-edde6c56ac20af57d7fd494810834125bbd3728d.tar.xz
youtube-dl-edde6c56ac20af57d7fd494810834125bbd3728d.zip
Print playpath with --get-url (Fixes #1334)
-rw-r--r--youtube_dl/YoutubeDL.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 3fc4ec378..d5f7c81eb 100644
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -448,7 +448,8 @@ class YoutubeDL(object):
         if self.params.get('forceid', False):
             compat_print(info_dict['id'])
         if self.params.get('forceurl', False):
-            compat_print(info_dict['url'])
+            # For RTMP URLs, also include the playpath
+            compat_print(info_dict['url'] + info_dict.get('play_path', u''))
         if self.params.get('forcethumbnail', False) and 'thumbnail' in info_dict:
             compat_print(info_dict['thumbnail'])
         if self.params.get('forcedescription', False) and 'description' in info_dict: