如何从服务器源C#获取视频
如何通过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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 WebClient 下载页面:
另请注意,您提供的不是视频文件的地址。这是玩家的地址。据我所知,该政策禁止从 YouTube 下载视频文件,但如果您有视频文件的地址,只需将其传递到 DownloadFile 方法。
You could use WebClient to download pages:
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.
这不是 YouTube 视频文件,而是 YouTube 视频播放器。视频由 /get_video 返回? ...
This is not a youtube video file, its a youtube video player. Video is returned by /get_video? ...
如果您只想下载该电影,请使用 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.