Answers for "html download video link"

0

html download video link

<video class="od-VideoCanvas-video" autoplay="autoplay" src="blob:https://bri2-my.sharepoint.com/4a202308-ca21-4e2e-8d5f-7cf3f6a618ec"></video>
Posted by: Guest on July-15-2021
0

how to download html video

private void btnDownload_Click(object sender, EventArgs e)
{
  WebClient webClient = new WebClient();
  webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
  webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged);
  webClient.DownloadFileAsync(new Uri("http://mysite.com/myVideo.mp4"), @"c:\myVideo.mp4");
}

private void ProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
  progressBar.Value = e.ProgressPercentage;
}

private void Completed(object sender, AsyncCompletedEventArgs e)
{
  MessageBox.Show("Download completed!");
}
Posted by: Guest on March-06-2021

Browse Popular Code Answers by Language