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