From 4c1e2ed4778fdd8df72a321fde2b40c8c40127c8 Mon Sep 17 00:00:00 2001 From: Calvin Walton Date: Thu, 6 Jun 2019 10:49:27 -0400 Subject: [PATCH] RaP: Reduce ffmpeg output spam in logs of caption inbox --- record-and-playback/core/scripts/rap-caption-inbox.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/record-and-playback/core/scripts/rap-caption-inbox.rb b/record-and-playback/core/scripts/rap-caption-inbox.rb index abad83a508..58a7a7ba51 100755 --- a/record-and-playback/core/scripts/rap-caption-inbox.rb +++ b/record-and-playback/core/scripts/rap-caption-inbox.rb @@ -111,7 +111,7 @@ caption_file_notify = proc do |json_filename| # Convert the received caption file to WebVTT ffmpeg_cmd = [ - 'ffmpeg', + 'ffmpeg', '-y', '-v', 'warning', '-nostats', '-nostdin', '-i', src_filename, '-map', '0:s', '-f', 'webvtt', tmp_dest, ]