diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-24 23:32:04 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-24 23:32:04 +0100 |
commit | c7deaa4c745382634ac5a910cc68efa4211f7456 (patch) | |
tree | ab8a8a843b52ee5ace303150759fc035ecb1f89a /youtube_dl/YoutubeDL.py | |
parent | e6812ac99dfc9117f3dd78425bf4bbe01601ecfd (diff) |
[zdf] Use centralized sorting
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 4910a2912..88f4b11f6 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1014,6 +1014,8 @@ class YoutubeDL(object): def list_formats(self, info_dict): def format_note(fdict): res = u'' + if f.get('ext') in ['f4f', 'f4m']: + res += u'(unsupported) ' if fdict.get('format_note') is not None: res += fdict['format_note'] + u' ' if (fdict.get('vcodec') is not None and |