Advertisement
Guest User

Untitled

a guest
Nov 8th, 2023
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. File ...\anaconda3\envs\manim\lib\site-packages\manim_voiceover\voiceover_scene.py:166, in VoiceoverScene.wait_until_bookmark(self, mark)
  2. 160 def wait_until_bookmark(self, mark: str) -> None:
  3. 161 """Waits until a bookmark is reached.
  4. 162
  5. 163 Args:
  6. 164 mark (str): The `mark` attribute of the bookmark to wait for.
  7. 165 """
  8. --> 166 self.safe_wait(self.current_tracker.time_until_bookmark(mark))
  9.  
  10. File ...\anaconda3\envs\manim\lib\site-packages\manim_voiceover\tracker.py:130, in VoiceoverTracker.time_until_bookmark(self, mark, buff, limit)
  11. 128 self._check_bookmarks()
  12. 129 if not mark in self.bookmark_times:
  13. --> 130 raise Exception("There is no <bookmark mark='%s' />" % mark)
  14. 131 result = max(self.bookmark_times[mark] - self.scene.renderer.time + buff, 0)
  15. 132 if limit is not None:
  16.  
  17. Exception: There is no <bookmark mark='B' />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement