fixed ffmpeg errors and added cli

This commit is contained in:
janis
2023-03-15 12:21:28 +01:00
parent 945e3edfb0
commit 0e15c2a31b
23 changed files with 155 additions and 7 deletions

24
bin/lib/ffmpeg/tox.ini Normal file
View File

@@ -0,0 +1,24 @@
# Tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27, py35, py36, py37, py38, py39, py310
[gh-actions]
python =
2.7: py27
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv]
commands = py.test -vv
deps =
future
pytest
pytest-mock