{"id":21835171,"url":"https://github.com/redayzarra/study-manim","last_synced_at":"2026-01-29T12:36:21.688Z","repository":{"id":135824166,"uuid":"611836886","full_name":"redayzarra/study-manim","owner":"redayzarra","description":"These are all my notes, lessons, and tutorials I have followed to learn 3b1b's Manim library. Manim is a python animation library that allows users to create graphs, visuals, animations, and even write LaTeX math formulas. I hope to finish the tutorials and create my own YouTube videos for viewers to learn concepts visually. ","archived":false,"fork":false,"pushed_at":"2025-12-23T22:09:54.000Z","size":95174,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-25T11:57:10.606Z","etag":null,"topics":["animation","manim","manim-3b1b","manim-animations","manim-engine","manim-python","manimce","python","python-library","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/redayzarra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-03-09T16:38:21.000Z","updated_at":"2025-12-23T22:09:59.000Z","dependencies_parsed_at":"2025-06-08T14:45:04.689Z","dependency_job_id":null,"html_url":"https://github.com/redayzarra/study-manim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/redayzarra/study-manim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redayzarra%2Fstudy-manim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redayzarra%2Fstudy-manim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redayzarra%2Fstudy-manim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redayzarra%2Fstudy-manim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/redayzarra","download_url":"https://codeload.github.com/redayzarra/study-manim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redayzarra%2Fstudy-manim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28877875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animation","manim","manim-3b1b","manim-animations","manim-engine","manim-python","manimce","python","python-library","python3"],"created_at":"2024-11-27T20:18:06.622Z","updated_at":"2026-01-29T12:36:21.659Z","avatar_url":"https://github.com/redayzarra.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Manim Usage Guide\n\nThis guide will help you get started with creating animations using Manim. Below are the essential commands you need to know.\n\n## Creating a Manim Scene\n\nMy custom user snippet for starting a new `scene.py` is:\n\n```python\ngomanim or manim\n```\n\nWhich effectively types:\n```python\nfrom manim import *\nfrom components.watermark import create_watermark\n\nclass Classname(Scene):\n    def construct(self):\n        self.construction()\n        self.animate_scene()\n\n    def construction(self):\n        \"\"\"\n        Define and position the elements of the scene.\n        \"\"\"\n\n    def animate_scene(self):\n        \"\"\"\n        Add elements to the scene and animate them.\n        \"\"\"\n        # Add watermark\n        watermark = create_watermark()\n        self.add(watermark)\n\n```\n\n## Running Manim\nIn the terminal, I need to go to the directory of `scene.py` and type:\n\n```bash\nmanim scene.py [Class name]\n```\nor alternatively\n\n```bash\npython -m manim scene.py [Class name]\n```\n\n## Video Settings\nFor **Low Quality** preview videos:\n```bash\nmanim -pql scene.py [Class name]\n```\n\nFor **High Quality** final videos:\n```bash\nmanim -pqk scene.py [Class name]\n```\n\nTo change the aspect ratio and resolution of videos add this:\n\n```python\nfrom manim import *\n\n# For vertical content\nconfig.pixel_width = 1080\nconfig.pixel_height = 1920\nconfig.frame_width = 9\nconfig.frame_height = 16\n\nclass ClassName(Scene):\n    def construct(self):\n\n```\n\n## Creating a GIF's\nI can also create GIF's of different qualities with the flag:\n```bash\nmanim --format=gif scene.py [Class name]\n```\n## Getting last frame\nYou can get the last frame of scene with:\n```bash\nmanim -sqk scene.py [Class name]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredayzarra%2Fstudy-manim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredayzarra%2Fstudy-manim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredayzarra%2Fstudy-manim/lists"}