This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Glittery Hills | |
* C010011012 (@cmarangu) 2019 12/8 | |
* Looped animation inspired by Eteinne Jacob | |
* works in Processing.org (download) | |
**/ | |
float arg; | |
float altarg; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Video to Frames | |
// C010011012 (@cmarangu) 2020 3/10 | |
// can use with my rollingshutter.pde | |
import java.util.ArrayList; | |
import processing.video.*; | |
ArrayList<PImage> imgs; | |
Movie mov1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Frames to Rolling Shutter | |
// Chase Marangu aka C010011012 aka cmarangu | |
// 2020 4/22 | |
// SET NUMBER OF FRAMES HERE | |
int FRAMES = 75; | |
// optional multisampling - 1 is grainy, 10 is blurry and lags when generating | |
// u find the balance | |
int SAMPLES = 1; |