├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE.GPL ├── LICENSE.LGPL ├── README.rst ├── do_release.sh ├── mpv.py ├── pyproject.toml └── tests ├── __init__.py ├── sub_test.srt ├── test.webm └── test_mpv.py /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/README.rst -------------------------------------------------------------------------------- /do_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/do_release.sh -------------------------------------------------------------------------------- /mpv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/mpv.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sub_test.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/tests/sub_test.srt -------------------------------------------------------------------------------- /tests/test.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/tests/test.webm -------------------------------------------------------------------------------- /tests/test_mpv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaseg/python-mpv/HEAD/tests/test_mpv.py --------------------------------------------------------------------------------