In my career I often work with various formats per clients' requests, and I normally have plenty of material available online on how to work those formats, mainly from ffmpeg documentation. But this time, I really am at a loss. Ffmpeg has only development references to this code from a few years ago, and nothing on usage material.
I've managed to pad my ffmpeg arguments to produce reasonably matching video format to what they requested in a sample, however, encoding their sample by simply using my parameters, I get bitrate from 248mb/s to 404mb/s, consequently, 593Mb file of 20 seconds jumps to 1Gb.
Most other parameters I've mapped more or less alright.
I came up with the following arguments to my ffmpeg run:
Code: Select all
ffmpeg -i <INPUTFILE.mov> <MY-FILTER> -vcodec cfhd -pix_fmt gbrap12le -field_order progressive -b:v 245699679 -framerate 29.97 -maxrate 245699679 -minrate 245699679 -map_metadata 0 <OUTPUTFILE.mov>