├── .gitignore ├── LICENSE ├── README.md ├── free-for-all ├── dd-glitch-assist-scriptsv10 │ ├── Readme.md │ ├── instant_damage │ │ ├── RP_average.js │ │ ├── RP_mv_sink_and_rise.js │ │ ├── dd_AverageBastard.js │ │ ├── dd_AverageBastard2.js │ │ ├── dd_AverageBastard3.js │ │ ├── dd_antiGravity.js │ │ ├── dd_circle.js │ │ ├── dd_circular.js │ │ ├── dd_delay.js │ │ ├── dd_doubleRight.js │ │ ├── dd_doubleSpeed.js │ │ ├── dd_gravity.js │ │ ├── dd_horizontalZoom.js │ │ ├── dd_largestRandom.js │ │ ├── dd_maxZero.js │ │ ├── dd_minZero.js │ │ ├── dd_mirrorX.js │ │ ├── dd_mirrorY.js │ │ ├── dd_onlyFall.js │ │ ├── dd_onlyRise.js │ │ ├── dd_randomiser.js │ │ ├── dd_reverse.js │ │ ├── dd_ringBuffer.js │ │ ├── dd_rotate180.js │ │ ├── dd_rotate180Negative.js │ │ ├── dd_slamZoom.js │ │ ├── dd_splitPhase.js │ │ ├── dd_swap.js │ │ ├── dd_verticalZoom.js │ │ ├── dd_zoomIn.js │ │ ├── dd_zoomInOut.js │ │ ├── dd_zoomOut.js │ │ └── dd_zoomWhoops.js │ ├── random_damage │ │ ├── dd_RandomDamage(180).js │ │ ├── dd_RandomDamage(antiGrav).js │ │ ├── dd_RandomDamage(circular).js │ │ ├── dd_RandomDamage(displaceX).js │ │ ├── dd_RandomDamage(displaceY).js │ │ ├── dd_RandomDamage(double).js │ │ ├── dd_RandomDamage(grav).js │ │ ├── dd_RandomDamage(invert).js │ │ ├── dd_RandomDamage(invertN).js │ │ ├── dd_RandomDamage(invertRandomN).js │ │ ├── dd_RandomDamage(progDisplaceX).js │ │ ├── dd_RandomDamage(progDisplaceY).js │ │ ├── dd_RandomDamage(progSlamZoom).js │ │ ├── dd_RandomDamage(progZoom).js │ │ ├── dd_RandomDamage(random).js │ │ ├── dd_RandomDamage(randomMultiple).js │ │ ├── dd_RandomDamage(randomX).js │ │ ├── dd_RandomDamage(randomY).js │ │ ├── dd_RandomDamage(randomZoom).js │ │ ├── dd_RandomDamage(shear).js │ │ ├── dd_RandomDamage(slamZoom).js │ │ ├── dd_RandomDamage(sliceHB).js │ │ ├── dd_RandomDamage(sliceHT).js │ │ ├── dd_RandomDamage(sliceVL).js │ │ ├── dd_RandomDamage(sliceVR).js │ │ ├── dd_RandomDamage(stop).js │ │ ├── dd_RandomDamage(stopX).js │ │ ├── dd_RandomDamage(stopXY).js │ │ ├── dd_RandomDamage(stopXYSmash).js │ │ ├── dd_RandomDamage(stopY).js │ │ ├── dd_RandomDamage(swap).js │ │ ├── dd_RandomDamage(swapN).js │ │ ├── dd_RandomDamage(swapRandomN).js │ │ ├── dd_RandomDamage(twitch).js │ │ ├── dd_RandomDamage(wave).js │ │ ├── dd_RandomDamage(wave2).js │ │ └── dd_RandomDamage(zoom).js │ └── selective_damage │ │ ├── dd_BlurFastest.js │ │ ├── dd_BlurSlowest.js │ │ ├── dd_MultiplyFastest.js │ │ └── dd_MultiplySlowest.js ├── helpers.mjs ├── mb_type-midi.js ├── midi.js ├── midi_v2.js ├── mv_average.js ├── mv_average_0.10.js ├── mv_avgpan.js ├── mv_sink.js ├── offset.js ├── pict_types-midi.js ├── pict_types.js ├── sdl.js ├── snes.js └── vf_script │ ├── pixelsort_gbrp-midi.js │ ├── pixelsort_gbrp.js │ └── pixelsort_yuv444p.js ├── fubar2k23 ├── helpers.mjs ├── mb_type-midi.js ├── midi.js ├── mv_average.js ├── mv_average.sh ├── mv_pan.js ├── mv_pan.sh ├── pixelsort.js └── pixelsort.sh ├── mv_server ├── mv_producer.js ├── mv_receiver.js └── mv_server.py └── tutorial ├── CEP00109_mpeg4.avi ├── lena.jpg ├── lena.png ├── readme.md ├── readme_linux.md ├── readme_macos_aarch64.md ├── readme_macos_x86_64.md ├── readme_windows.md ├── scripts ├── helpers │ └── midi.js ├── jpeg │ ├── dqt.js │ └── q_dc_delta.js ├── mpeg4 │ ├── mb_type_midi.js │ ├── mv_average.js │ ├── mv_pan.js │ ├── mv_pan_midi.js │ ├── mv_sink_and_rise.js │ └── mv_sink_and_rise_fast.js └── png │ └── idat.js └── sh ├── fflive_pipe.sh └── file_to_mpeg4.sh /.gitignore: -------------------------------------------------------------------------------- 1 | bin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/README.md -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/Readme.md -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/RP_average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/RP_average.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/RP_mv_sink_and_rise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/RP_mv_sink_and_rise.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_AverageBastard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_AverageBastard.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_AverageBastard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_AverageBastard2.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_AverageBastard3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_AverageBastard3.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_antiGravity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_antiGravity.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_circle.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_circular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_circular.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_delay.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_doubleRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_doubleRight.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_doubleSpeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_doubleSpeed.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_gravity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_gravity.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_horizontalZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_horizontalZoom.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_largestRandom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_largestRandom.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_maxZero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_maxZero.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_minZero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_minZero.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_mirrorX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_mirrorX.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_mirrorY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_mirrorY.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_onlyFall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_onlyFall.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_onlyRise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_onlyRise.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_randomiser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_randomiser.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_reverse.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_ringBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_ringBuffer.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_rotate180.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_rotate180.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_rotate180Negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_rotate180Negative.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_slamZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_slamZoom.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_splitPhase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_splitPhase.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_swap.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_verticalZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_verticalZoom.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomIn.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomInOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomInOut.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomOut.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomWhoops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/instant_damage/dd_zoomWhoops.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(180).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(180).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(antiGrav).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(antiGrav).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(circular).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(circular).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(displaceX).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(displaceX).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(displaceY).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(displaceY).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(double).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(double).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(grav).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(grav).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(invert).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(invert).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(invertN).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(invertN).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(invertRandomN).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(invertRandomN).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progDisplaceX).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progDisplaceX).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progDisplaceY).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progDisplaceY).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progSlamZoom).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progSlamZoom).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progZoom).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(progZoom).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(random).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(random).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomMultiple).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomMultiple).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomX).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomX).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomY).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomY).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomZoom).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(randomZoom).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(shear).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(shear).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(slamZoom).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(slamZoom).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceHB).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceHB).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceHT).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceHT).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceVL).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceVL).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceVR).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(sliceVR).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stop).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stop).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopX).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopX).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopXY).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopXY).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopXYSmash).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopXYSmash).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopY).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(stopY).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(swap).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(swap).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(swapN).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(swapN).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(swapRandomN).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(swapRandomN).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(twitch).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(twitch).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(wave).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(wave).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(wave2).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(wave2).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(zoom).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/random_damage/dd_RandomDamage(zoom).js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_BlurFastest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_BlurFastest.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_BlurSlowest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_BlurSlowest.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_MultiplyFastest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_MultiplyFastest.js -------------------------------------------------------------------------------- /free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_MultiplySlowest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/dd-glitch-assist-scriptsv10/selective_damage/dd_MultiplySlowest.js -------------------------------------------------------------------------------- /free-for-all/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/helpers.mjs -------------------------------------------------------------------------------- /free-for-all/mb_type-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/mb_type-midi.js -------------------------------------------------------------------------------- /free-for-all/midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/midi.js -------------------------------------------------------------------------------- /free-for-all/midi_v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/midi_v2.js -------------------------------------------------------------------------------- /free-for-all/mv_average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/mv_average.js -------------------------------------------------------------------------------- /free-for-all/mv_average_0.10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/mv_average_0.10.js -------------------------------------------------------------------------------- /free-for-all/mv_avgpan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/mv_avgpan.js -------------------------------------------------------------------------------- /free-for-all/mv_sink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/mv_sink.js -------------------------------------------------------------------------------- /free-for-all/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/offset.js -------------------------------------------------------------------------------- /free-for-all/pict_types-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/pict_types-midi.js -------------------------------------------------------------------------------- /free-for-all/pict_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/pict_types.js -------------------------------------------------------------------------------- /free-for-all/sdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/sdl.js -------------------------------------------------------------------------------- /free-for-all/snes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/snes.js -------------------------------------------------------------------------------- /free-for-all/vf_script/pixelsort_gbrp-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/vf_script/pixelsort_gbrp-midi.js -------------------------------------------------------------------------------- /free-for-all/vf_script/pixelsort_gbrp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/vf_script/pixelsort_gbrp.js -------------------------------------------------------------------------------- /free-for-all/vf_script/pixelsort_yuv444p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/free-for-all/vf_script/pixelsort_yuv444p.js -------------------------------------------------------------------------------- /fubar2k23/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/helpers.mjs -------------------------------------------------------------------------------- /fubar2k23/mb_type-midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/mb_type-midi.js -------------------------------------------------------------------------------- /fubar2k23/midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/midi.js -------------------------------------------------------------------------------- /fubar2k23/mv_average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/mv_average.js -------------------------------------------------------------------------------- /fubar2k23/mv_average.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/mv_average.sh -------------------------------------------------------------------------------- /fubar2k23/mv_pan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/mv_pan.js -------------------------------------------------------------------------------- /fubar2k23/mv_pan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/mv_pan.sh -------------------------------------------------------------------------------- /fubar2k23/pixelsort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/pixelsort.js -------------------------------------------------------------------------------- /fubar2k23/pixelsort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/fubar2k23/pixelsort.sh -------------------------------------------------------------------------------- /mv_server/mv_producer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/mv_server/mv_producer.js -------------------------------------------------------------------------------- /mv_server/mv_receiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/mv_server/mv_receiver.js -------------------------------------------------------------------------------- /mv_server/mv_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/mv_server/mv_server.py -------------------------------------------------------------------------------- /tutorial/CEP00109_mpeg4.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/CEP00109_mpeg4.avi -------------------------------------------------------------------------------- /tutorial/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/lena.jpg -------------------------------------------------------------------------------- /tutorial/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/lena.png -------------------------------------------------------------------------------- /tutorial/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/readme.md -------------------------------------------------------------------------------- /tutorial/readme_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/readme_linux.md -------------------------------------------------------------------------------- /tutorial/readme_macos_aarch64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/readme_macos_aarch64.md -------------------------------------------------------------------------------- /tutorial/readme_macos_x86_64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/readme_macos_x86_64.md -------------------------------------------------------------------------------- /tutorial/readme_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/readme_windows.md -------------------------------------------------------------------------------- /tutorial/scripts/helpers/midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/helpers/midi.js -------------------------------------------------------------------------------- /tutorial/scripts/jpeg/dqt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/jpeg/dqt.js -------------------------------------------------------------------------------- /tutorial/scripts/jpeg/q_dc_delta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/jpeg/q_dc_delta.js -------------------------------------------------------------------------------- /tutorial/scripts/mpeg4/mb_type_midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/mpeg4/mb_type_midi.js -------------------------------------------------------------------------------- /tutorial/scripts/mpeg4/mv_average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/mpeg4/mv_average.js -------------------------------------------------------------------------------- /tutorial/scripts/mpeg4/mv_pan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/mpeg4/mv_pan.js -------------------------------------------------------------------------------- /tutorial/scripts/mpeg4/mv_pan_midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/mpeg4/mv_pan_midi.js -------------------------------------------------------------------------------- /tutorial/scripts/mpeg4/mv_sink_and_rise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/mpeg4/mv_sink_and_rise.js -------------------------------------------------------------------------------- /tutorial/scripts/mpeg4/mv_sink_and_rise_fast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/mpeg4/mv_sink_and_rise_fast.js -------------------------------------------------------------------------------- /tutorial/scripts/png/idat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/scripts/png/idat.js -------------------------------------------------------------------------------- /tutorial/sh/fflive_pipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/sh/fflive_pipe.sh -------------------------------------------------------------------------------- /tutorial/sh/file_to_mpeg4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramiropolla/ffglitch-scripts/HEAD/tutorial/sh/file_to_mpeg4.sh --------------------------------------------------------------------------------