├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── align.py ├── entrypoint.py ├── example.zip ├── lipsync.py ├── mixing.py ├── modules ├── AsrModel.py ├── AudioProcessor.py ├── CsvProcessor.py ├── ModelFactory.py ├── PipelineModule.py ├── SpeakerProcessor.py └── TextProcessor.py ├── requirements.txt └── utils └── init_models.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/README.md -------------------------------------------------------------------------------- /align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/align.py -------------------------------------------------------------------------------- /entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/entrypoint.py -------------------------------------------------------------------------------- /example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/example.zip -------------------------------------------------------------------------------- /lipsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/lipsync.py -------------------------------------------------------------------------------- /mixing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/mixing.py -------------------------------------------------------------------------------- /modules/AsrModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/modules/AsrModel.py -------------------------------------------------------------------------------- /modules/AudioProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/modules/AudioProcessor.py -------------------------------------------------------------------------------- /modules/CsvProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/modules/CsvProcessor.py -------------------------------------------------------------------------------- /modules/ModelFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/modules/ModelFactory.py -------------------------------------------------------------------------------- /modules/PipelineModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/modules/PipelineModule.py -------------------------------------------------------------------------------- /modules/SpeakerProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/modules/SpeakerProcessor.py -------------------------------------------------------------------------------- /modules/TextProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/modules/TextProcessor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/init_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_voiceover/HEAD/utils/init_models.py --------------------------------------------------------------------------------