Zend certified PHP/Magento developer

FFmpeg combining multiple -vf filters

I currently have two filters that work great when used individually:

ffmpeg -i "D:imageSequencesA.jpg" -vf scale=out_color_matrix=bt709,eq=gamma=1:saturation=1 -color_primaries bt709 -color_trc bt709 -colorspace bt709 "D:masterFolderA.mp4"

and

ffmpeg -i "D:imageSequencesA.jpg" -vf "crop=trunc(iw/2)*2:trunc(ih/2)*2" "D:masterFolderA.mp4"

Would it, please, be possible to get help combining these two operations into a single command? Following similar existing threads didn’t work, as none seemed to use the color profile operators present on the first command line.
I’m working on Windows’ CMD.

Many thanks for your help!