How to set frame encoding method as CABAC in ffmpeg

I am trying to encode H264 video clips using ffmpeg in C. When setting the encoder properties, I don’t see how to set the frame encoding method to CABAC (lossless). Any idea?

Thanks in advance.

+3
source share
1 answer

Set the coder_typeencoder context value FF_CODER_TYPE_AC.

+4
source

All Articles