prevent last comment being cut offin the middle

pull/1049/head
Simon Woker 2 years ago committed by GitHub
parent 222b7d6e68
commit b0fa661624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -127,8 +127,7 @@ class TTSEngine:
# self.length += sox.file_info.duration(f"{self.path}/{filename}.mp3")
try:
clip = AudioFileClip(f"{self.path}/{filename}.mp3")
if clip.duration + self.length < self.max_length:
self.last_clip_length = clip.duration
self.last_clip_length = clip.duration
self.length += clip.duration
clip.close()
except:

Loading…
Cancel
Save