├── .gitignore ├── README.md ├── aeneas ├── app.py ├── dockerfile └── process_subtitles.py ├── bazarr └── config │ └── postproces.sh └── docker-compose.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-dev-ops/bazarr-ultimate-subs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-dev-ops/bazarr-ultimate-subs/HEAD/README.md -------------------------------------------------------------------------------- /aeneas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-dev-ops/bazarr-ultimate-subs/HEAD/aeneas/app.py -------------------------------------------------------------------------------- /aeneas/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-dev-ops/bazarr-ultimate-subs/HEAD/aeneas/dockerfile -------------------------------------------------------------------------------- /aeneas/process_subtitles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-dev-ops/bazarr-ultimate-subs/HEAD/aeneas/process_subtitles.py -------------------------------------------------------------------------------- /bazarr/config/postproces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-dev-ops/bazarr-ultimate-subs/HEAD/bazarr/config/postproces.sh -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-dev-ops/bazarr-ultimate-subs/HEAD/docker-compose.yaml --------------------------------------------------------------------------------