skip to Main Content

Channels_redis causing the error AttributeError: 'Redis' object has no attribute 'bzpopmin'

I am facing the following error message on my Django application: Exception inside application: 'Redis' object has no attribute 'bzpopmin' Traceback (most recent call last): File "/home/jack/.conda/envs/GuessWhich/lib/python3.7/site-packages/channels/staticfiles.py", line 44, in __call__ return await self.application(scope, receive, send) File "/home/jack/.conda/envs/GuessWhich/lib/python3.7/site-packages/channels/routing.py", line 71,…

VIEW QUESTION

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
Back To Top
Search