From fbb21cf528fe5cc4ba72f97f691cdf7ec20ee0e6 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Thu, 30 Oct 2014 09:34:13 +0100 Subject: [youtube] Add formats 298, 299 (Fixes #4056) --- youtube_dl/YoutubeDL.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'youtube_dl/YoutubeDL.py') diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index fd775b9fd..73a372df4 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1211,6 +1211,8 @@ class YoutubeDL(object): res += 'video@' if fdict.get('vbr') is not None: res += '%4dk' % fdict['vbr'] + if fdict.get('fps') is not None: + res += ', %sfps' % fdict['fps'] if fdict.get('acodec') is not None: if res: res += ', ' -- cgit v1.2.3