回答:
その呼び出しの構文は廃止されました。
ヘルプページから:
--proxy URL Use the specified HTTP/HTTPS proxy. Pass in an empty string (--proxy "") for direct connection
--cn-verification-proxy URL Use this proxy to verify the IP address for some Chinese sites. The default proxy specified by --proxy (or none, if the options is not present) is used for the actual downloading.
したがって、中国のプロキシを使用していない限り、コマンドは次のようになります。
youtube-dl [OPTIONS] --proxy 'http(s)://PROXY_URL:PROXY_PORT' URL
プロキシタイプに応じてhttpまたはhttpsを選択します。
urllib2を直接使用してプロキシをテストすることもできます。
#!/usr/bin/python
import urllib2
import sys
url = sys.argv[1]
response = urllib2.urlopen(url)
html_string = response.read()
print html_string
proxychains-ng
、Torをそのまま使用できます。obfs2を使用するように設定する必要があると言うのはなぜですか?(おそらく2013年に、proxychains
さらに構成が必要ですか?)