This commit is contained in:
2026-05-17 17:21:07 +02:00
parent 2ec9d1950f
commit 3fd400af8c
6 changed files with 9 additions and 0 deletions

9
gtts_lib/gtts_first.py Normal file
View File

@ -0,0 +1,9 @@
import os
#pip install gTTS
from gtts import gTTS
tts = gTTS('Ez egy teszt szöveg', lang='hu')
tts.save('teszt szöveg.mp3')
tts = gTTS('This is atest message', lang='en')
tts.save('test message.mp3')

BIN
gtts_lib/test message.mp3 Normal file

Binary file not shown.

BIN
gtts_lib/teszt szöveg.mp3 Normal file

Binary file not shown.