Skip to main content

snippet-cast

Turn an annotated Python snippet into a narrated screencast video.

Narration is written as trailing #: comments on the snippet's own lines, so the input stays valid, runnable Python:

def fib(n):             #: We define fib, taking one argument, n.
    a, b = 0, 1          #: Start from the first two Fibonacci numbers.
    for _ in range(n):   #: Loop n times.
        a, b = b, a + b  #: Advance the pair; b becomes the running sum.
    return a             #: Return a — the nth Fibonacci number.

Each #: line becomes one "beat": the code is revealed up to that line, the line is highlighted, and its narration is spoken. snippet-cast renders syntax-highlighted code frames with a progressive reveal, a Python-Tutor-style live variable panel, optional burned-in captions and a typing-in animation, synthesises speech per line, and stitches everything into an MP4 with ffmpeg.

Installation

Requires Python 3.10+ and ffmpeg (with ffprobe) on PATH.

pip install snippet-cast
# or
pixi add snippet-cast
# or
conda install -c munch-group snippet-cast

Usage

snippet-cast snippet.py -o out.mp4 --tts silent --subtitles   # fast, voiceless proof
snippet-cast snippet.py -o out.mp4 --typing --subtitles       # type each new line in
snippet-cast loop.py    -o out.mp4 --every --subtitles        # animate each loop iteration

Or from Python:

from snippet_cast import build

build("snippet.py", "out.mp4", tts="silent", subtitles=True)

Or in a Jupyter notebook — write the snippet directly in a cell instead of a separate .py file:

pip install snippet-cast[jupyter]
%load_ext snippet_cast.magic
%%snippet-cast -o out.mp4 --tts silent --subtitles
def fib(n):             #: We define fib, taking one argument, n.
    a, b = 0, 1          #: Start from the first two Fibonacci numbers.
    for _ in range(n):   #: Loop n times.
        a, b = b, a + b  #: Advance the pair; b becomes the running sum.
    return a             #: Return a — the nth Fibonacci number.
result = fib(7)          #: Call fib with seven; result becomes {result}.

The cell magic takes the same flags as the CLI and displays the rendered MP4 inline.

%%snippet-cast has to be the cell's first line — and so do Quarto's #| directives, so they cannot share a cell. snippet_cast.video() is the same notebook front end as a plain function call, taking the snippet as a string:

#| fig-column: margin
#| echo: false
from snippet_cast import video

video("""
def fib(n):              #: We define fib, taking one argument, n.
    a, b = 0, 1          #: Start from the first two Fibonacci numbers.
    for _ in range(n):   #: Loop n times.
        a, b = b, a + b  #: Advance the pair; b becomes the running sum.
    return a             #: Return a — the nth Fibonacci number.
result = fib(7)          #: Call fib with seven; result becomes {result}.
""", tts="silent", subtitles=True)

Every parameter is the same-named flag (trace=False for --no-trace), resolved the same way — argument, then SNIPPET_CAST_<NAME>, then the default — and it returns the video to display, so leave it as the cell's last expression. Don't make the snippet an f-string: {result} is snippet-cast's own interpolation. Given no out/name/output_dir, the video goes to .snippet-cast/<hash of the snippet>.mp4, so re-running an unchanged cell reuses its file. build() above is the equivalent for a snippet that already lives in its own .py file.

See SETUP.md for all TTS backends — the zero-setup say (macOS) and manual (your own recordings, including --record for recording live via the microphone) backends, plus configuring Piper (local) and ElevenLabs (cloud) — and snippet-cast --help for all options.

Configuration

-o/--output sets an explicit path; without it, -n/--name (default out) and -d/--output-dir (default .snippet-cast, created if missing) build one as output-dir/name.mp4:

snippet-cast snippet.py --tts silent                        # -> ./.snippet-cast/out.mp4
snippet-cast snippet.py --tts silent -n intro               # -> ./.snippet-cast/intro.mp4
snippet-cast snippet.py --tts silent -n intro -d ./videos   # -> ./videos/intro.mp4

