Re: [FFmpeg-user] Detect Frozen video

2019-05-13 Thread Venkateswaran.S
You can use Freeze detect filter. Link : https://ffmpeg.org/ffmpeg-filters.html#freezedetect Usage: ffmpeg -i freeze.mp4 -vf "freezedetect=n=-60dB:d=2" -map 0:v:0 -f null - -Venkat ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/

Re: [FFmpeg-user] Detect Frozen video

2019-05-13 Thread Roger Pack
On Wed, Nov 28, 2018 at 4:46 AM José María Infanzón wrote: > > Hi All, I'm streaming a live channel and I want to use ffmpeg to monitor > the stream, what I need to check is when the image is frozen. Is there a > way yo achieve this? I've read that I can use blend function, but not sure > how. ff

Re: [FFmpeg-user] Detect Frozen video

2018-11-30 Thread Dmitry Menshikov
Hi to everyone. I may suggest to use our opensource lib written in node.js that monitors end-system. This module tracks frames and can detect absence of frames, encoded bandwith and quality, network bandwith and quality. https://github.com/LCMApps/video-quality-tools сб, 1 дек. 2018 г., 00:36 C

Re: [FFmpeg-user] Detect Frozen video

2018-11-30 Thread Carl Eugen Hoyos
2018-11-30 18:51 GMT+01:00, José María Infanzón : >>> A freeze detect filter have been recently add : >>> https://www.ffmpeg.org/ffmpeg-filters.html#freezedetect >> In which version? I've compiled ffmpeg 4.1 On this mailing list, only current FFmpeg git head is supported (your question is an expl

Re: [FFmpeg-user] Detect Frozen video

2018-11-30 Thread Michael Shaffer
Hi Mustafa, here's a link to a zip file containing the restart program I made. https://github.com/mcshaf01/ffmpeg-stream-restart-tool/blob/master/ffmpeg-restart-tool-v030.zip Setup instructions: Make a directory called c:\ffmpeg\bin\ rename and copy ffmpeg.exe to several different ffmpeg's in the

Re: [FFmpeg-user] Detect Frozen video

2018-11-30 Thread José María Infanzón
Hi Martin, El mié., 28 nov. 2018 a las 9:37, Martin Vignali () escribió: >> >> Le mer. 28 nov. 2018 à 12:46, José María Infanzón a >> écrit : >> >> > Hi All, I'm streaming a live channel and I want to use ffmpeg to monitor >> > the stream, what I need to check is when the image is frozen. Is ther

Re: [FFmpeg-user] Detect Frozen video

2018-11-28 Thread Martin Vignali
Le mer. 28 nov. 2018 à 12:46, José María Infanzón a écrit : > Hi All, I'm streaming a live channel and I want to use ffmpeg to monitor > the stream, what I need to check is when the image is frozen. Is there a > way yo achieve this? I've read that I can use blend function, but not sure > how. > >

Re: [FFmpeg-user] Detect Frozen video

2018-11-28 Thread Mustafa Al Ani
Hi Michael, I'm interested in your way of monitoring the bandwidth, can you share more info please? Regards, Mustafa On Wed, Nov 28, 2018 at 1:16 PM Michael Shaffer wrote: > I don't know if there is a way to use ffmpeg to do it. I use a little > program I made to monitor the bandwidth and if i

Re: [FFmpeg-user] Detect Frozen video

2018-11-28 Thread Michael Shaffer
I don't know if there is a way to use ffmpeg to do it. I use a little program I made to monitor the bandwidth and if it drops off it restarts the stream. I'm using Ubuntu Linux and Python with the sysdig command to get the bandwidth of each individual ffmpeg process. I have 5 ffmpeg's going at once

[FFmpeg-user] Detect Frozen video

2018-11-28 Thread José María Infanzón
Hi All, I'm streaming a live channel and I want to use ffmpeg to monitor the stream, what I need to check is when the image is frozen. Is there a way yo achieve this? I've read that I can use blend function, but not sure how. Thanks! ___ ffmpeg-user mail