Simulating TV noise
Create video and audio noise, artifacts, and errors with ffmpeg Noise Using filters The geq (video “generic equation”) filter (with nullsrc as its “blank canvas”) can create video noise, and the aevalsrc filter can create white noise audio: ffmpeg -f lavfi -i nullsrc=s=1280×720 -filter_complex \ “geq=random(1)*255:128:128;aevalsrc=-2+random(0)” \ -t 5 output.mkv Note that this will create … Read more