Readme append

This commit is contained in:
Artur 2025-10-12 18:03:46 +03:00
parent e6eaa57dca
commit 831efb2354
3 changed files with 20 additions and 2 deletions

3
.gitignore vendored
View File

@ -4,4 +4,5 @@ __pycache__
*.yuv
*.mp4
*.csv
*log*txt
*log*txt
.env

View File

@ -4,6 +4,23 @@ In this repository collected different pipelines with workarounds for zero laten
Main idea for now is using of docker container with running Ubuntu 22.04 distro inside, mostly for testing purposes.
We must passthrough in this case GPU and Decklink devices for this purpose it is necessary to have similar driver versions on host and container system, otherwise it just will not work.
Component diagram showing what we want to achieve
## How to run
It is suggested to use `nohup` for background execution.
```sh
# create venv
$ python3 -m venv ./.Python
$ . .Python/bin/activate
$ pip install -r gstAutotest/requirements.txt
$ nohup python3 ./gstAutotest/gstreamerAutotest.py -c="./gstAutotest/autotest-conf.yaml" &
```
Output will be saved in **results** folder.
## UML diagram with latency element explanation
```plantuml
``@startuml
node "Host" {

@ -1 +1 @@
Subproject commit 7bff99a6c77449c5bcbe8421cb94e5bdd8022c97
Subproject commit 8daf682763f70b995a43c403ee202ce233700d11