Browse Source

[downloader/f4m] Simply select format when it's the only one

totalwebcasting
Sergey M․ 8 years ago
parent
commit
2615fa7584
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/downloader/f4m.py

+ 1
- 1
youtube_dl/downloader/f4m.py View File

@ -319,7 +319,7 @@ class F4mFD(FragmentFD):
doc = compat_etree_fromstring(manifest)
formats = [(int(f.attrib.get('bitrate', -1)), f)
for f in self._get_unencrypted_media(doc)]
if requested_bitrate is None:
if requested_bitrate is None or len(formats) == 1:
# get the best format
formats = sorted(formats, key=lambda f: f[0])
rate, media = formats[-1]


Loading…
Cancel
Save