aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-19 05:47:20 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-19 05:47:20 +0100
commitdd27fd1739ad7fed878ecab17e51001c336d1190 (patch)
tree75d76ce6cdb5ccbd41b76079db84d3930a0bf357 /youtube_dl/YoutubeDL.py
parentdfa50793d8541ff2c5603f7c3b727c0f6e551d8d (diff)
downloadyoutube-dl-dd27fd1739ad7fed878ecab17e51001c336d1190.tar.xz
[youtube] Download DASH manifest
If given, download and parse the DASH manifest file, in order to get ultra-HQ formats. Fixes #2166
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rw-r--r--youtube_dl/YoutubeDL.py2
1 files changed, 2 insertions, 0 deletions
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 += ', '