default_config.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. directories:
  2. # Set this to true if you want the path to video files
  3. # to match the directory structure of the path to the
  4. # sourcecode generating that video
  5. mirror_module_path: False
  6. # Where should manim output video and image files?
  7. output: ""
  8. # If you want to use images, manim will look to these folders to find them
  9. raster_images: ""
  10. vector_images: ""
  11. # If you want to use sounds, manim will look here to find it.
  12. sounds: ""
  13. # Manim often generates tex_files or other kinds of serialized data
  14. # to keep from having to generate the same thing too many times. By
  15. # default, these will be stored at tempfile.gettempdir(), e.g. this might
  16. # return whatever is at to the TMPDIR environment variable. If you want to
  17. # specify them elsewhere,
  18. temporary_storage: ""
  19. universal_import_line: "from manimlib import *"
  20. style:
  21. tex_template: "default"
  22. font: "Consolas"
  23. text_alignment: "LEFT"
  24. background_color: "#333333"
  25. # Set the position of preview window, you can use directions, e.g. UL/DR/OL/OO/...
  26. # also, you can also specify the position(pixel) of the upper left corner of
  27. # the window on the monitor, e.g. "960,540"
  28. window_position: UR
  29. window_monitor: 0
  30. full_screen: False
  31. file_writer_config:
  32. # If break_into_partial_movies is set to True, then many small
  33. # files will be written corresponding to each Scene.play and
  34. # Scene.wait call, and these files will then be combined
  35. # to form the full scene. Sometimes video-editing is made
  36. # easier when working with the broken up scene, which
  37. # effectively has cuts at all the places you might want.
  38. break_into_partial_movies: False
  39. video_codec: "libx264"
  40. pixel_format: "yuv420p"
  41. saturation: 1.0
  42. gamma: 1.0
  43. camera_resolutions:
  44. low: "854x480"
  45. med: "1280x720"
  46. high: "1920x1080"
  47. 4k: "3840x2160"
  48. default_resolution: "high"
  49. fps: 30
  50. embed_exception_mode: "Verbose"
  51. embed_error_sound: False