youtube-dl

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

commit e7cf18cb6b5c5c679583636d5b057d328655c7a6
parent 09cc744c90ccff8d6f52cbea8c4bcb864b897cbb
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date:   Mon,  3 Jan 2011 11:47:23 +0100

Add --dump-user-agent option (patch provided by Benjamin Johnson)

Diffstat:
Myoutube-dl | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/youtube-dl b/youtube-dl @@ -2257,6 +2257,8 @@ if __name__ == '__main__': dest='playliststart', metavar='NUMBER', help='playlist video to start at (default is 1)', default=1) parser.add_option('--playlist-end', dest='playlistend', metavar='NUMBER', help='playlist video to end at (default is last)', default=-1) + parser.add_option('--dump-user-agent', + action='store_true', dest='dump_user_agent', help='display the current browser identification', default=False) authentication = optparse.OptionGroup(parser, 'Authentication Options') authentication.add_option('-u', '--username', @@ -2325,6 +2327,11 @@ if __name__ == '__main__': except (IOError, OSError), err: sys.exit(u'ERROR: unable to open cookie file') + # Dump user agent + if opts.dump_user_agent: + print std_headers['User-Agent'] + sys.exit(0) + # General configuration cookie_processor = urllib2.HTTPCookieProcessor(jar) urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler()))