Is there any way to get estimated time to completion?
Hi, I was wondering if we can get the real time output of the remaining time to completion in ffmpeg-python?
For example, this is the code.
import ffmpeg
video_part = ffmpeg.input(<<VIDEO_PATH>>)
audio_part = ffmpeg.input(<<AUDIO_PATH>>)
ffmpeg.output(audio_part, video_part, <<OUTPUT_PATH>>).overwrite_output().run_async(pipe_stdout=True)
And I want something like this:
ETA: 2:36
Is it possible? Sorry if it's duplicate.