diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-01-19 05:47:20 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-01-19 05:47:20 +0100 |
commit | dd27fd1739ad7fed878ecab17e51001c336d1190 (patch) | |
tree | 75d76ce6cdb5ccbd41b76079db84d3930a0bf357 /youtube_dl/YoutubeDL.py | |
parent | dfa50793d8541ff2c5603f7c3b727c0f6e551d8d (diff) |
[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.py | 2 |
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 += ', ' |