tomaszzmuda / Xabe.FFmpeg

.NET Standard wrapper for FFmpeg. It allows to process media without know how FFmpeg works, and can be used to pass customized arguments to FFmpeg from dotnet core application.

Home Page:https://xabe.net/product/xabe_ffmpeg/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error while download official ffmpeg version

SidArtem opened this issue · comments

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.