MCPcopy Index your code
hub / github.com/3b1b/videos

github.com/3b1b/videos @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
23,239 symbols 96,204 edges 417 files 90 documented · 0% updated 2d ago★ 10,91743 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

This project contains the code used to generate the explanatory math videos found on 3Blue1Brown.

This almost entirely consists of scenes generated using the library Manim. See also the community maintained version at ManimCommunity.

Older projects may have code dependent on older versions of manim, and so may not run out of the box here.

Note, while the library Manim itself is open source software and under the MIT license, the contents of this repository are available under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

CC BY-NC-SA 4.0

Workflow

I made this video to show more of how I use manim. Note that I'm using 3b1b/manim, not the community edition, some functionality may differ between the two. Aside from installing manim itself, replicating the workflow involves some custom plugins with Sublime, the text editor I use.

If you use another text editor, the same functionality can be mimicked. The key is to make use of two facts.

  • Running manimgl (file name) (scene name) -se (line_number) will drop you into an interactive mode at that line of the file, like a debugger, with an iPython terminal that can be used to interact with the scene.

  • Within that interactive mode, if you enter "checkpoint_paste()" to the terminal, it will run whatever bit of code is copied to the clipboard. Moreover, if that copied code begins with a comment, the first time it sees that comment it will save the state of the scene at that point, and for all future calls on code beginning with the same comment, it will first revert to that state of the scene before running the code.

    • The argument "skip" of checkpoint_paste will mean it runs the code without animating, as if all run times set to 0.
    • The argument "record" of checkpoint_paste will cause whatever animations are run with that copied code to be rendered to file.

For my own workflow, I set up some keyboard shortcuts to kick off each of these commands. For those who want to try it out themselves, here's what's involved.

Sublime-specific instructions

Install Terminus (via package control). This is a terminal run within sublime, and it lets us write some plugins that take the state in sublime, like where your cursor is, what's highlighted, etc., and use that to run a desired command line instruction.

Take the files in the "sublime_custom_commands" sub-directory of this repo, and copy them into the Packages/User/ directory of your Sublime Application. This should be a directory with a path that looks something like /wherever/your/sublime/lives/Packages/User/

Add some keybindings to reference these commands. Here's what I have inside my key_bindings file, you can find your own under the menu Sublime Text -> Settings -> Keybindings

    { "keys": ["shift+super+r"], "command": "manim_run_scene" },
    { "keys": ["super+r"], "command": "manim_checkpoint_paste" },
    { "keys": ["super+alt+r"], "command": "manim_recorded_checkpoint_paste" },
    { "keys": ["super+ctrl+r"], "command": "manim_skipped_checkpoint_paste" },
    { "keys": ["super+e"], "command": "manim_exit" },
    { "keys": ["super+option+/"], "command": "comment_fold"},

For example, I bind the "command + shift + R" to a custom "manim_run_scene" command. If the cursor is inside a line of a scene, this will drop you into the interactive mode at that point of the scene. If the cursor is on the line defining the scene, it will copy to the clipboard the command needed to render that full scene to file.

I bind "command + R" to a "manim_checkpoint_paste" command, which will copy whatever bit of code is highlighted, and run "checkpoint_paste()" in the interactive terminal.

Of course, you could set these to whatever keyboard shortcuts you prefer.

Installation

  1. Install manimgl from source since the latest version published is not up to date.
  2. Ensure Latex is installed, for example on Ubuntu sh sudo apt install texlive sudo apt install texlive-latex-extra sudo apt install texlive-fonts-extra sudo apt install texlive-science
  3. Clone this repository to run the video samples sh git clone git@github.com:3b1b/videos.git cd videos

Running a video

  1. Setup includes (if you don't want to modify your path) sh cd _2023/optics_puzzles vi e_field.py And add the following to the top python import sys sys.path.append(".") sys.path.append("..") sys.path.append("../..")

  2. Run an example sh manimgl e_field.py Or sh manimgl e_field.py WavesIn3D

Copyright © 2026 3Blue1Brown

Core symbols most depended-on inside this repo

wait
called by 18425
_2017/256.py
play
called by 13303
_2022/quintic/roots_and_coefs.py
play
called by 12829
_2017/efvgt.py
add
called by 11121
_2024/transformers/attention.py
set_color
called by 5948
_2024/holograms/diffraction.py
move_to
called by 5219
custom/drawings.py
scale
called by 4764
_2023/optics_puzzles/objects.py
copy
called by 4256
_2017/highD.py

Shape

Method 15,141
Class 7,455
Function 643

Languages

Python100%

Modules by API surface

_2018/quaternions.py320 symbols
_2017/crypto.py307 symbols
_2018/div_curl.py269 symbols
_2021/newton_fractal.py261 symbols
_2017/nn/part1.py253 symbols
_2017/highD.py245 symbols
_2021/shadows.py236 symbols
_2018/WindingNumber.py235 symbols
_2017/waves.py234 symbols
_2018/uncertainty.py230 symbols
_2017/leibniz.py225 symbols
_2022/wordle/scenes.py223 symbols

For agents

$ claude mcp add videos \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact