The Jam is planned the {Date}
The Shader Royale Jam will be using the latest networked version of Bonzomatic. You can download the program here:
- https://github.com/wrightwriter/Bonzomatic-Compute/releases/tag/v1.0.1 - Get this one by default
The Jam is planned the {Date}
The Shader Royale Jam will be using the latest networked version of Bonzomatic. You can download the program here:
| scale=720:-2 |
Because of implementation of Midi in Bonzomatic and the organisation of MIDI assignment on APCMini faders are overlapping with this pads :
| #!/bin/sh | |
| import os | |
| from pathlib import Path | |
| import argparse | |
| import subprocess | |
| def _gif_this(source_file, output, start_time, end_time, duration, fps, scale): | |
| """ | |
| http://blog.pkh.me/p/21-high-quality-gif-with-ffmpeg.html |
| #!/bin/sh | |
| set -x | |
| #Download media + metadata | |
| youtube-dl --write-info-json -x --audio-format mp3 -o "tmp_out.%(ext)s" $1 | |
| # Maybe a way to get the file name from previous function | |
| INFO="tmp_out.info.json" | |
| AUDIO="tmp_out.mp3" | |
| echo :: $INFO $AUDIO :: |
| ==| 2021-08-13 @ 10:00 |== | |
| Pacific/Midway | |
| Pacific/Niue | |
| Pacific/Pago_Pago | |
| Pacific/Samoa | |
| US/Samoa | |
| ==| 2021-08-13 @ 11:00 |== | |
| Pacific/Honolulu | |
| Pacific/Johnston | |
| Pacific/Rarotonga |
| #version 410 core | |
| uniform float fGlobalTime; // in seconds | |
| uniform vec2 v2Resolution; // viewport resolution (in pixels) | |
| uniform float fFrameTime; // duration of the last frame, in seconds | |
| uniform sampler1D texFFT; // towards 0.0 is bass / lower freq, towards 1.0 is higher / treble freq | |
| uniform sampler1D texFFTSmoothed; // this one has longer falloff and less harsh transients | |
| uniform sampler1D texFFTIntegrated; // this is continually increasing | |
| uniform sampler2D texPreviousFrame; // screenshot of the previous frame |
| # Create a texture that concat profile | |
| mogrify -resize 512x512! *.png ; montage -mode concatenate -tile x1 *.png ../tex1.jpg |
| ## Generation of files ## | |
| cat > movies.txt <<EOL | |
| A New Hope (1977) | |
| The Empire Strikes Back (1980) | |
| Return of the Jedi (1983) | |
| The Phantom Menace (1999) | |
| Attack of the Clones (2002) | |
| Revenge of the Sith (2005) | |
| The Force Awakens (2015) |
| #version 150 | |
| in VertexData | |
| { | |
| vec4 v_position; | |
| vec3 v_normal; | |
| vec2 v_texcoord; | |
| } inData; | |
| out vec4 fragColor; |