c# 视频下载

Posted wangzhenghao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 视频下载相关的知识,希望对你有一定的参考价值。

string pathUrl = "";
System.Net.HttpWebRequest request = null;
System.Net.HttpWebResponse response = null;
//请求网络路径地址
request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(pathUrl);
request.Timeout = 5000; // 超时时间
//获得请求结果
response = (System.Net.HttpWebResponse)request.GetResponse();
//文件下载地址
string path = "E:/文件下载";
// 如果不存在就创建file文件夹
if (!Directory.Exists(path))

if (path != null) Directory.CreateDirectory(path);

path = path + "/20190402035457.mp4";
Stream stream = response.GetResponseStream();
//先创建文件
Stream sos = new System.IO.FileStream(path, System.IO.FileMode.Create);
byte[] img = new byte[1024];
int total = stream.Read(img, 0, img.Length);
while (total > 0)

//之后再输出内容
sos.Write(img, 0, total);
total = stream.Read(img, 0, img.Length);

stream.Close();
stream.Dispose();
sos.Close();
sos.Dispose();

以上是关于c# 视频下载的主要内容,如果未能解决你的问题,请参考以下文章

C# 下载 youtube 视频的声音

如何用C#处理视频!

C#如何实现视频在线播放

c#操作CCtalk视频下载

C#进程调用FFmpeg操作音视频

C# 压缩打包文件下载