When using the _StitcherService, an error occurs, because the hashed audiofile is searched for in the directory media/voiceovers/media/voiceovers instead of media/voiceovers.
How to reproduce the issue
Since the error lies in the search of an audiofile, the most basic example reproduces the error.
Code for reproducing the problem
```py
class Example(VoiceoverScene):
def construct(self):
self.set_speech_service(_StitcherService("my_voice_recording.mp3"))
with self.voiceover("Test"):
pass
```
Description of bug / unexpected behavior
When using the
_StitcherService
, an error occurs, because the hashed audiofile is searched for in the directorymedia/voiceovers/media/voiceovers
instead ofmedia/voiceovers
.How to reproduce the issue
Since the error lies in the search of an audiofile, the most basic example reproduces the error.
Code for reproducing the problem
```py class Example(VoiceoverScene): def construct(self): self.set_speech_service(_StitcherService("my_voice_recording.mp3")) with self.voiceover("Test"): pass ```Additional media files
Images/GIFs
![ErrorStitcher](https://github.com/ManimCommunity/manim-voiceover/assets/84899386/ad06af91-f731-45d0-bb2c-cbd08459ceda)System specifications
irrelevant
Additional comments
The error can be fixed as follows: replace line 150 in stitcher.py by