Compare commits

...

2 Commits

Author SHA1 Message Date
Philipp Hagemeister
ee2edd838a release 2015.10.13 2015-10-13 00:53:05 +02:00
Yen Chi Hsuan
73e732eb6b [vimeo] Fix m3u8 formats
Reported at
https://github.com/rg3/youtube-dl/pull/7126#issuecomment-147327584
2015-10-12 16:36:17 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -406,7 +406,7 @@ class VimeoIE(VimeoBaseInfoExtractor):
m3u8_formats = self._extract_m3u8_formats(
m3u8_url, video_id, 'mp4', 'm3u8_native', 0, 'hls', fatal=False)
if m3u8_formats:
formats.append(m3u8_formats)
formats.extend(m3u8_formats)
for key in ('other', 'sd', 'hd'):
formats += files[key]
self._sort_formats(formats)

View File

@@ -1,3 +1,3 @@
from __future__ import unicode_literals
__version__ = '2015.10.12'
__version__ = '2015.10.13'