diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-09-27 10:53:02 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-09-27 10:53:02 +0200 |
commit | 8e6f8051f084f445015140f1f88ac770f3c0f43d (patch) | |
tree | 6cea1dc78a83ecaaee504ddfe3653967e6a56fed /youtube_dl/extractor/vbox7.py | |
parent | 11b3ce85097430e1d26ddff0f51aa895c9d5af43 (diff) |
[vbox7] Don't set the extension to 'flv' (fixes #3836)
Diffstat (limited to 'youtube_dl/extractor/vbox7.py')
-rw-r--r-- | youtube_dl/extractor/vbox7.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vbox7.py b/youtube_dl/extractor/vbox7.py index df115d251..ebd64f0f5 100644 --- a/youtube_dl/extractor/vbox7.py +++ b/youtube_dl/extractor/vbox7.py @@ -19,7 +19,7 @@ class Vbox7IE(InfoExtractor): 'md5': '99f65c0c9ef9b682b97313e052734c3f', 'info_dict': { 'id': '249bb972c2', - 'ext': 'flv', + 'ext': 'mp4', 'title': 'Смях! Чудо - чист за секунди - Скрита камера', }, } @@ -50,7 +50,6 @@ class Vbox7IE(InfoExtractor): return { 'id': video_id, 'url': final_url, - 'ext': 'flv', 'title': title, 'thumbnail': thumbnail_url, } |