Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python-based utility to scan/check videos for no-signal frames #88

Merged
merged 10 commits into from
May 24, 2024
20 changes: 20 additions & 0 deletions Capture/nosignal/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
build/
.coverage*
.dir-locals.el
dist/
*.egg-info
.env.*
!.env.local
.flake8
.idea/
.mypy_cache/
*.pid
*.pyc
.python-version
services
*.sqbpro
*.swp
.tox/
venv
venvs
certs
21 changes: 21 additions & 0 deletions Capture/nosignal/docs/install.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
cd ~/nosignal
python3 -m venv venv
./venv/bin/pip install poetry

./venv/bin/poetry --version
>> Poetry (version 1.8.2)

# set in project venv in poetry
./venv/bin/poetry config virtualenvs.create false
./venv/bin/poetry config virtualenvs.in-project true

# install poetry and run test
./venv/bin/poetry env use ./venv/bin/python
./venv/bin/poetry update
./venv/bin/poetry install

./venv/bin/poetry build

./venv/bin/poetry run nosignal --help


Loading
Loading