edge-tts-go
是一个 golang 模块,允许您从 golang 代码中或使用提供的 edge-tts-go
命令使用 Microsoft Edge 的在线文本到语音服务。
$ go install github.com/wujunwei928/edge-tts-go
https://github.com/wujunwei928/edge-tts-go/releases
如果您想使用 edge-tts-go
命令,只需使用以下命令运行它:
$ edge-tts-go --text "Hello, world" --write-media hello.mp3
如果您想更改转换文本时使用的声音。
您需要使用 --list-voices
选项检查可用的语音:
$ edge-tts-go --list-voices
Name: Microsoft Server Speech Text to Speech Voice (zh-CN, XiaoxiaoNeural)
ShortName: zh-CN-XiaoxiaoNeural
Gender: Female
Locale: zh-CN
ContentCategories: News,Novel
VoicePersonalities: Warm
Name: Microsoft Server Speech Text to Speech Voice (zh-CN, XiaoyiNeural)
ShortName: zh-CN-XiaoyiNeural
Gender: Female
Locale: zh-CN
ContentCategories: Cartoon,Novel
VoicePersonalities: Lively
...
使用 --voice
选项指定声音进行转换
$ edge-tts-go --voice zh-CN-XiaoxiaoNeural --text "纵使浮云蔽天日,我亦拔剑破长空" --write-media hello_in_chinese.mp3
如果你的电脑安装过ffplay,你可以使用以下命令直接播放音频文件:
$ edge-tts-go --voice zh-CN-XiaoxiaoNeural --text "纵使浮云蔽天日,我亦拔剑破长空" | ffplay -i -
$ edge-tts-go --rate=-50% --text "Hello, world" --write-media hello_with_rate_halved.mp3
$ edge-tts-go --volume=-50% --text "Hello, world" --write-media hello_with_volume_halved.mp3
$ edge-tts-go --pitch=-50Hz --text "Hello, world" --write-media hello_with_pitch_halved.mp3
可以直接在go代码中使用 edge-tts-go
模块, 从下面的文件查看调用方法: