-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
manim: add page #17257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
manim: add page #17257
Changes from 2 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ae57f26
feat: tldr pages for the command manim
TheRootDaemon 74690da
fix: removed the trailing spaces
TheRootDaemon 2dde644
fix: fixed bot issues, changed the link
TheRootDaemon 71fd439
fix: fixed More Information bot issues
TheRootDaemon bb03b23
fix: pages.zh's more information
TheRootDaemon 5f849cd
fix: broken link in pages/common/manim.md
TheRootDaemon 1b703e9
refactor: changed {{opts}} to {{short|long}} opts
TheRootDaemon b3468da
removed the subcommand help
TheRootDaemon c77351e
Merge branch 'main' into manim
TheRootDaemon cbe6f39
fix: removed the placeholders
TheRootDaemon 1378e33
Merge branch 'main' into manim
TheRootDaemon 59d6e20
Merge branch 'main' into manim
TheRootDaemon 464b730
Merge branch 'main' into manim
TheRootDaemon a60ddab
Merge branch 'main' into manim
TheRootDaemon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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}}` | ||
Managor marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - Render with live preview (auto-opens the video file after rendering): | ||
|
|
||
| `manim -pql {{path/to/file.py}} {{SceneName}}` | ||
Managor marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| - 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` | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.