我制作了一个简单的程序(紧紧依赖于this示例),可视化我的问题。它只从指定的URL下载文件,仅此而已;在我尝试使用这些数据之前一切正常:
令人惊讶的是,没有任何反应。为什么它既不下载相关视频也不下载HTML源代码?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Net;
using System.IO;
using System.ComponentModel;
namespace downloader
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void DownloadButton_Click(object sender, RoutedEventArgs e)
{
WebClient client = new WebClient();
string fileName;
try
{
fileName = System.IO.Path.GetFileName(URLBox.Text);
Uri currentURL = new Uri(URLBox.Text);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged);
client.DownloadFileAsync(currentURL, fileName);
}
catch (Exception exc)
{
MessageBox.Show(exc.Message);
progressBar.Value = 0;
}
}
private void Completed(object sender, AsyncCompletedEventArgs e)
{
MessageBox.Show("Download Completed!");
}
private void ProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
progressBar.Value = e.ProgressPercentage;
}
}
}
答案 0 :(得分:1)
对于这样的网址这行......
fileName = System.IO.Path.GetFileName(URLBox.Text);
...将fileName
设置为"watch?v=pqaARDsiJv4"
,这不是合法的文件名。
答案 1 :(得分:0)
我认为您不能从Youtube上下载视频。我将从去年开始向您推荐有关从Youtube下载内容的Stack Exchange问题;有很多链接甚至是一种方法。但所有这些解决方案都已有3年历史,现在可能已不再适用;这是你想要做的事情的一部分;谷歌正在不断进行变革,这很可能会打破任何现有的解决方案。
您可以查看此处提供的任何解决方案是否仍然有效:https://stackoverflow.com/questions/1852029/how-can-i-download-youtube-videos-using-net-code 或者使用提供的信息创建自己的信息。