如何在程序中获取视频流?
我想要视频下载器,当给定具有要流式传输的视频的页面的 URL 时,可以下载视频。
所以我的想法是,如果我获得视频流,我可以将内容复制到字符串中,然后将其复制到文件中。 我怎样才能在Python中做到这一点?Python中有没有可以提供帮助的库?
Possible Duplicate:
Stream large binary files with urllib2 to file
I want to make a video downloader which when given the url of a page which has a video to stream can download the video.
So what i thought was if i get the video stream, i can copy the content into a string and then copy it into file .
How can i do it in python?Is there any library in python which can help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 python 2.x
urllib
使用方法 urlretrieve
for python 2.x
urllib
Use method urlretrieve