skip to Main Content

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…

VIEW QUESTION

How to build ffmpeg with hardware decoding support for raspberry pi? (cross compilation if possible) – Debian

Is it possible to build ffmpeg with decoding support for Raspberry Pi? I've read that mmal can do hardware accelerated decoding on the Raspberry Pi. I've tried on debian 10 x86_64: ./configure --prefix=${BUILD_DIR}/desktop/${FFMPEG_ARCH_FLAG} --disable-doc --enable-cross-compile --cross-prefix=${CROSS_PREFIX} --target-os=linux --arch=${FFMPEG_ARCH_FLAG} --extra-cflags="-O3 -fPIC…

VIEW QUESTION
Back To Top
Search