Browse Source

DailymotionIE: some videos do not use the "hqURL", "sdURL", "ldURL" keywords. In this case, the "video_url" keyword should be looked for.

rtmp_test
Cyril Roelandt 12 years ago
parent
commit
7b6d7001d8
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      youtube_dl/InfoExtractors.py

+ 3
- 1
youtube_dl/InfoExtractors.py View File

@ -662,10 +662,12 @@ class DailymotionIE(InfoExtractor):
elif 'sdURL' in flashvars: max_quality = 'sdURL'
else: max_quality = 'ldURL'
mobj = re.search(r'"' + max_quality + r'":"(.+?)"', flashvars)
if mobj is None:
mobj = re.search(r'"video_url":"(.*?)",', urllib.unquote(webpage))
if mobj is None:
self._downloader.trouble(u'ERROR: unable to extract media URL')
return
video_url = mobj.group(1).replace('\\/', '/')
video_url = urllib.unquote(mobj.group(1)).replace('\\/', '/')
# TODO: support choosing qualities


Loading…
Cancel
Save