diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-01-25 23:28:45 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-01-25 23:28:45 +0700 |
commit | c1fa3f46727ccbbb75389ce82753f2e63449ece6 (patch) | |
tree | e6515568c24047dc5776917e2b61366514a57f84 /youtube_dl | |
parent | 17f8deeb481a7aa3079d7e11da2c255f893b9e8c (diff) |
[openload] Fallback video extension to mp4
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/openload.py | 2 |
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 |