private void DownloadBtn_Click(object sender, RoutedEventArgs e)
        {
            Downloader dl = new Downloader();

            string videoUrl = urlBox.Text;

            dl.videoDownload(dl.GetVideoSource(dl.GetId(videoUrl)), videoUrl, dl.videoInfo("//title", videoUrl));
        }
Example #2
0
        private void DownloadBtn_Click(object sender, RoutedEventArgs e)
        {
            Downloader dl = new Downloader();

            string videoUrl = urlBox.Text;

            dl.videoDownload(dl.GetVideoSource(dl.GetId(videoUrl)), videoUrl, dl.videoInfo("//title", videoUrl));
        }