gitextract_1eilci4j/ ├── .github/ │ └── workflows/ │ ├── ruff.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .travis.yml ├── AUTHORS ├── COPYING ├── COPYING.generator ├── MANIFEST.in ├── Makefile ├── README.md ├── README.module ├── TODO ├── dev_setup.py ├── dev_setup.sh ├── distribute_setup.py ├── docs/ │ ├── Makefile │ ├── api.rst │ ├── conf.py │ ├── fullapi.rst │ ├── index.rst │ ├── make.bat │ └── requirements.txt ├── examples/ │ ├── cocoavlc.py │ ├── gtk2vlc.py │ ├── gtkvlc.py │ ├── play_buffer.py │ ├── psgvlc.py │ ├── pyobjcvlc.py │ ├── pyqt5vlc.py │ ├── qtvlc.py │ ├── tkvlc.py │ ├── video_sync/ │ │ ├── README.md │ │ ├── main.py │ │ ├── mini_player.py │ │ └── network.py │ └── wxvlc.py ├── generated/ │ ├── 2.2/ │ │ ├── COPYING │ │ ├── MANIFEST.in │ │ ├── README.module │ │ ├── distribute_setup.py │ │ ├── examples/ │ │ │ ├── gtk2vlc.py │ │ │ ├── gtkvlc.py │ │ │ ├── qtvlc.py │ │ │ ├── tkvlc.py │ │ │ └── wxvlc.py │ │ ├── setup.py │ │ └── vlc.py │ ├── 3.0/ │ │ ├── COPYING │ │ ├── MANIFEST.in │ │ ├── README.module │ │ ├── examples/ │ │ │ ├── cocoavlc.py │ │ │ ├── glsurface.py │ │ │ ├── gtk2vlc.py │ │ │ ├── gtkvlc.py │ │ │ ├── play_buffer.py │ │ │ ├── psgvlc.py │ │ │ ├── pyobjcvlc.py │ │ │ ├── pyqt5vlc.py │ │ │ ├── qtvlc.py │ │ │ ├── tkvlc.py │ │ │ ├── video_sync/ │ │ │ │ ├── README.md │ │ │ │ ├── main.py │ │ │ │ ├── mini_player.py │ │ │ │ └── network.py │ │ │ └── wxvlc.py │ │ ├── pyproject.toml │ │ └── vlc.py │ ├── __init__.py │ └── dev/ │ └── vlc.py ├── generator/ │ ├── __init__.py │ ├── generate.py │ └── templates/ │ ├── LibVlc-footer.java │ ├── LibVlc-header.java │ ├── MANIFEST.in │ ├── boilerplate.java │ ├── footer.py │ ├── header.py │ ├── override.py │ └── pyproject.toml ├── pyproject.toml ├── requirements.txt ├── ruff.toml └── tests/ ├── gctest.py ├── samples/ │ └── README ├── test_bindings.py ├── test_generator.py └── test_parser_inputs/ ├── callbacks.h ├── enums.h ├── funcs.h ├── libvlc_version_with_extra.h ├── libvlc_version_without_extra.h └── structs.h