Browse Source

[YoutubeDL] Copy over format metadata when merging (Fixes #4671)

Philipp Hagemeister 10 years ago
parent
commit
f90ad27375
1 changed files with 8 additions and 0 deletions
  1. 8 0
      youtube_dl/YoutubeDL.py

+ 8 - 0
youtube_dl/YoutubeDL.py

@@ -913,6 +913,14 @@ class YoutubeDL(object):
                                 'requested_formats': formats_info,
                                 'format': rf,
                                 'ext': formats_info[0]['ext'],
+                                'width': formats_info[0].get('width'),
+                                'height': formats_info[0].get('height'),
+                                'resolution': formats_info[0].get('resolution'),
+                                'fps': formats_info[0].get('fps'),
+                                'vcodec': formats_info[0].get('vcodec'),
+                                'vbr': formats_info[0].get('vbr'),
+                                'acodec': formats_info[1].get('acodec'),
+                                'abr': formats_info[1].get('abr'),
                             }
                         else:
                             selected_format = None