diff --git a/pages.ko/common/manim.md b/pages.ko/common/manim.md new file mode 100644 index 0000000000..3819a00ffd --- /dev/null +++ b/pages.ko/common/manim.md @@ -0,0 +1,32 @@ +# manim + +> 수학 설명 영상을 위한 애니메이션 엔진입니다. +> 더 많은 정보: . + +- 기본 설정으로 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` diff --git a/pages.zh/common/manim.md b/pages.zh/common/manim.md new file mode 100644 index 0000000000..819651eacc --- /dev/null +++ b/pages.zh/common/manim.md @@ -0,0 +1,32 @@ +# manim + +> 用于制作数学动画的视频引擎。 +> 更多信息:. + +- 使用默认设置渲染 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` diff --git a/pages/common/manim.md b/pages/common/manim.md new file mode 100644 index 0000000000..a82680d9e5 --- /dev/null +++ b/pages/common/manim.md @@ -0,0 +1,32 @@ +# manim + +> Animation engine for explanatory math videos. +> More information: . + +- 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`