답변:
이 호출 구문은 더 이상 사용되지 않습니다.
도움말 페이지에서 :
--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
필요 더 많은 구성?)