Skip to content

Commit

Permalink
Bump version number and undo some changes to get things working
Browse files Browse the repository at this point in the history
  • Loading branch information
tgorgdotcom committed Aug 26, 2021
1 parent 73881c8 commit e57aead
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/l2p_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ def wrapper_func(self, *args, **kwargs):


def get_version_str():
return '0.6.6'
return '0.6.7'
9 changes: 4 additions & 5 deletions lib/tuner_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit e57aead

Please sign in to comment.