diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-10-30 09:34:13 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-10-30 09:34:13 +0100 |
commit | fbb21cf528fe5cc4ba72f97f691cdf7ec20ee0e6 (patch) | |
tree | dad70295b7cf0e1997990a65051f4a544a7979a4 /youtube_dl/YoutubeDL.py | |
parent | b8a618f898b42e317b2abb13e33f60641d75a762 (diff) |
[youtube] Add formats 298, 299 (Fixes #4056)
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 += ', ' |