├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── client ├── bin │ └── .gitkeep └── src │ ├── assets │ ├── __init__.py │ ├── docs │ │ ├── announcement.md │ │ └── intro.md │ ├── i18n │ │ ├── en.qm │ │ └── en.ts │ └── sources.py │ ├── components │ ├── __init__.py │ ├── frames.py │ └── tables.py │ ├── config.py │ ├── envConfigurator.py │ ├── functions.py │ ├── main.py │ ├── modelsManager.py │ ├── pages │ ├── __init__.py │ ├── common.py │ ├── envPage.py │ ├── settingsPage.py │ └── toolPage.py │ ├── toolsManager.py │ ├── ui │ ├── UI_ChildWindow_ASR.py │ ├── UI_ChildWindow_DAT.py │ ├── UI_ChildWindow_TTS.py │ ├── UI_ChildWindow_VPR.py │ ├── UI_MainWindow.py │ └── __init__.py │ ├── updater.py │ └── windows │ ├── __init__.py │ ├── dialogs.py │ └── windows.py ├── docs ├── CN │ ├── Audio-Processor.md │ ├── Dataset-Creator.md │ ├── Voice-Converter.md │ ├── Voice-Recognizer.md │ ├── Voice-Trainer.md │ └── Voice-Transcriber.md ├── EN │ ├── Audio-Processor.md │ ├── Dataset-Creator.md │ ├── Voice-Converter.md │ ├── Voice-Recognizer.md │ ├── Voice-Trainer.md │ └── Voice-Transcriber.md ├── README_CN.md └── media │ ├── Audio-Processor.png │ ├── Cover.jpg │ ├── Dataset-Creator.png │ ├── Voice-Converter.png │ ├── Voice-Recognizer.png │ ├── Voice-Trainer.png │ └── Voice-Transcriber.png ├── icon.rc ├── manifest.json ├── requirements.txt ├── run.cpp ├── run.ipynb ├── run.py └── server ├── app ├── main.py ├── routers.py ├── tools.py └── utils │ ├── __init__.py │ └── logger.py └── start.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /client/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/assets/__init__.py: -------------------------------------------------------------------------------- 1 | from .sources import * -------------------------------------------------------------------------------- /client/src/assets/docs/announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/assets/docs/announcement.md -------------------------------------------------------------------------------- /client/src/assets/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/assets/docs/intro.md -------------------------------------------------------------------------------- /client/src/assets/i18n/en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/assets/i18n/en.qm -------------------------------------------------------------------------------- /client/src/assets/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/assets/i18n/en.ts -------------------------------------------------------------------------------- /client/src/assets/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/assets/sources.py -------------------------------------------------------------------------------- /client/src/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/components/__init__.py -------------------------------------------------------------------------------- /client/src/components/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/components/frames.py -------------------------------------------------------------------------------- /client/src/components/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/components/tables.py -------------------------------------------------------------------------------- /client/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/config.py -------------------------------------------------------------------------------- /client/src/envConfigurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/envConfigurator.py -------------------------------------------------------------------------------- /client/src/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/functions.py -------------------------------------------------------------------------------- /client/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/main.py -------------------------------------------------------------------------------- /client/src/modelsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/modelsManager.py -------------------------------------------------------------------------------- /client/src/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/pages/__init__.py -------------------------------------------------------------------------------- /client/src/pages/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/pages/common.py -------------------------------------------------------------------------------- /client/src/pages/envPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/pages/envPage.py -------------------------------------------------------------------------------- /client/src/pages/settingsPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/pages/settingsPage.py -------------------------------------------------------------------------------- /client/src/pages/toolPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/pages/toolPage.py -------------------------------------------------------------------------------- /client/src/toolsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/toolsManager.py -------------------------------------------------------------------------------- /client/src/ui/UI_ChildWindow_ASR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/ui/UI_ChildWindow_ASR.py -------------------------------------------------------------------------------- /client/src/ui/UI_ChildWindow_DAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/ui/UI_ChildWindow_DAT.py -------------------------------------------------------------------------------- /client/src/ui/UI_ChildWindow_TTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/ui/UI_ChildWindow_TTS.py -------------------------------------------------------------------------------- /client/src/ui/UI_ChildWindow_VPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/ui/UI_ChildWindow_VPR.py -------------------------------------------------------------------------------- /client/src/ui/UI_MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/ui/UI_MainWindow.py -------------------------------------------------------------------------------- /client/src/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/ui/__init__.py -------------------------------------------------------------------------------- /client/src/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/updater.py -------------------------------------------------------------------------------- /client/src/windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/windows/__init__.py -------------------------------------------------------------------------------- /client/src/windows/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/windows/dialogs.py -------------------------------------------------------------------------------- /client/src/windows/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/client/src/windows/windows.py -------------------------------------------------------------------------------- /docs/CN/Audio-Processor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/CN/Audio-Processor.md -------------------------------------------------------------------------------- /docs/CN/Dataset-Creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/CN/Dataset-Creator.md -------------------------------------------------------------------------------- /docs/CN/Voice-Converter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/CN/Voice-Converter.md -------------------------------------------------------------------------------- /docs/CN/Voice-Recognizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/CN/Voice-Recognizer.md -------------------------------------------------------------------------------- /docs/CN/Voice-Trainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/CN/Voice-Trainer.md -------------------------------------------------------------------------------- /docs/CN/Voice-Transcriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/CN/Voice-Transcriber.md -------------------------------------------------------------------------------- /docs/EN/Audio-Processor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/EN/Audio-Processor.md -------------------------------------------------------------------------------- /docs/EN/Dataset-Creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/EN/Dataset-Creator.md -------------------------------------------------------------------------------- /docs/EN/Voice-Converter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/EN/Voice-Converter.md -------------------------------------------------------------------------------- /docs/EN/Voice-Recognizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/EN/Voice-Recognizer.md -------------------------------------------------------------------------------- /docs/EN/Voice-Trainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/EN/Voice-Trainer.md -------------------------------------------------------------------------------- /docs/EN/Voice-Transcriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/EN/Voice-Transcriber.md -------------------------------------------------------------------------------- /docs/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/README_CN.md -------------------------------------------------------------------------------- /docs/media/Audio-Processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/media/Audio-Processor.png -------------------------------------------------------------------------------- /docs/media/Cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/media/Cover.jpg -------------------------------------------------------------------------------- /docs/media/Dataset-Creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/media/Dataset-Creator.png -------------------------------------------------------------------------------- /docs/media/Voice-Converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/media/Voice-Converter.png -------------------------------------------------------------------------------- /docs/media/Voice-Recognizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/media/Voice-Recognizer.png -------------------------------------------------------------------------------- /docs/media/Voice-Trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/media/Voice-Trainer.png -------------------------------------------------------------------------------- /docs/media/Voice-Transcriber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/docs/media/Voice-Transcriber.png -------------------------------------------------------------------------------- /icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/icon.rc -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/manifest.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/run.cpp -------------------------------------------------------------------------------- /run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/run.ipynb -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/run.py -------------------------------------------------------------------------------- /server/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/server/app/main.py -------------------------------------------------------------------------------- /server/app/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/server/app/routers.py -------------------------------------------------------------------------------- /server/app/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/server/app/tools.py -------------------------------------------------------------------------------- /server/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .logger import * -------------------------------------------------------------------------------- /server/app/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/server/app/utils/logger.py -------------------------------------------------------------------------------- /server/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spr-Aachen/Easy-Voice-Toolkit/HEAD/server/start.sh --------------------------------------------------------------------------------