.snippet-cast/ is a hidden directory beside your work that ignores itself in git, so renders don't scatter out.mp4 through your folder or your history. %%snippet-cast cells write there too (under a name hashed from the cell), so both front ends keep their videos in one place. -d . puts them back in the current directory.

Every option (except -o/--output) also has a SNIPPET_CAST_<NAME> environment variable default — an explicit flag always wins over its env var:

import os
os.environ["SNIPPET_CAST_TTS"] = "say"
os.environ["SNIPPET_CAST_SUBTITLES"] = "1"
os.environ["SNIPPET_CAST_PAUSE"] = "0.6"
os.environ["SNIPPET_CAST_OUTPUT_DIR"] = "./videos"

set in one notebook cell, applies to every %%snippet-cast cell after it (picked up fresh each time, so setting it in a later cell still works).

Runs are quiet by default — the per-beat progress and every note: need -v/--verbose. A snippet that won't compile or raises part-way still reports on stderr, as do errors. The other shipped defaults are --tts say (macOS; pass --tts silent elsewhere) and --order exec, which highlights each line on the way in and again on the way out, in the order Python visits them; --order source gives the plain top-to-bottom playback.

Toggle flags (--every, --subtitles, --typing, --record, --export-script) accept --no-X to override an env-var-forced default back off for one run.

Development

This repository is built from the munch-group library template.

Initial set up

pixi run init

Get updates to upstream fork

Add upstream if not already added

git remote add upstream https://github.com/munch-group/snippet-cast.git

Fetch upstream changes

git fetch upstream

Either rebase your changes on top of upstream (cleaner history)

git rebase upstream/main

Or, merge upstream into your fork (preserves history)

git merge upstream/main

If you want to see what's changed upstream before applying:

git log HEAD..upstream/main

See the actual diff

git diff HEAD...upstream/main

Then push your updated fork:

git push origin main

If you rebased and need to force push

git push origin main --force-with-lease

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

snippet_cast-0.1.56.tar.gz (618.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

snippet_cast-0.1.56-py3-none-any.whl (98.3 kB view details)

Uploaded Python 3

File details

Details for the file snippet_cast-0.1.56.tar.gz.

File metadata

  • Download URL: snippet_cast-0.1.56.tar.gz
  • Upload date:
  • Size: 618.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for snippet_cast-0.1.56.tar.gz
Algorithm Hash digest
SHA256 b935cd700ea9edc9cca47b6049b8fd7e5cad40cc08e7a293659c934f7b80cccb
MD5 864dcd6538d196c8bc049d5242d6a89e
BLAKE2b-256 1ab37536af4e889ec266549dab49b78f28e375cedc51adab7d332c00f03ab0e1

See more details on using hashes here.

File details

Details for the file snippet_cast-0.1.56-py3-none-any.whl.

File metadata

  • Download URL: snippet_cast-0.1.56-py3-none-any.whl
  • Upload date:
  • Size: 98.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for snippet_cast-0.1.56-py3-none-any.whl
Algorithm Hash digest
SHA256 26ecf7e1ca973e33327ec4a2461323395092848961ea71b75957b31671df6f31
MD5 4c4cefae44d3e7d14bb662b550db27d3
BLAKE2b-256 da1c9f43319cbd69066cb48ab88b78a75566a66a6e740daac9316b58037c9e25

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.56 This release

2 files

0.1.55

2 files

0.1.54

2 files

0.1.53

2 files

0.1.52

2 files

0.1.51

2 files

0.1.50

2 files

0.1.49

2 files

0.1.47

2 files

0.1.45

2 files

0.1.43

2 files

0.1.41

2 files

0.1.39

2 files

0.1.37

2 files

0.1.35

2 files

0.1.33

2 files

0.1.31

2 files

0.1.29

2 files

0.1.25

2 files

0.1.24

2 files

0.1.22

2 files

0.1.20

2 files

0.1.18

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page