ffmpeg pipe images to redis
I need to find a way to save ffmpeg frames into redis variable. Currently I'm piping png images from ffmpeg to redis but it concatenate all images: ffmpeg -re -i udp://127.0.0.1:5545 -c:v png -r 1 -update 1 - | redis-cli…