From e872c76b8e887e36d2274a7c783c13454125643f Mon Sep 17 00:00:00 2001 From: "S.Mohammad Emami Razavi" Date: Thu, 7 Nov 2024 10:29:11 +0330 Subject: [PATCH] Update split_silence.py --- examples/split_silence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/split_silence.py b/examples/split_silence.py index d87f754..dbc0c77 100755 --- a/examples/split_silence.py +++ b/examples/split_silence.py @@ -61,7 +61,7 @@ def get_chunk_times(in_filename, silence_threshold, silence_duration, start_time ) + ['-nostats'], # FIXME: use .nostats() once it's implemented in ffmpeg-python. stderr=subprocess.PIPE ) - output = remove_non_ascii(p.communicate()[1].decode('utf-8')) + output = remove_non_ascii(p.communicate()[1]).decode('utf-8') if p.returncode != 0: sys.stderr.write(output) sys.exit(1)