有人熟悉libvideo
吗?我的应用程序中有[libvideo][1]
。
如何将代理配置注入libvideo
?
using VideoLibrary;
void SaveVideoToDisk(string link)
{
var youTube = YouTube.Default; // starting point for YouTube actions
var video = youTube.GetVideo(link); // gets a Video object with info about the video
File.WriteAllBytes(@"C:\" + video.FullName, video.GetBytes());
}
答案 0 :(得分:1)
似乎libvideo
不支持代理。因此,我必须使用youtube-dl
并更正上面的代码
public static void YouTubeDownloaderWithProxy(string link, string path)
{
Process youTube = new Process();
try
{
string code = link.Split('/').LastOrDefault();
string proxy = @"http://....:8585/";
string youtubeUrl = @"https://www.youtube.com/watch?v=" + "code";
youTube.StartInfo.UseShellExecute = true;
youTube.StartInfo.CreateNoWindow = false;
youTube.StartInfo.FileName = Application.StartupPath + @"\youtube-dl.exe";
youTube.StartInfo.Arguments = $"--proxy {proxy} -o '{path}' {youtubeUrl}";
youTube.Start();
youTube.WaitForExit();
youTube.Dispose();
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
}