diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-29 19:05:38 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-29 19:05:38 +0800 | 
| commit | 6c9b71bc0862560cbb9c4c2d9ec295072c208838 (patch) | |
| tree | e508d4444b2f98927d24ca697cfb25acdd0348f7 | |
| parent | 93b84045994ca88b486901f54de1102347a67537 (diff) | |
[downloader/external] Recommend --hls-prefer-native for SOCKS users
Related: #10490
| -rw-r--r-- | youtube_dl/downloader/external.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index 17f12e970..0aeae3b8f 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -223,7 +223,8 @@ class FFmpegFD(ExternalFD):              if proxy.startswith('socks'):                  self.report_warning( -                    '%s does not support SOCKS proxies. Downloading may fail.' % self.get_basename()) +                    '%s does not support SOCKS proxies. Downloading is likely to fail. ' +                    'Consider adding --hls-prefer-native to your command.' % self.get_basename())              # Since December 2015 ffmpeg supports -http_proxy option (see              # http://git.videolan.org/?p=ffmpeg.git;a=commit;h=b4eb1f29ebddd60c41a2eb39f5af701e38e0d3fd)  | 
