File size: 805 Bytes
2b7fd6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# SVS SYSTEM
## Features
- 支持SVC模式切换
- 支持批量/单个处理
## Todos
- 音频清洗(需要ffmpeg)
- VocalRemover
- DiffSinger support coming soon
## Install & Run
### 预先下载的模型文件
+ 需要装有Node以及npm
+ 在frontend文件夹下
```shell
npm i
```
### 配置
1. 修改/frontend/src/main.ts文件,将axios.defaults.baseURL修改为服务器运行的IP地址与端口号
2. 运行
```bash
npm run buid
```
执行构建
## Some npm helpers
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run dev
```
### Type-Check, Compile and Minify for Production
```sh
npm run build
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```
### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```
|