FFmpeg output enforces main profile

Penguin414

New Member
I encoded using h264_nvenc in ffmpeg but it only outputs the main profile.

My encoder settings
-preset:v p4 -profile:v high -rc:v vbr -rc-lookahead 1 -spatial-aq 0 -temporal-aq 1 -cq 23 -weighted_pred 0 -coder cabac -b_ref_mode 2 -dpb_size 4 -multipass 0 -g 15 -bf 2 -pix_fmt yuv420p -color_range tv -color_primaries bt709 -color_trc bt709 -colorspace bt709 -ignore_editlist 1 -movflags +faststart
 

Penguin414

New Member
It seems that the syntax was the cause.
It was fixed by writing like this.
preset=p4 profile=high rc=vbr rc-lookahead=1 spatial-aq=0 temporal-aq=1 cq=23 weighted_pred=0 coder=cabac b_ref_mode=2 dpb_size=4 multipass=0 g=120 bf=2 color_range=tv color_primaries=bt709 color_trc=bt709 colorspace=bt709
 
Top