gitextract_fnpxmdm_/ ├── .coveragerc ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── synchronization-problem.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ ├── .gitignore │ ├── Makefile │ ├── _static/ │ │ └── .keep │ ├── _templates/ │ │ └── .keep │ ├── conf.py │ ├── index.rst │ ├── make.bat │ └── requirements-docs.txt ├── ffsubsync/ │ ├── __init__.py │ ├── _version.py │ ├── aligners.py │ ├── constants.py │ ├── ffmpeg_utils.py │ ├── ffsubsync.py │ ├── ffsubsync_gui.py │ ├── file_utils.py │ ├── generic_subtitles.py │ ├── golden_section_search.py │ ├── sklearn_shim.py │ ├── speech_transformers.py │ ├── subtitle_parser.py │ ├── subtitle_transformers.py │ └── version.py ├── gui/ │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── build-macos.sh │ ├── build-windows.sh │ ├── build.spec │ ├── entrypoint-windows.sh │ ├── ffsubsync-gui.py │ ├── hooks/ │ │ └── hook-webrtcvad.py │ ├── package-macos.sh │ └── requirements.txt ├── pyproject.toml ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── resources/ │ └── img/ │ └── program_icon.icns ├── scripts/ │ ├── blacken.sh │ ├── bump-version.py │ ├── deploy.sh │ └── write-version.py ├── setup.cfg ├── setup.py ├── tests/ │ ├── test_alignment.py │ ├── test_integration.py │ ├── test_misc.py │ └── test_subtitles.py └── versioneer.py