X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2F__init__.py;h=d491402c6a9702c57dbbd4122924b22f2ede2177;hb=3820df0106d6065f50cc1eb90823906410dc9543;hp=74375175dd1ebca987de37ceef7af30b34ca5de0;hpb=fa70605db287fd74f7d32b966ecca56260c651a0;p=youtube-dl diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 74375175d..d491402c6 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -140,6 +140,9 @@ def parseOpts(overrideArguments=None): help='display the current browser identification', default=False) general.add_option('--user-agent', dest='user_agent', help='specify a custom user agent', metavar='UA') + general.add_option('--referer', + dest='referer', help='specify a custom referer, use if the video access is restricted to one domain', + metavar='REF', default=None) general.add_option('--list-extractors', action='store_true', dest='list_extractors', help='List all supported extractors and the URLs they would handle', default=False) @@ -342,6 +345,10 @@ def _real_main(argv=None): # Set user agent if opts.user_agent is not None: std_headers['User-Agent'] = opts.user_agent + + # Set referer + if opts.referer is not None: + std_headers['Referer'] = opts.referer # Dump user agent if opts.dump_user_agent: