I’ve processed a lot of video files and I always convert to mkv before I’m finished.
I recently had occasion to notice there is a large time difference between processing files with a command line and using the mkvtoolnix GUI. The command line typically takes 4-5 times as long as the GUI. Why?
My command line, used in a bash script in Windows WSL/Ubuntu:
“find . -name “.mp4" -exec bash -c 'for f; do mkvmerge --output "${f%.}.mkv” “$f”;done’ – {} +”
Thank you