vision daemon now streams with a resolution of 1280x720

fixed package install
This commit is contained in:
Joel 2021-01-23 02:41:19 +01:00
parent 77c2354c00
commit 7e9192072c
No known key found for this signature in database
GPG key ID: BDDDBECD0808290E
3 changed files with 20 additions and 19 deletions

View file

@ -5,7 +5,7 @@ import LogstashLogging
from LogstashLogging import logstash_logger
import logging
__run = """raspivid -t 0 -b 10000000 -w 1920 -h 1080 -fps 30 -n -o - | gst-launch-1.0 fdsrc ! video/x-h264,width=1280,height=720,framerate=30/1,noise-reduction=1,profile=high,stream-format=byte-stream ! h264parse ! queue ! flvmux streamable=true ! rtmpsink location=\"rtmp://localhost/live/stream\""""
__run = """raspivid -t 0 -b 5000000 -w 1280 -h 720 -fps 30 -n -o - | gst-launch-1.0 fdsrc ! video/x-h264,width=1280,height=720,framerate=30/1,noise-reduction=1,profile=high,stream-format=byte-stream ! h264parse ! queue ! flvmux streamable=true ! rtmpsink location=\"rtmp://localhost/live/stream\""""
if __name__ == '__main__':