Add files via upload

This commit is contained in:
Akash Bora
2025-08-09 15:47:34 +05:30
committed by GitHub
parent d99908cd76
commit 08fb701a44
16 changed files with 466 additions and 34 deletions

View File

@@ -1,4 +1,4 @@
// dd_ring_buffer.js
// buffer.js
// works kinda like an audio delay
// stacks the previous n frames into a buffer

View File

@@ -1,4 +1,4 @@
// dd_delay.js
// delay.js
// works kinda like an audio delay
// stacks the previous n frames into a buffer

View File

@@ -1,4 +1,4 @@
// dd_RandomDamage(invertRandomN).js
// invertReverse.js
// invert x and y component of mv for random number of frames if threshold met for frame
let threshold = 95;

View File

@@ -1,4 +1,4 @@
// dd_mirror_X.js
// mirror_X.js
// clean buffer :
var buffer = [ ];

View File

@@ -1,4 +1,4 @@
// dd_MultiplySlowest_50.js
// noise.js
// Multiply slowest moving mv's
var LARGEST = 0;
var SOME_PERCENTAGE = 0.5;

View File

@@ -1,4 +1,4 @@
// dd_sheer.js
// sheer.js
var ZOOM = -20;

View File

@@ -1,5 +1,5 @@
// dd_RandomDamage(antiGrav).js
// anitgravityify if threshold met for frame
// shift.js
// anitgravitify if threshold met for frame
let threshold = 98;
// global variable holding forward motion vectors from previous frames

View File

@@ -1,4 +1,4 @@
// dd_zero.js
// sink.js
// only mess frames if mv > movement_threshold
var movement_threshold = 3;
function glitch_frame(frame)

View File

@@ -1,4 +1,4 @@
// dd_slam_zoom_in.js
// slam_zoom.js
var ZOOM = 20;

View File

@@ -1,4 +1,4 @@
// dd_RandomDamage(progZoom).js
// slice.js
// progressive Zoom x and y components of mv if threshold met for frame
let threshold = 95;

View File

@@ -1,4 +1,4 @@
// dd_RandomDamage(stopXY).js
// stop.js
// stop x and y component of mv for n framesif threshold met for frame
let threshold = 95;

View File

@@ -1,4 +1,4 @@
// dd_zoom_in.js
// zoom.js
var ZOOM = 20;