Text to voice assistant for cross-platform cloud-based voice synthesis API. Supports single text rapid synthesis and batch synthesis. Supports windows, macOS, and Linux.
Currently, Alibaba Cloud and iFlytek are supported, and other platforms have joined one after another.
如果觉得不错,来个star 支持下作者吧!你的Star 是我更新代码的动力!:)
If you want to complain or suggest, you can fly directly to issue.
The current compiled version includes Windows 32/64, Mac, and Linux versions, click here to download.
Alibaba Cloud creates voice synthesis AppKey, as well as Alibaba Cloud Account API Key. Direct.
Currently, the assistant has built-in Alibaba Cloud synthesis of 99 scenarios.
Just register at iFlytek Cloud.
Currently, the assistant has built-in iFlytek for more than 100 scene voice synthesis.
It should be noted that when using specific voices, scenario support is required to be added to iFLYTEK Cloud console.
Main dependency library:
├── app.config.js // 基础配置
├── babel.config.js // babel 配置
├── build // 打包输出文件夹
│ ├── binary // 二进制打包输出
│ └── bundle // renderer main打包源输出
├── config // 打包配置
│ ├── dev.js // 开发监听启动
│ ├── dist.js // 发布打包源
│ ├── webpack.main.js // background 编译
│ └── webpack.renderer.js // renderer 编译
├── electron.builder.js // electron.builder 二进制打包配置
├── global.d.ts // typescript 全局声明
├── lint-staged.config.js // git commit 钩子
├── public // 静态文件
├── src // 页面源
│ ├── App.less // 入口样式
│ ├── assets // 资源文件
│ ├── background.ts // electron background
│ ├── config // 应用配置
│ ├── hook // hook
│ ├── index.tsx // entry file
│ ├── layout // 布局
│ ├── type // 声明文件
│ └── utils // 工具
└── tsconfig.json // typescript 配置
└── tslint.json // tslint 配置
Install dependencies first
$ yarnThen you can execute the following script command:
# 开发服务启动
$ yarn serve
# Lint 格式化
$ yarn lint
# 源构建输出
$ yarn dist
# 根据当前系统构建
$ yarn build
# 基于 dist 输出,根据当前系统构建
$ yarn build:now
# 构建 Windows 二进制
$ yarn build:windows
# 构建 Mac 二进制
$ yarn build:mac
# 构建 Linux 二进制
$ yarn build:linux
# 构建三平台
$ yarn build:all
If you have any ideas or comments, please feel free to mention Issue or PR.
Apache-2.0 License © 2021 funnyzak