gitextract_l1kjskog/ ├── .dockerignore ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── docker-image-tag-commit.yml ├── .gitignore ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── LICENSE ├── README.md ├── README_EN.md ├── app.py ├── appdingzhi.py ├── change.md ├── clone/ │ ├── __init__.py │ ├── cfg.py │ ├── character.json │ └── logic.py ├── code_dev.py ├── docker/ │ ├── build@source/ │ │ └── dockerfile │ ├── up@cpu/ │ │ ├── .models.json │ │ └── docker-compose.yml │ └── up@gpu/ │ ├── .models.json │ └── docker-compose.yml ├── environment.yml ├── models/ │ ├── faster/ │ │ └── models--Systran--faster-whisper-medium/ │ │ ├── refs/ │ │ │ └── main │ │ └── snapshots/ │ │ └── ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66/ │ │ ├── config.json │ │ ├── tokenizer.json │ │ └── vocabulary.txt │ └── tts/ │ └── run/ │ └── training/ │ └── XTTS_v2.0_original_model_files/ │ ├── config.json │ └── vocab.json ├── params.json ├── requirements.txt ├── runapp.bat ├── runtrain.bat ├── static/ │ └── js/ │ └── layer/ │ ├── layer.js │ ├── mobile/ │ │ ├── layer.js │ │ └── need/ │ │ └── layer.css │ └── theme/ │ └── default/ │ └── layer.css ├── templates/ │ ├── index.html │ └── txt.html ├── test.py ├── testapi.py ├── train.py ├── tts/ │ └── 模型目录.txt ├── utils/ │ ├── __init__.py │ ├── cfg.py │ └── formatter.py ├── version.json └── xtts_demo.py