mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Update split_silence.py
This commit is contained in:
parent
deceaa2e43
commit
e872c76b8e
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user