Fix empty fields in dailymotion plugin
Change extension from flv to mp4, cause all quality formats are h264/mp4 Signed-off-by: Vincent Texier <vit@free.fr> Signed-off-by: Romain Bignon <romain@symlink.me>
This commit is contained in:
parent
b9a817df88
commit
a79ccec8bb
2 changed files with 30 additions and 5 deletions
|
|
@ -27,7 +27,7 @@ __all__ = ['DailymotionVideo']
|
|||
class DailymotionVideo(BaseVideo):
|
||||
def __init__(self, *args, **kwargs):
|
||||
BaseVideo.__init__(self, *args, **kwargs)
|
||||
self.ext = u'flv'
|
||||
self.ext = u'mp4'
|
||||
|
||||
@classmethod
|
||||
def id2url(cls, _id):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue