채재원
Results
2
comments of
채재원
Did you solve this problem?
```python def decode_audio(in_filename, **input_kwargs): try: out = (ffmpeg .input(in_filename, **input_kwargs) .filter('asetpts', 'PTS-STARTPTS') .output('pipe:', format='f32le', acodec='pcm_s32le', ac=1, ar='48k') .global_args('-y', '-loglevel', 'panic') .overwrite_output() .run_async(pipe_stdout=True) ) while True: in_bytes = out.stdout.read(4*48000) if not...