1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-09-20 18:35:32 +00:00

File format of the video downloaded is now mp4

This commit is contained in:
Laurent Raufaste 2011-05-29 13:58:57 -04:00
parent 368cb1fd0a
commit a4188f6acd

View file

@ -1317,7 +1317,7 @@ class DailymotionIE(InfoExtractor):
video_id = mobj.group(1) video_id = mobj.group(1)
simple_title = mobj.group(2).decode('utf-8') simple_title = mobj.group(2).decode('utf-8')
video_extension = 'flv' video_extension = 'mp4'
# Retrieve video webpage to extract further information # Retrieve video webpage to extract further information
request = urllib2.Request(url) request = urllib2.Request(url)