• Stars
    star
    233
  • Rank 166,638 (Top 4 %)
  • Language
    Python
  • License
    BSD 3-Clause "New...
  • Created almost 9 years ago
  • Updated about 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Render a ShaderToy script directly to a video file.

shadertoy-render

docs/example.jpg

A simple Python script that uses ffmpeg as a subprocess to render ShaderToy scripts into video files. After grabbing the file from the repository, you can run it as follows:

> python shadertoy-render.py example.glsl example.mp4

Command-line arguments are documented with the -h switch, for example:

  • --size β€” Resolution of the render window, for example 1920x1080.
  • --duration β€” Total length of the output video in seconds, e.g. 45.0.
  • --rate β€” Number of frames per second used during rendering, e.g. 60.
  • --verbose β€” Show the full output of ffmpeg in verbose mode.

Example of more advanced usage:

> python shadertoy-render.py in.glsl out.mp4 --size=1920x1080 --rate=60 --duration=120.0

It should run on Linux and OSX where ffmpeg is in the path, on Windows with minor changes assuming the binary is found. Python dependencies include numpy and vispy, which you can install them with PIP as follows:

> pip install numpy vispy

The output is a MP4 file with default encoding settings, which you can upload to YouTube for example. See the source code for details!

  1. Source ShaderToy script by Inigo Quilez.
  2. Rendered Video at 1080p uploaded to YouTube.

Feedback or comments are welcome; just submit a ticket or follow @alexjc on Twitter.