I am mixing two files(a,b) into one output(c) using FFmpeg. As it takes a long time to mixing a file I would like to display a progress bar. Can someone please guide me on how to go about the same?
String fileMixCommand= "-i "+ a +" -stream_loop -1 -i "+ b +" -filter_complex amix=inputs=2:duration=first:dropout_transition=0 "+ c;