diff options
author | cryptonaut <cryptonaut64@gmail.com> | 2014-12-06 12:47:29 -0800 |
---|---|---|
committer | cryptonaut <cryptonaut64@gmail.com> | 2014-12-06 12:55:07 -0800 |
commit | 16ae61f65515229b5cb4f5a60936bed3fa1b2b23 (patch) | |
tree | 27c0f99caacd65cc403325057fbce7c3a2a195ff /youtube_dl | |
parent | 0ef4d4ab7e15833031cd43211a38464a9ab9aa17 (diff) |
Handle --get-url with merged formats (fixes #2883)
Outputs one URL per line
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 56dc3d461..248367039 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -942,8 +942,12 @@ class YoutubeDL(object): if self.params.get('forceid', False): self.to_stdout(info_dict['id']) if self.params.get('forceurl', False): - # For RTMP URLs, also include the playpath - self.to_stdout(info_dict['url'] + info_dict.get('play_path', '')) + if info_dict.get('requested_formats') is not None: + for f in info_dict['requested_formats']: + self.to_stdout(f['url'] + f.get('play_path', '')) + else: + # For RTMP URLs, also include the playpath + self.to_stdout(info_dict['url'] + info_dict.get('play_path', '')) if self.params.get('forcethumbnail', False) and info_dict.get('thumbnail') is not None: self.to_stdout(info_dict['thumbnail']) if self.params.get('forcedescription', False) and info_dict.get('description') is not None: |