DVR: различия между версиями
Перейти к навигации
Перейти к поиску
Vovan (обсуждение | вклад) (→Desktop to STREAM GNU/Linux) |
Vovan (обсуждение | вклад) (→Desktop to STREAM Windows) |
||
Строка 15: | Строка 15: | ||
http://<windows-ip>:8080/video.ts | http://<windows-ip>:8080/video.ts | ||
+ | |||
+ | file | ||
+ | |||
+ | cam.bat | ||
<pre> | <pre> | ||
− | |||
@echo off | @echo off | ||
cd c:\ | cd c:\ |
Версия 00:02, 25 октября 2021
Zoneminder
git clone https://github.com/ZoneMinder/zmdockerfiles.git
docker-compose up -d
Goto in browser:
http://localhost:7878/
VLC
Desktop to STREAM Windows
http://<windows-ip>:8080/video.ts
file
cam.bat
@echo off cd c:\ cd Program Files (x86)\VideoLAN\VLC\ start cvlc.exe screen:// :screen-left=0 :screen-top=0 :screen-height=1080 :screen-width=1920 :screen-fps=20.0 :live-caching=300 :sout=#transcode{vcodec=mp2v,vb=800,fps=20,scale=0,acodec=none}:http{dst=:8080/video.ts, ttl=1} :sout-all :sout-keep exit
Desktop to STREAM GNU/Linux
http://<gnu-linux-ip>:8080/video.ts
cat << 'EOF' > cam.sh #!/bin/bash cvlc \ screen:// \ :screen-left=0 \ :screen-top=0 \ :screen-height=1080 \ :screen-width=1920 \ :screen-fps=20.0 \ :live-caching=300 \ :sout='#transcode{vcodec=h264,vb=800,fps=20,scale=0,acodec=none}:http{dst=:8080/video.ts,ttl=1}' \ :sout-all \ :sout-keep #:screen-follow-mouse \ #:screen-mouse-image=cursor.png \ EOF