File tree Expand file tree Collapse file tree 3 files changed +96
-0
lines changed Expand file tree Collapse file tree 3 files changed +96
-0
lines changed Original file line number Diff line number Diff line change
1
+ # manim
2
+
3
+ > 수학 설명 영상을 위한 애니메이션 엔진입니다.
4
+ > 더 많은 정보: < https://docs.manim.community/en/stable/tutorials/quickstart.html > .
5
+
6
+ - 기본 설정으로 Python 스크립트의 장면을 렌더링:
7
+
8
+ ` manim {{경로/파일.py}} {{장면이름}} `
9
+
10
+ - 실시간 미리보기로 렌더링 (렌더링 후 자동으로 영상 열기):
11
+
12
+ ` manim {{[-pql|--preview --quality low]}} {{경로/파일.py}} {{장면이름}} `
13
+
14
+ - 고화질(1080p 60fps)로 렌더링:
15
+
16
+ ` manim {{[-pqh|--preview --quality high]}} {{경로/파일.py}} {{장면이름}} `
17
+
18
+ - 출력 파일 이름을 직접 지정:
19
+
20
+ ` manim {{[-o|--output_file]}} {{출력파일이름}} {{경로/파일.py}} {{장면이름}} `
21
+
22
+ - 특정 해상도와 프레임 속도로 렌더링:
23
+
24
+ ` manim {{[-r|--resolution]}} {{1920,1080}} {{[-f|--fps]}} {{60}} {{경로/파일.py}} {{장면이름}} `
25
+
26
+ - 렌더링 없이 스크립트에 정의된 장면 목록 보기:
27
+
28
+ ` manim --list_scenes {{경로/파일.py}} `
29
+
30
+ - 도움말 표시:
31
+
32
+ ` manim --help `
Original file line number Diff line number Diff line change
1
+ # manim
2
+
3
+ > 用于制作数学动画的视频引擎。
4
+ > 更多信息:< https://docs.manim.community/en/stable/tutorials/quickstart.html > .
5
+
6
+ - 使用默认设置渲染 Python 脚本中的场景:
7
+
8
+ ` manim {{路径/文件.py}} {{场景名称}} `
9
+
10
+ - 实时预览渲染(渲染后自动打开视频):
11
+
12
+ ` manim {{[-pql|--preview --quality low]}} {{路径/文件.py}} {{场景名称}} `
13
+
14
+ - 以高质量渲染(1080p 60帧):
15
+
16
+ ` manim {{[-pqh|--preview --quality high]}} {{路径/文件.py}} {{场景名称}} `
17
+
18
+ - 指定自定义输出文件名:
19
+
20
+ ` manim {{[-o|--output_file]}} {{输出文件名}} {{路径/文件.py}} {{场景名称}} `
21
+
22
+ - 使用指定分辨率和帧率进行渲染:
23
+
24
+ ` manim {{[-r|--resolution]}} {{1920,1080}} {{[-f|--fps]}} {{60}} {{路径/文件.py}} {{场景名称}} `
25
+
26
+ - 列出文件中可用的场景而不进行渲染:
27
+
28
+ ` manim --list_scenes {{路径/文件.py}} `
29
+
30
+ - 显示帮助信息:
31
+
32
+ ` manim --help `
Original file line number Diff line number Diff line change
1
+ # manim
2
+
3
+ > Animation engine for explanatory math videos.
4
+ > More information: < https://docs.manim.community/en/stable/tutorials/quickstart.html > .
5
+
6
+ - Render a scene from a Python script using the default settings:
7
+
8
+ ` manim {{path/to/file.py}} {{SceneName}} `
9
+
10
+ - Render with live preview (auto-opens the video file after rendering):
11
+
12
+ ` manim {{[-pql|--preview --quality low]}} {{path/to/file.py}} {{SceneName}} `
13
+
14
+ - Render at high quality (1080p 60fps):
15
+
16
+ ` manim {{[-pqh|--preview --quality high]}} {{path/to/file.py}} {{SceneName}} `
17
+
18
+ - Specify a custom output file name:
19
+
20
+ ` manim {{[-o|--output_file]}} {{output_file_name}} {{path/to/file.py}} {{SceneName}} `
21
+
22
+ - Render using a specific resolution and frame rate:
23
+
24
+ ` manim {{[-r|--resolution]}} {{1920,1080}} {{[-f|--fps]}} {{60}} {{path/to/file.py}} {{SceneName}} `
25
+
26
+ - List available scenes in a file without rendering:
27
+
28
+ ` manim --list_scenes {{path/to/file.py}} `
29
+
30
+ - Display help:
31
+
32
+ ` manim --help `
You can’t perform that action at this time.
0 commit comments