We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've got an error (407) Proxy Authentication Required in OfficialFFmpegDownloader -> GetLatestVersionInfo
(407) Proxy Authentication Required
I tried to fix it with
using (var wc = new WebClient()) { IWebProxy proxy = WebRequest.GetSystemWebProxy(); proxy.Credentials = CredentialCache.DefaultCredentials; wc.Proxy = proxy; var json = wc.DownloadString("http://ffbinaries.com/api/v1/version/latest"); return JsonConvert.DeserializeObject<FFbinariesVersionInfo>(json); }
.. and seems it helps.
Please check this remark and add in master release.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've got an error
(407) Proxy Authentication Required
in OfficialFFmpegDownloader -> GetLatestVersionInfoI tried to fix it with
.. and seems it helps.
Please check this remark and add in master release.
The text was updated successfully, but these errors were encountered: