1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 10:55:36 +02:00

manim: add page (#17257)

This commit is contained in:
Harshavardhan 2025-07-26 18:48:23 +05:30 committed by GitHub
parent ca10ab00a5
commit d46ccf8a7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 96 additions and 0 deletions

32
pages.ko/common/manim.md Normal file
View file

@ -0,0 +1,32 @@
# manim
> 수학 설명 영상을 위한 애니메이션 엔진입니다.
> 더 많은 정보: <https://docs.manim.community/en/stable/tutorials/quickstart.html>.
- 기본 설정으로 Python 스크립트의 장면을 렌더링:
`manim {{경로/파일.py}} {{장면이름}}`
- 실시간 미리보기로 렌더링 (렌더링 후 자동으로 영상 열기):
`manim {{[-pql|--preview --quality low]}} {{경로/파일.py}} {{장면이름}}`
- 고화질(1080p 60fps)로 렌더링:
`manim {{[-pqh|--preview --quality high]}} {{경로/파일.py}} {{장면이름}}`
- 출력 파일 이름을 직접 지정:
`manim {{[-o|--output_file]}} {{출력파일이름}} {{경로/파일.py}} {{장면이름}}`
- 특정 해상도와 프레임 속도로 렌더링:
`manim {{[-r|--resolution]}} {{1920,1080}} {{[-f|--fps]}} {{60}} {{경로/파일.py}} {{장면이름}}`
- 렌더링 없이 스크립트에 정의된 장면 목록 보기:
`manim --list_scenes {{경로/파일.py}}`
- 도움말 표시:
`manim --help`

32
pages.zh/common/manim.md Normal file
View file

@ -0,0 +1,32 @@
# manim
> 用于制作数学动画的视频引擎。
> 更多信息:<https://docs.manim.community/en/stable/tutorials/quickstart.html>.
- 使用默认设置渲染 Python 脚本中的场景:
`manim {{路径/文件.py}} {{场景名称}}`
- 实时预览渲染(渲染后自动打开视频):
`manim {{[-pql|--preview --quality low]}} {{路径/文件.py}} {{场景名称}}`
- 以高质量渲染(1080p 60帧):
`manim {{[-pqh|--preview --quality high]}} {{路径/文件.py}} {{场景名称}}`
- 指定自定义输出文件名:
`manim {{[-o|--output_file]}} {{输出文件名}} {{路径/文件.py}} {{场景名称}}`
- 使用指定分辨率和帧率进行渲染:
`manim {{[-r|--resolution]}} {{1920,1080}} {{[-f|--fps]}} {{60}} {{路径/文件.py}} {{场景名称}}`
- 列出文件中可用的场景而不进行渲染:
`manim --list_scenes {{路径/文件.py}}`
- 显示帮助信息:
`manim --help`

32
pages/common/manim.md Normal file
View file

@ -0,0 +1,32 @@
# manim
> Animation engine for explanatory math videos.
> More information: <https://docs.manim.community/en/stable/tutorials/quickstart.html>.
- 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|--preview --quality low]}} {{path/to/file.py}} {{SceneName}}`
- Render at high quality (1080p 60fps):
`manim {{[-pqh|--preview --quality high]}} {{path/to/file.py}} {{SceneName}}`
- Specify a custom output file name:
`manim {{[-o|--output_file]}} {{output_file_name}} {{path/to/file.py}} {{SceneName}}`
- Render using a specific resolution and frame rate:
`manim {{[-r|--resolution]}} {{1920,1080}} {{[-f|--fps]}} {{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`