Skip to content

Commit 47e0c5c

Browse files
fix windows path to string bug (#70)
Co-authored-by: Michael Kali <[email protected]>
1 parent a3d0107 commit 47e0c5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manim_voiceover/services/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def _wrap_generate_from_text(self, text: str, path: str = None, **kwargs) -> dic
110110
adjusted_path = split_path[0] + "_adjusted" + split_path[1]
111111

112112
adjust_speed(
113-
Path(self.cache_dir) / dict_["original_audio"],
114-
Path(self.cache_dir) / adjusted_path,
113+
str(Path(self.cache_dir) / dict_["original_audio"]),
114+
str(Path(self.cache_dir) / adjusted_path),
115115
self.global_speed,
116116
)
117117
dict_["final_audio"] = adjusted_path

0 commit comments

Comments
 (0)