如何从服务器源C#获取视频

发布于 2024-09-19 13:08:52 字数 278 浏览 0 评论 0原文

如何通过C#从服务器源下载视频?

这是视频 www.youtube.com/watch?v=UZS0eX8Fe7U&feature=fvhl

这是该视频的服务器源 http://s.ytimg.com/yt/swf/watch_as3-vflPDfEzH。 swf

我对图像应用相同的过程并轻松从服务器下载

How can i download the video from server source through C#?

this is the video
www.youtube.com/watch?v=UZS0eX8Fe7U&feature=fvhl

and this is the server source of this video
http://s.ytimg.com/yt/swf/watch_as3-vflPDfEzH.swf

I apply same procedure for images and easily download from server

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浅听莫相离 2024-09-26 13:08:52

您可以使用 WebClient 下载页面:

using (var client = new WebClient())
{
    client.DownloadFile("http://foo.com/somefile", @"c:\somefile");
}

另请注意,您提供的不是视频文件的地址。这是玩家的地址。据我所知,该政策禁止从 YouTube 下载视频文件,但如果您有视频文件的地址,只需将其传递到 DownloadFile 方法。

You could use WebClient to download pages:

using (var client = new WebClient())
{
    client.DownloadFile("http://foo.com/somefile", @"c:\somefile");
}

Also notice that what you've provided is not the address of the video file. It is the address of the player. AFAIK the policy forbids downloading the video files from youtube but if you have the address of the video file simply pass it to the DownloadFile method.

烟若柳尘 2024-09-26 13:08:52

这不是 YouTube 视频文件,而是 YouTube 视频播放器。视频由 /get_video 返回? ...

This is not a youtube video file, its a youtube video player. Video is returned by /get_video? ...

撩起发的微风 2024-09-26 13:08:52

如果您只想下载电影,请使用 FireFox 的 DownloadHelper 之类的工具。如果您尝试从 youtube 下载任何电影,请使用 Darin 建议的代码。

If you just want to download that movie get something like DownloadHelper for FireFox. If you are trying to download any movie from youtube then use code like Darin suggeseted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文