Last active
June 29, 2023 10:55
-
-
Save AlgorithmAlchemy/d7d58086b5c2891b4b6508af623e3adc to your computer and use it in GitHub Desktop.
audio play python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gtts import gTTS | |
import os | |
import subprocess | |
from subprocess import check_output | |
text = "Global warming is the long-term rise in the average temperature of the Earth’s climate system" | |
language = "en" | |
speech = gTTS(text=text, lang=language, slow=False) | |
speech.save("text.mp3") | |
os.system('nircmd mediaplay 10000 text.mp3') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment