youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c1fa3f46727ccbbb75389ce82753f2e63449ece6
parent 17f8deeb481a7aa3079d7e11da2c255f893b9e8c
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 25 Jan 2017 23:28:45 +0700

[openload] Fallback video extension to mp4

Diffstat:
Myoutube_dl/extractor/openload.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py @@ -101,7 +101,7 @@ class OpenloadIE(InfoExtractor): 'thumbnail': self._og_search_thumbnail(webpage, default=None), 'url': video_url, # Seems all videos have extensions in their titles - 'ext': determine_ext(title), + 'ext': determine_ext(title, 'mp4'), 'subtitles': subtitles, } return info_dict