mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
增设前端页面,并改进api_v2以进行适配。
This commit is contained in:
parent
eee607b71d
commit
87fe6f2fd5
81
api_v2.py
81
api_v2.py
@ -110,9 +110,12 @@ import wave
|
||||
import signal
|
||||
import numpy as np
|
||||
import soundfile as sf
|
||||
import shutil
|
||||
from fastapi import FastAPI, Request, HTTPException, Response
|
||||
from fastapi.responses import StreamingResponse, JSONResponse
|
||||
from fastapi import FastAPI, UploadFile, File
|
||||
from fastapi.middleware.cors import CORSMiddleware
|
||||
from fastapi.staticfiles import StaticFiles
|
||||
import uvicorn
|
||||
from io import BytesIO
|
||||
from tools.i18n.i18n import I18nAuto
|
||||
@ -139,6 +142,7 @@ if config_path in [None, ""]:
|
||||
config_path = "GPT-SoVITS/configs/tts_infer.yaml"
|
||||
|
||||
tts_config = TTS_Config(config_path)
|
||||
print("以下为TTS_CONFIG配置, 如需修改请查看/GPT_SoVITS/configs/tts_infer.yaml")
|
||||
print(tts_config)
|
||||
tts_pipeline = TTS(tts_config)
|
||||
|
||||
@ -447,7 +451,84 @@ async def set_sovits_weights(weights_path: str = None):
|
||||
return JSONResponse(status_code=400, content={"message": f"change sovits weight failed", "Exception": str(e)})
|
||||
return JSONResponse(status_code=200, content={"message": "success"})
|
||||
|
||||
APP.add_middleware(
|
||||
CORSMiddleware,
|
||||
allow_origins=["*"], # 允许所有域名的请求
|
||||
allow_credentials=True,
|
||||
allow_methods=["*"], # 允许所有方法
|
||||
allow_headers=["*"], # 允许所有请求头
|
||||
)
|
||||
|
||||
@APP.get("/info")
|
||||
async def get_info():
|
||||
try:
|
||||
gpt_weights_dir_v2 = 'GPT_weights_v2'
|
||||
sovits_weights_dir_v2 = 'SoVITS_weights_v2'
|
||||
gpt_weights_dir = 'GPT_weights'
|
||||
sovits_weights_dir = 'SoVITS_weights'
|
||||
|
||||
gpt_filenames = []
|
||||
sovits_filenames = []
|
||||
|
||||
for dir in [gpt_weights_dir_v2, gpt_weights_dir]:
|
||||
if os.path.exists(dir):
|
||||
gpt_filenames.extend([f"{dir}/{f}" for f in os.listdir(dir) if os.path.isfile(os.path.join(dir, f))])
|
||||
|
||||
for dir in [sovits_weights_dir_v2, sovits_weights_dir]:
|
||||
if os.path.exists(dir):
|
||||
sovits_filenames.extend([f"{dir}/{f}" for f in os.listdir(dir) if os.path.isfile(os.path.join(dir, f))])
|
||||
|
||||
if not gpt_filenames:
|
||||
return JSONResponse(status_code=404, content={"message": "No GPT weights files found"})
|
||||
if not sovits_filenames:
|
||||
return JSONResponse(status_code=404, content={"message": "No SoVITS weights files found"})
|
||||
|
||||
return JSONResponse(status_code=200, content={
|
||||
"gpt_weights_files": gpt_filenames,
|
||||
"sovits_weights_files": sovits_filenames,
|
||||
"server_port": port
|
||||
})
|
||||
except Exception as e:
|
||||
return JSONResponse(status_code=500, content={"message": f"Error retrieving weights info", "error": str(e)})
|
||||
|
||||
@APP.post("/tts")
|
||||
async def tts_post_endpoint(request: TTS_Request):
|
||||
req = request.model_dump()
|
||||
print("\nProcessed request (req):")
|
||||
print(f"Type: {type(req)}")
|
||||
print("Content:")
|
||||
for key, value in req.items():
|
||||
print(f" {key}: {value}")
|
||||
|
||||
return await tts_handle(req)
|
||||
|
||||
@APP.post("/upload_file")
|
||||
async def upload_file(file: UploadFile = File(...)):
|
||||
try:
|
||||
# Create a temporary directory if it doesn't exist
|
||||
temp_dir = "temp_files"
|
||||
os.makedirs(temp_dir, exist_ok=True)
|
||||
|
||||
# Define the path to save the uploaded file
|
||||
file_path = os.path.join(temp_dir, file.filename)
|
||||
|
||||
# Save the uploaded file to the temporary directory
|
||||
with open(file_path, "wb") as buffer:
|
||||
shutil.copyfileobj(file.file, buffer)
|
||||
|
||||
return JSONResponse(status_code=200, content={"message": "File uploaded successfully", "file_path": file_path})
|
||||
except Exception as e:
|
||||
return JSONResponse(status_code=500, content={"message": "File upload failed", "error": str(e)})
|
||||
|
||||
APP.mount("/", StaticFiles(directory="dist", html=True), name="static")
|
||||
print("--------------------------------")
|
||||
print(f"前端界面已在 http://{host}:{port} 开启。")
|
||||
print("目前的前端版本只适配默认端口9880, 更改api端口会导致前端页面无法工作, 但不影响后端api运行。")
|
||||
print("在前端界面中上传的音频文件将会保存在 ./temp_files 目录下,如有需要请手动删除。")
|
||||
print("请至少运行一遍webui.py, 放好模型, 再运行本API, 以确保存放模型的文件夹SoVITS_weights和GPT_weights存在。")
|
||||
print("如遇配置错误,请检查命令行上方输出的配置详情,并修改文件/GPT_SoVITS/configs/tts_infer.yaml")
|
||||
print("如果运行环境是mac, 请将tts_infer.yaml内custom条目下的device改为cpu, is_half改为false")
|
||||
print("--------------------------------")
|
||||
|
||||
if __name__ == "__main__":
|
||||
try:
|
||||
|
17
dist/assets/index-BXQvAA72.js
vendored
Normal file
17
dist/assets/index-BXQvAA72.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/assets/index-Dl43Gj3X.css
vendored
Normal file
1
dist/assets/index-Dl43Gj3X.css
vendored
Normal file
File diff suppressed because one or more lines are too long
13
dist/index.html
vendored
Normal file
13
dist/index.html
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite Project</title>
|
||||
<script type="module" crossorigin src="/assets/index-BXQvAA72.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-Dl43Gj3X.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
</body>
|
||||
</html>
|
1
dist/vite.svg
vendored
Normal file
1
dist/vite.svg
vendored
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -34,3 +34,4 @@ opencc; sys_platform != 'linux'
|
||||
opencc==1.1.1; sys_platform == 'linux'
|
||||
python_mecab_ko; sys_platform != 'win32'
|
||||
fastapi<0.112.2
|
||||
shutil
|
Loading…
x
Reference in New Issue
Block a user