Skip to content

Instantly share code, notes, and snippets.

View paithiov909's full-sized avatar

Kato Akiru paithiov909

View GitHub Profile
@travelhawk
travelhawk / ffmpeg_commands.md
Last active March 24, 2025 11:30
Collection of ffmpeg commands (basic usage, streaming, advanced usage)

ffmpeg

ffmpeg is a fast video and audio converter that can also grab from a live audio/video source.

Standard usage

Getting help and information

  • -h show all options
  • -h(elp) topic show help
  • -version show version
  • -formats show available formats
@patriciogonzalezvivo
patriciogonzalezvivo / GLSL-Noise.md
Last active April 28, 2025 11:55
GLSL Noise Algorithms

Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);