From e57aeadae2ce6bbd92b515038da805209838cf1f Mon Sep 17 00:00:00 2001 From: Thomas Gorgolione Date: Wed, 25 Aug 2021 23:29:52 -0400 Subject: [PATCH] Bump version number and undo some changes to get things working --- lib/l2p_tools.py | 2 +- lib/tuner_interface.py | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/l2p_tools.py b/lib/l2p_tools.py index 7cad347..e8caa26 100644 --- a/lib/l2p_tools.py +++ b/lib/l2p_tools.py @@ -35,4 +35,4 @@ def wrapper_func(self, *args, **kwargs): def get_version_str(): - return '0.6.6' + return '0.6.7' diff --git a/lib/tuner_interface.py b/lib/tuner_interface.py index 61e70c7..344ea43 100644 --- a/lib/tuner_interface.py +++ b/lib/tuner_interface.py @@ -340,14 +340,13 @@ def do_tuning(self, sid): ffmpeg_command = [self.config['main']['ffmpeg_path'], "-i", channelUri, - "-rtbufsize", config["main"]['ffmpeg_buffer'], + #"-rtbufsize", config["main"]['ffmpeg_buffer'], "-c:v", "copy", "-c:a", "copy", "-f", "mpegts", - "-nostats", - "-hide_banner", - "-loglevel", "warning" if not self.config['main']['verbose'] else "verbose", - "pipe:1"].extend(variable_options) + "-nostats", "-hide_banner", + "-loglevel", "warning", #if not self.config['main']['verbose'] else "verbose", + "pipe:1"] #.extend(variable_options) ffmpeg_proc = subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE)