I'm using attached script to see if there are any errors in the video.
Michal
On 02/10/2011 01:59 AM, Tobias Grimm wrote:
Am Montag, den 10.01.2011, 20:19 +0100 schrieb Tobias Grimm:
Is there a patch/plugin/tool/whatever which would make VDR somehow tag
recordings where there were stream-error when recording?
It shouldn't be too hard to scan a *.ts-File for discontinuity errors,
but I would like to make VDR detect this while recording and somehow set
a flag, so I can see if a recording might have errors.
No idea anyone?
What else besides continuity errors could be checked, to see if a TS
recording has errors?
Tobias
_______________________________________________
vdr mailing list
vdr@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
#!/bin/bash
FILE=${1:-0*.ts}
cat $(ls -1 ${FILE} | sort -n) | ffmpeg -er 2 -i /dev/stdin -f null /dev/null 2>&1 | tee ffmpeg.log
_______________________________________________
vdr mailing list
vdr@xxxxxxxxxxx
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr