0

我制作了一个简单的程序(非常依赖于这个例子)来可视化我的问题。它只从指定的 URL 下载文件,仅此而已;在我尝试使用此类数据之前,一切都很好:

http://www.youtube.com/watch?v=pqaARDsiJv4

令人惊讶的是,什么都没有发生。为什么它既不下载相关视频也不下载 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;

        }


    }
}
4

2 回答 2

1

对于这样的 URL,这一行...

fileName = System.IO.Path.GetFileName(URLBox.Text);

...设置fileName"watch?v=pqaARDsiJv4",这不是合法的文件名。

于 2012-07-27T02:15:51.660 回答
0

我认为您不能像那样从 Youtube 下载视频。我将向您推荐去年有关从 Youtube 下载内容的 Stack Exchange 问题;有很多链接,甚至还有一种方法。但是所有这些解决方案都已经 3 年了,它们现在可能不再有效;这是您想要做的问题的一部分;谷歌不断做出改变,这很可能会破坏任何现有的解决方案。

您可以查看此处提供的任何解决方案是否仍然有效:https ://stackoverflow.com/questions/1852029/how-can-i-download-youtube-videos-using-net-code 或使用提供的信息来创建您的自己的。

于 2012-07-27T02:25:26.330 回答