]> asedeno.scripts.mit.edu Git - youtube-dl.git/commitdiff
Minor adjustments to closely match what a web browser does
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>
Wed, 15 Apr 2009 18:01:06 +0000 (20:01 +0200)
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>
Sun, 31 Oct 2010 10:24:08 +0000 (11:24 +0100)
youtube-dl

index c526071e5c6f110a5222cec60a236d5865e0c7d0..0abfaef38876c323b41c24d4b898e5b2615420ed 100755 (executable)
@@ -578,6 +578,8 @@ class YoutubeIE(InfoExtractor):
                if self._downloader is not None:
                        params = self._downloader.params
                        format_param = params.get('format', None)
+               if format_param is None:
+                       format_param = '34'
 
                # Extension
                video_extension = {
@@ -604,7 +606,7 @@ class YoutubeIE(InfoExtractor):
                if mobj is None:
                        self.to_stderr(u'ERROR: unable to extract "t" parameter')
                        return [None]
-               video_real_url = 'http://www.youtube.com/get_video?video_id=%s&t=%s' % (video_id, mobj.group(1))
+               video_real_url = 'http://www.youtube.com/get_video?video_id=%s&t=%s&el=detailpage&ps=' % (video_id, mobj.group(1))
                if format_param is not None:
                        video_real_url = '%s&fmt=%s' % (video_real_url, format_param)
                self.report_video_url(video_id, video_real_url)