added new Camera class for opencv video processing (currently does not work with Pi-Camera)
changed logging a bit
This commit is contained in:
parent
b87e830ac3
commit
de9b671f29
5 changed files with 244 additions and 10 deletions
10
README.md
10
README.md
|
@ -14,6 +14,12 @@ pip install sphinx-rtd-theme
|
|||
[Inline documentation example](https://pythonhosted.org/an_example_pypi_project/sphinx.html#full-code-example)
|
||||
[reStructured Text](https://pythonhosted.org/an_example_pypi_project/sphinx.html#restructured-text-rest-resources)
|
||||
|
||||
# ENV Variables
|
||||
|
||||
+ `DEBUG`, default="0", If set to != "0" (default), debug prints will be enabled
|
||||
+ `API_URL`, default="http://localhost:5000/"
|
||||
+ `API_FORCE`, default="", if set to !="" (default), it will replace the API_URL env variable
|
||||
|
||||
# Stream Video
|
||||
|
||||
```
|
||||
|
@ -31,3 +37,7 @@ with ffmpeg, cpu friendly
|
|||
```
|
||||
ffmpeg -f v4l2 -framerate 30 -video_size 640x480 -i /dev/video0 -b:v 2M -f flv rtmp://10.20.86.88/live/stream
|
||||
```
|
||||
|
||||
# Bullseye now only supports libcamera
|
||||
|
||||
https://www.raspberrypi.com/news/bullseye-camera-system/
|
||||
|
|
Reference in a new issue