Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
osolmaz committed Mar 16, 2024
1 parent 65f8431 commit c997b5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion manim_voiceover/services/elevenlabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,12 @@ def generate_from_text(
audio_path = path

try:
audio = generate(text=input_text, voice=self.voice, model=self.model, output_format=self.output_format)
audio = generate(
text=input_text,
voice=self.voice,
model=self.model,
output_format=self.output_format,
)
save(audio, str(Path(cache_dir) / audio_path)) # type: ignore
except Exception as e:
logger.error(e)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "manim-voiceover"
version = "0.3.6"
version = "0.3.6.post"
description = "Manim plugin for all things voiceover"
authors = ["The Manim Community Developers <contact@manim.community>"]
license = "MIT"
Expand Down

0 comments on commit c997b5d

Please sign in to comment.