Python或Html直播相机流?

时间:2013-10-19 16:25:30

标签: python html camera

我可以使用Python和HTML脚本直播我的网络摄像头,刷新率无关紧要! 我能够做到的唯一方法是通过其他人的软件,我想做自己的。有人请帮忙!

1 个答案:

答案 0 :(得分:6)

您可以使用此处提供的VideoCapture模块执行此操作:http://videocapture.sourceforge.net/

下载并安装后,您需要下载dropbox,这是一个文件主机,可在此处找到:https://www.dropbox.com/

你还需要pygame:3我相信你知道那是什么! (可在此处获取:http://www.pygame.org/news.html

然后编写一个这样的python脚本并将其放在dropbox公共文件夹中:

import pygame,time
from VideoCapture import Device
from pygame.locals import *
pygame.init()
pygame.mixer.init(frequency=22050, size=-16, channels=2, buffer=550)
cam = Device()
screen=pygame.display.set_mode((200,200))
pygame.display.set_caption('Casting...')
while True:
    for e in pygame.event.get():
        if e.type==QUIT:
            exit()
    try:
        time.sleep(4)
        cam.saveSnapshot('image.jpg')
    except:
        pass

然后,使用如下代码制作一个html文件:

<html>
<img src="image.jpg" alt="Live Cam" height="200" width="200">
<meta http-equiv="refresh" content="3">
</html>

之后......使用此视频将您的页面放到网上(当然使用您的html文件):

http://www.youtube.com/watch?v=NG15HHwAtwU