aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-01-25 23:28:45 +0700
committerSergey M․ <dstftw@gmail.com>2017-01-25 23:28:45 +0700
commitc1fa3f46727ccbbb75389ce82753f2e63449ece6 (patch)
treee6515568c24047dc5776917e2b61366514a57f84
parent17f8deeb481a7aa3079d7e11da2c255f893b9e8c (diff)
downloadyoutube-dl-c1fa3f46727ccbbb75389ce82753f2e63449ece6.tar.xz
[openload] Fallback video extension to mp4
-rw-r--r--youtube_dl/extractor/openload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py
index 4893ade5d..32289d897 100644
--- 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