mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 04:57:46 +00:00
Best to keep the partial video outputs from cluttering things up too much
This commit is contained in:
parent
8931a88b3f
commit
ec92af6074
1 changed files with 5 additions and 1 deletions
|
|
@ -37,7 +37,11 @@ def get_movie_output_directory(scene_class, camera_config, frame_duration):
|
|||
def get_partial_movie_output_directory(scene_class, camera_config, frame_duration):
|
||||
directory = get_movie_output_directory(scene_class, camera_config, frame_duration)
|
||||
return guarantee_existance(
|
||||
os.path.join(directory, scene_class.__name__)
|
||||
os.path.join(
|
||||
directory,
|
||||
"partial_movie_files",
|
||||
scene_class.__name__
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue