I am trying to compress my mxf file sized with 58GB to mp4 file in order to get smaller file. By the way I need to protect 4 of 5 streams(only videos) in my original mxf file. It takes 1 hour to compress and I am using a command like below.
I tried some commands and hardware accelerator option.
ffmpeg -loglevel error -hwaccel qsv -i filename.mxf -map 0.0 -map 0.1 -map 0.2 -map 0.3 -map 0.4 -c:v h264_qsv -preset veryfast outputfile.mp4
Is there any option that I can make it faster and smaller size? Thank you.