From 455159a69961abdee13b090480943ed231fd5045 Mon Sep 17 00:00:00 2001 From: jb-alvarado <jb@pixelcrusher.de> Date: Fri, 28 Jan 2022 07:56:25 +0100 Subject: [PATCH] no lower third when zmq is missing --- ffplayout/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ffplayout/utils.py b/ffplayout/utils.py index 9821a971..b8f83b2f 100644 --- a/ffplayout/utils.py +++ b/ffplayout/utils.py @@ -582,7 +582,8 @@ def validate_ffmpeg_libs(): if 'tpad' not in FF_LIBS['filters']: logger.error('ffmpeg contains no tpad filter!') if 'zmq' not in FF_LIBS['filters']: - logger.error( + lower_third.add_text = False + logger.warning( 'ffmpeg contains no zmq filter! Text messages will not work...')