1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-09-24 19:48:35 +02:00

[YoutubeDL] Fix video+audio format_id (Closes #4824)

This commit is contained in:
Sergey M․ 2015-01-31 03:50:11 +06:00
parent 91755ee384
commit 6d593c3276

View File

@ -1074,7 +1074,8 @@ class YoutubeDL(object):
selected_format = {
'requested_formats': formats_info,
'format': rf,
'format_id': rf,
'format_id': '%s+%s' % (formats_info[0].get('format_id'),
formats_info[1].get('format_id')),
'width': formats_info[0].get('width'),
'height': formats_info[0].get('height'),
'resolution': formats_info[0].get('resolution'),