rspeechpy
0.1
تم تطوير نص لمحرك الكلام مع أصوات واقعية بالكامل في Python ويتم تشغيله بواسطة Microsoft Azure كحزمة Python
pip3 install rspeechpypip install rspeechpy import asyncio
from rspeechpy import Engine
# Declaration
speech = Engine ()
async def example ():
names = await speech . giveVoicesList ()
for name in names :
print ( name [ 'FriendlyName' ]) # Describe voice's name & language.
print ( name [ 'ShortName' ]) # Return "key" to use that voice.
# Running
app = asyncio . get_event_loop ()
app . run_until_complete ( example ()) import asyncio
from rspeechpy import Engine
# Declaration
speech = Engine ()
async def example ():
await speech . setVoice ( 'es-ES-ElviraNeural' )
await speech . setRate ( 5 )
await speech . setPitch ( 5 )
await speech . setVolume ( 5 )
text = "Hola esto es una prueba de texto a voz"
await speech . synthesize ( text , 'audio.mp3' )
# Running
app = asyncio . get_event_loop ()
app . run_until_complete ( example ())المزيد من الوثائق
| المعلمة | يكتب | وصف |
|---|---|---|
api_key | string | غير متكافئة |
رخصة معهد ماساتشوستس للتكنولوجيا