Skip to content
New issue

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

Error while download official ffmpeg version #455

Open
SidArtem opened this issue May 3, 2023 · 0 comments
Open

Error while download official ffmpeg version #455

SidArtem opened this issue May 3, 2023 · 0 comments

Comments

@SidArtem
Copy link

SidArtem commented May 3, 2023

I've got an error (407) Proxy Authentication Required in OfficialFFmpegDownloader -> GetLatestVersionInfo

image

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant