日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

前言

在GitHub上發(fā)現(xiàn)一個(gè)好玩的項(xiàng)目,不用安裝其它任何依賴包,只要運(yùn)行一個(gè)Python腳本就可以在局域網(wǎng)構(gòu)建一個(gè)視頻監(jiān)控系統(tǒng)。果斷試了一下,確實(shí)挺好玩的,現(xiàn)在分享給大家。

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

搭建方法

1. 硬件準(zhǔn)備

首先你得有一個(gè)樹莓派CSI接口的攝像頭和一個(gè)裝好系統(tǒng)的樹莓派。 如何安裝系統(tǒng)請(qǐng)參考我之前的教程如何給樹莓派寫入鏡像

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 


樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

如果你之前已經(jīng)使用過攝像頭接口,直接看跳到下一步。如果還沒有的用過的話,樹莓派攝像頭接口可能還沒有打開,這是樹莓派打開攝像頭接口的方法: (1) 命令行輸入: sudo raspi-config (2) 選中 InterfacingOptions,按 Enter進(jìn)入子菜單

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

(3) 選中 Camera,按 Enter打開攝像頭接口,確認(rèn)后即可

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

2. 接入攝像頭

給樹莓派接上攝像頭很容易。確保樹莓派已經(jīng)關(guān)機(jī)的情況下,用指甲輕輕打開CSI接口卡扣,將連接帶有金屬接觸面的方向?qū)?zhǔn)CSI接口黑色的一面,再扣緊卡扣就可以了。

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

3. 找到樹莓派的IP地址

在樹莓派終端輸入命令 ipconfig,wlan0即為樹莓派的ip地址,這里是 192.168.123.126

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

4. 下載腳本

GitHub項(xiàng)目地址:(
https://github.com/RuiSantosdotme/Random-Nerd-Tutorials/blob/master/Projects/rpicamerasurveillance_system.py)

# Web streaming example
# Source code from the official PiCamera package
# http://picamera.readthedocs.io/en/latest/recipes2.html#web-streaming

import io
import picamera
import logging
import socketserver
from threading import Condition
from http import server

PAGE="""
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>Raspberry Pi - Surveillance Camera</title>
</head>
<body>
<center><h1>Raspberry Pi - Surveillance Camera</h1></center>
<center><h1>小雨的家 Xiaoyu's Home</h1></center>
<center><img src="stream.mjpg" width="640" height="480"></center>
</body>
</html>
"""

class StreamingOutput(object):
    def __init__(self):
        self.frame = None
        self.buffer = io.BytesIO()
        self.condition = Condition()

    def write(self, buf):
        if buf.startswith(b'xffxd8'):
            # New frame, copy the existing buffer's content and notify all
            # clients it's available
            self.buffer.truncate()
            with self.condition:
                self.frame = self.buffer.getvalue()
                self.condition.notify_all()
            self.buffer.seek(0)
        return self.buffer.write(buf)

class StreamingHandler(server.BaseHTTPRequestHandler):
    def do_GET(self):
        if self.path == '/':
            self.send_response(301)
            self.send_header('Location', '/index.html')
            self.end_headers()
        elif self.path == '/index.html':
            content = PAGE.encode('utf-8')
            self.send_response(200)
            self.send_header('Content-Type', 'text/html')
            self.send_header('Content-Length', len(content))
            self.end_headers()
            self.wfile.write(content)
        elif self.path == '/stream.mjpg':
            self.send_response(200)
            self.send_header('Age', 0)
            self.send_header('Cache-Control', 'no-cache, private')
            self.send_header('Pragma', 'no-cache')
            self.send_header('Content-Type', 'multipart/x-mixed-replace; boundary=FRAME')
            self.end_headers()
            try:
                while True:
                    with output.condition:
                        output.condition.wait()
                        frame = output.frame
                    self.wfile.write(b'--FRAMErn')
                    self.send_header('Content-Type', 'image/jpeg')
                    self.send_header('Content-Length', len(frame))
                    self.end_headers()
                    self.wfile.write(frame)
                    self.wfile.write(b'rn')
            except Exception as e:
                logging.warning(
                    'Removed streaming client %s: %s',
                    self.client_address, str(e))
        else:
            self.send_error(404)
            self.end_headers()

class StreamingServer(socketserver.ThreadingMixIn, server.HTTPServer):
    allow_reuse_address = True
    daemon_threads = True

with picamera.PiCamera(resolution='640x480', framerate=24) as camera:
    output = StreamingOutput()
    #Uncomment the next line to change your Pi's Camera rotation (in degrees)
    #camera.rotation = 90
    camera.start_recording(output, format='mjpeg')
    try:
        address = ('', 8000)
        server = StreamingServer(address, StreamingHandler)
        server.serve_forever()
    finally:
        camera.stop_recording()

 

5. 寫入腳本

將上面的代碼保存一個(gè)名為 rpi.py的Python文件,通過smb傳輸?shù)姆绞剑瑢⒋a上傳至樹莓派任意用戶文件夾中,這里我們可以上傳到樹莓派 ~/swift文件夾下。


注意:如果你還不會(huì)使用smb服務(wù),請(qǐng)查看我的上一篇文章樹莓派安裝Samba服務(wù)

6. 代碼執(zhí)行

python3 ~/swift/rpi.python

此時(shí)監(jiān)控系統(tǒng)以及開始工作了。局域網(wǎng)內(nèi)的任何設(shè)備,打開瀏覽器地址欄輸入 192.168.123.126:8000,(冒號(hào)前的IP地址換成你自己樹莓派的ip)即可打開網(wǎng)絡(luò)監(jiān)控系統(tǒng)。視頻響應(yīng)的延時(shí)取決于你的樹莓派和路由器的性能。

7.實(shí)際效果

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

最后:

由于樹莓派沒有開機(jī)按鍵,每次開機(jī)都要手動(dòng)上電(拔插電源接口)于是我把樹莓派電源接在可以手機(jī)控制開關(guān)的智能插座上,這樣就能隨時(shí)通過手機(jī)來控制樹莓派開機(jī)了。另外我還用手機(jī)包裝盒給這個(gè)樹莓派監(jiān)控系統(tǒng)做了一個(gè)外殼,這樣就可以“偽裝”起來,手機(jī)上再安裝一個(gè)可以ssh的App,隨時(shí)執(zhí)行視頻監(jiān)控腳本。這樣我就可以在家里任何地方,隨時(shí)用手機(jī)查看監(jiān)控了。

樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 


樹莓派搭建網(wǎng)絡(luò)視頻實(shí)時(shí)監(jiān)控系統(tǒng)

 

分享到:
標(biāo)簽:樹莓派
用戶無頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績?cè)u(píng)定