Update split_silence.py

This commit is contained in:
S.Mohammad Emami Razavi 2024-11-07 10:29:11 +03:30 committed by GitHub
parent deceaa2e43
commit e872c76b8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)