tts azure web
v1.1.0
英语 /简体中文
TTS Azure Web是Azure文本到语音(TTS)Web应用程序。使用语音综合标记语言(SSML)微调输出语音结果。它允许您使用Azure键在本地运行它或单击单击。
关键功能:
对于那些希望最大程度地减少设置的人,同时体验Azure TTS的全部功能,此应用程序是理想的选择。
现场演示:https://tts.femoon.top
获取您的API键
# install yarn
npm i -g yarn
# install dependencies
yarn
# building the production environment
yarn build
# run production environment serve
yarn start在开始开发之前,您必须在项目根部创建一个新的.env.local文件,然后将Azure密钥和区域放入其中:
# your azure key (required)
SPEECH_KEY=your_azure_key
# your azure region (required)
SPEECH_REGION=your_azure_region
# Maximum input length limit (optional)
NEXT_PUBLIC_MAX_INPUT_LENGTH=4000运行开发服务器:
# install yarn
npm i -g yarn
# install dependencies
yarn
# run serve
yarn dev打开http:// localhost:3000使用浏览器查看结果。
feat添加新功能fix问题/错误perf优化性能style更改代码样式而不影响运行结果refactor重新因素代码revert撤消变化test ,不涉及对业务代码的更改docs文档和注释chore更新依赖关系/修改脚手架配置等。ci CI/CD