html download video link
<video class="od-VideoCanvas-video" autoplay="autoplay" src="blob:https://bri2-my.sharepoint.com/4a202308-ca21-4e2e-8d5f-7cf3f6a618ec"></video>
html download video link
<video class="od-VideoCanvas-video" autoplay="autoplay" src="blob:https://bri2-my.sharepoint.com/4a202308-ca21-4e2e-8d5f-7cf3f6a618ec"></video>
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!");
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us