From dd27fd1739ad7fed878ecab17e51001c336d1190 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sun, 19 Jan 2014 05:47:20 +0100 Subject: [youtube] Download DASH manifest If given, download and parse the DASH manifest file, in order to get ultra-HQ formats. Fixes #2166 --- 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 a0ab89b3d..11f88f128 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1091,6 +1091,8 @@ class YoutubeDL(object): res += 'audio' if fdict.get('abr') is not None: res += '@%3dk' % fdict['abr'] + if fdict.get('asr') is not None: + res += ' (%5dHz)' % fdict['asr'] if fdict.get('filesize') is not None: if res: res += ', ' -- cgit v1.2.3