作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有谁熟悉libvideo
?我有 [libvideo][1]
在一个应用程序中。
如何将代理配置注入(inject) 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());
}
最佳答案
看来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);
}
}
关于c# - 在 C# 中使用 libvideo 下载的代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56627829/
有谁熟悉libvideo ?我有 [libvideo][1]在一个应用程序中。 如何将代理配置注入(inject) libvideo ? using VideoLibrary; void SaveVi
我有一个使用 VideoLibrary 提取音频 url 的代码。但是 Video.Uri 抛出异常。 An invalid request URI was provided. The request
我是一名优秀的程序员,十分优秀!