Turn a video into pixel art style
useful tips
// scenario
Downscale and upscale with nearest-neighbor to get a chunky pixel art look.
// shell
$ ffmpeg -i input.mp4 -vf "scale=iw/10:ih/10:flags=neighbor,scale=iw*10:ih*10:flags=neighbor" output.mp4Downscale and upscale with nearest-neighbor to get a chunky pixel art look.
$ ffmpeg -i input.mp4 -vf "scale=iw/10:ih/10:flags=neighbor,scale=iw*10:ih*10:flags=neighbor" output.mp4