youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 18937a50a4d453d48b018b9e68f40cd6d0959e31
parent 9e77c60c9ad83c70e0f943404507fb2d2486113a
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Wed,  1 Oct 2014 23:09:25 +0200

[dropbox] Fix the video url query (fixes #3868)

Previously it would convert urls without a query into 'something.mp4&dl=1'

Diffstat:
Myoutube_dl/extractor/dropbox.py | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/dropbox.py b/youtube_dl/extractor/dropbox.py @@ -29,9 +29,8 @@ class DropboxIE(InfoExtractor): video_id = mobj.group('id') fn = compat_urllib_parse_unquote(url_basename(url)) title = os.path.splitext(fn)[0] - video_url = ( - re.sub(r'[?&]dl=0', '', url) + - ('?' if '?' in url else '&') + 'dl=1') + video_url = re.sub(r'[?&]dl=0', '', url) + video_url += ('?' if '?' not in video_url else '&') + 'dl=1' return { 'id': video_id,