Options (4)
booleanRender with live preview (auto-opens the video file after rendering)
Example:
manim {{[-pql|--preview --quality low]}} {{path/to/file.py}} {{SceneName}}booleanRender at high quality (1080p 60fps)
Example:
manim {{[-pqh|--preview --quality high]}} {{path/to/file.py}} {{SceneName}}-o, --output_filebooleanSpecify a custom output file name
Example:
manim {{[-o|--output_file]}} {{output_file_name}} {{path/to/file.py}} {{SceneName}}-r, --resolutionbooleanRender using a specific resolution and frame rate
Example:
manim {{[-r|--resolution]}} {{1920,1080}} --fps {{60}} {{path/to/file.py}} {{SceneName}}Examples (7)
Render a scene from a Python script using the default settings
manim path/to/file.py SceneNameRender with live preview (auto-opens the video file after rendering)
manim [-pql|--preview --quality low] path/to/file.py SceneNameRender at high quality (1080p 60fps)
manim [-pqh|--preview --quality high] path/to/file.py SceneNameSpecify a custom output file name
manim [-o|--output_file] output_file_name path/to/file.py SceneNameRender using a specific resolution and frame rate
manim [-r|--resolution] 1920,1080 --fps 60 path/to/file.py SceneNameList available scenes in a file without rendering
manim --list_scenes path/to/file.pyDisplay help
manim --helpmade by @shridhargupta | data from tldr-pages