tts azure web
v1.1.0
English / 简体中文
TTS Azure Web is an Azure Text-to-Speech (TTS) web application. Fine-tune the output speech results using Speech Synthesis Markup Language (SSML). It allows you to run it locally or deploy it with a single click using your Azure Key.
Key Features:
This application is ideal for those looking to minimize setup while experiencing the full capabilities of Azure TTS.
Live demo: https://tts.femoon.top
Get your API Key
# install yarn
npm i -g yarn
# install dependencies
yarn
# building the production environment
yarn build
# run production environment serve
yarn startBefore starting development, you must create a new .env.local file at project root, and place your azure key and region into it:
# 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=4000Run the development server:
# install yarn
npm i -g yarn
# install dependencies
yarn
# run serve
yarn devOpen http://localhost:3000 with your browser to see the result.
feat add new functionsfix Fix issues/bugsperf Optimize performancestyle Change the code style without affecting the running resultrefactor Re-factor coderevert Undo changestest Test related, does not involve changes to business codedocs Documentation and Annotationchore Updating dependencies/modifying scaffolding configuration, etc.ci CI/CD