当前位置:网站首页>Raspberry pie csi/usb camera uses mjpg to realize web camera monitoring
Raspberry pie csi/usb camera uses mjpg to realize web camera monitoring
2022-07-06 16:05:00 【Handsome black cat Sheriff】
This article is to sort out the content for your convenience , original text :
1、https://blog.csdn.net/qq_36798753/article/details/78082006
2、https://blog.csdn.net/wto882dim/article/details/82195001
First step : Download the source code
wget https://github.com/jacksonliam/mjpg-streamer/archive/master.zip
The second step : Download dependent packages
sudo apt-get install libjpeg8-dev
sudo apt-get install cmake
The third step : decompression + install
unzip master.zip
cd mjpg-streamer-master/mjpg-streamer-experimental
make clean all
Step four : Make a startup script
1、 Get into mjpg Under main directory
2、 Create startup script
vi jk.sh
3、 edit jk.sh
If you use CSI camera
cd mjpg-streamer-master/mjpg-streamer-experimental
./mjpg_streamer -i "./input_raspicam.so" -o "./output_http.so -w ./www"
If you use USB camera
cd mjpg-streamer-master/mjpg-streamer-experimental
./mjpg_streamer -i "./input_uvc.so" -o "./output_http.so -w ./www"
4、 to jk.sh Add authority
chmod 744 jk.sh
Step five : Execute the script
./jk.sh
If you want to run in the background, you can use the following commands
nohup ./jk.sh &
After startup, you can enter the default address on the same LAN browser to view
http:// Raspberry pie IP:8080
Here you can write one by yourself html Webpage , Check out the video , The code is as follows
<!DOCTYPE html>
<html>
<head>
<title> real-time video </title>
<style>
#webcam{
width: 60%;
height: 60%;
display: block;
margin: 0% ;
text-align: center;
position: relative;
}
#webcam img{
width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="webcam">
<div>
</div>
</div>
<script type="text/javascript">
var imageNr = 0; // The index number of the picture
var finished = new Array(); // Queue for downloading pictures
var paused = false; //
function createImageLayer() {
var img = new Image();
img.style.position = "absolute";
img.style.zIndex = -1;
img.onload = imageOnload;
img.onclick = imageOnclick;
// Fill in your corresponding ip And port
img.src = "http://192.168.0.117:8080/?action=snapshot&n=" + (++imageNr);
var webcam = document.getElementById("webcam");
webcam.insertBefore(img, webcam.firstChild);
}
function imageOnload() {
this.style.zIndex = imageNr;
while (1 < finished.length) {
var del = finished.shift(); // Delete old photos
del.parentNode.removeChild(del);
}
finished.push(this);
if (!paused) createImageLayer();
}
function imageOnclick() {
paused = !paused;
if (!paused) createImageLayer();
}
createImageLayer()
</script>
</body>
</html>
边栏推荐
- D - function (HDU - 6546) girls' competition
- Gartner: five suggestions on best practices for zero trust network access
- Frida hook so layer, protobuf data analysis
- VS2019初步使用
- 用C语言写网页游戏
- The most complete programming language online API document
- [exercise-8] (UVA 246) 10-20-30== simulation
- Opencv learning log 16 paperclip count
- E. Breaking the Wall
- STM32 learning record: LED light flashes (register version)
猜你喜欢
滲透測試 ( 1 ) --- 必備 工具、導航
C语言是低级和高级的分水岭
PySide6 信号、槽
渗透测试 ( 3 ) --- Metasploit Framework ( MSF )
Penetration test (8) -- official document of burp Suite Pro
Information security - Epic vulnerability log4j vulnerability mechanism and preventive measures
X-forwarded-for details, how to get the client IP
渗透测试 ( 2 ) --- 渗透测试系统、靶机、GoogleHacking、kali工具
【高老师软件需求分析】20级云班课习题答案合集
Matlab comprehensive exercise: application in signal and system
随机推荐
Find 3-friendly Integers
b站 實時彈幕和曆史彈幕 Protobuf 格式解析
Penetration test (4) -- detailed explanation of meterpreter command
China earth moving machinery market trend report, technical dynamic innovation and market forecast
Gartner: five suggestions on best practices for zero trust network access
The most complete programming language online API document
Opencv learning log 30 -- histogram equalization
Opencv learning log 15 count the number of solder joints and output
JS调用摄像头
Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools
【练习-5】(Uva 839)Not so Mobile(天平)
Interesting drink
【高老师软件需求分析】20级云班课习题答案合集
【练习-4】(Uva 11988)Broken Keyboard(破损的键盘) ==(链表)
C语言必背代码大全
[exercise-7] crossover answers
[exercise -11] 4 values why sum is 0 (and 4 values of 0)
【练习-8】(Uva 246)10-20-30==模拟
Opencv learning log 13 corrosion, expansion, opening and closing operations
C语言数组的概念