mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-06 19:55:41 +02:00
1,009 B
1,009 B
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