From cf8fefba462d01dc91db422de2ce03ffd02b960b Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Sun, 21 Jul 2019 12:05:19 -0300 Subject: [PATCH] =?UTF-8?q?timeout=20is=20specified=20in=20=C5=B3s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit And 3ms is an insanely short time. 3s would be more reasonable. --- record-timestamp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/record-timestamp.sh b/record-timestamp.sh index 78809cc..81a30a6 100755 --- a/record-timestamp.sh +++ b/record-timestamp.sh @@ -31,7 +31,7 @@ ffmpeg \ -nostdin -y \ -analyzeduration 10000 \ -thread_queue_size 512 \ - -i tcp://localhost:11000?timeout=3000 \ + -i tcp://localhost:11000?timeout=3000000 \ -aspect 16:9 \ -map 0:v -c:v:0 mpeg2video -pix_fmt:v:0 yuv420p -qscale:v:0 4 -qmin:v:0 4 -qmax:v:0 4 -keyint_min:v:0 5 -bf:v:0 0 -g:v:0 5 -me_method:v:0 dia \ -map 0:a -c:a mp2 -b:a 384k -ac:a 2 -ar:a 48000 \