from the merge request, no changes

pull/280/head
iaacornus 3 years ago
parent 49e9c1c997
commit 4bea2372dc
No known key found for this signature in database
GPG Key ID: 281739AE7252598C

@ -24,6 +24,16 @@ def save_text_to_mp3(reddit_obj):
tts.save("assets/mp3/title.mp3")
length += MP3("assets/mp3/title.mp3").info.length
try:
Path(f"assets/mp3/posttext.mp3").unlink()
except OSError as e:
pass
if reddit_obj["thread_post"] != "":
tts = gTTS(text=reddit_obj["thread_post"], lang="en", slow=False)
tts.save(f"assets/mp3/posttext.mp3")
length += MP3(f"assets/mp3/posttext.mp3").info.length
for idx, comment in track(enumerate(reddit_obj["comments"]), "Saving..."):
# ! Stop creating mp3 files if the length is greater than 50 seconds.
# ! This can be longer, but this is just a good starting point

Loading…
Cancel
Save