Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions pages.ko/common/manim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# manim

> 수학 설명 영상을 위한 애니메이션 엔진입니다.
> 자세한 정보: <https://docs.manim.community>

- 기본 설정으로 Python 스크립트의 장면을 렌더링:

`manim {{경로/파일.py}} {{장면이름}}`

- 실시간 미리보기로 렌더링 (렌더링 후 자동으로 영상 열기):

`manim -pql {{경로/파일.py}} {{장면이름}}`

- 고화질(1080p 60fps)로 렌더링:

`manim -pqh {{경로/파일.py}} {{장면이름}}`

- 출력 파일 이름을 직접 지정:

`manim -o {{출력파일이름}} {{경로/파일.py}} {{장면이름}}`

- 특정 해상도와 프레임 속도로 렌더링:

`manim -r {{1920,1080}} -f {{60}} {{경로/파일.py}} {{장면이름}}`

- 렌더링 없이 스크립트에 정의된 장면 목록 보기:

`manim --list_scenes {{경로/파일.py}}`

- 도움말 표시:

`manim --help`

- 하위 명령어의 도움말 표시:

`manim {{하위명령어}} --help`
36 changes: 36 additions & 0 deletions pages.zh/common/manim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# manim

> 用于制作数学动画的视频引擎。
> 更多信息:<https://docs.manim.community>。

- 使用默认设置渲染 Python 脚本中的场景:

`manim {{路径/文件.py}} {{场景名称}}`

- 实时预览渲染(渲染后自动打开视频):

`manim -pql {{路径/文件.py}} {{场景名称}}`

- 以高质量渲染(1080p 60帧):

`manim -pqh {{路径/文件.py}} {{场景名称}}`

- 指定自定义输出文件名:

`manim -o {{输出文件名}} {{路径/文件.py}} {{场景名称}}`

- 使用指定分辨率和帧率进行渲染:

`manim -r {{1920,1080}} -f {{60}} {{路径/文件.py}} {{场景名称}}`

- 列出文件中可用的场景而不进行渲染:

`manim --list_scenes {{路径/文件.py}}`

- 显示帮助信息:

`manim --help`

- 显示子命令的帮助信息:

`manim {{子命令}} --help`
36 changes: 36 additions & 0 deletions pages/common/manim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# manim

> Animation engine for explanatory math videos.
> More information: <https://docs.manim.community>.

- Render a scene from a Python script using the default settings:

`manim {{path/to/file.py}} {{SceneName}}`

- Render with live preview (auto-opens the video file after rendering):

`manim -pql {{path/to/file.py}} {{SceneName}}`

- Render at high quality (1080p 60fps):

`manim -pqh {{path/to/file.py}} {{SceneName}}`

- Specify a custom output file name:

`manim -o {{output_file_name}} {{path/to/file.py}} {{SceneName}}`

- Render using a specific resolution and frame rate:

`manim -r {{1920,1080}} -f {{60}} {{path/to/file.py}} {{SceneName}}`

- List available scenes in a file without rendering:

`manim --list_scenes {{path/to/file.py}}`

- Display help:

`manim --help`

- Display help for a subcommand:

`manim {{subcommand}} --help`