You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When downloading video segments, ffmpeg cannot automatically use the system proxy and return error with Error number -138 occurred . Adding --proxy to yt-dlp can solve this issue.
The text was updated successfully, but these errors were encountered:
Error number -138 occurred indicates that you are unable to connect to the target. This simply points out an error with your network, not specifically a proxy error.
From the source code, it can be seen that both yt-dlp and ffmpeg use the system proxy. Please confirm your environment.
Or, in those upstream project, raise an issue if they really cannot use the system proxy.
I've confirmed my environment and tested the process. FFmpeg uses the system proxy in tls.c, but doesn't use it in tcp.c, where the error occurred. I don't know if it's a feature or a bug.
Thanks for your lifesaver.👍
When downloading video segments, ffmpeg cannot automatically use the system proxy and return error with
Error number -138 occurred
. Adding--proxy
to yt-dlp can solve this issue.The text was updated successfully, but these errors were encountered: