I have a raw video. I need it to compress it losslessly. There are two ways to do this. Setting the parameters crf
or qp
to 0. crf
achieves constant bitrate while qp
has constant quantization. I've two questions:
- Do the options
-crf 0
and-qp 0
achieve the same result (lossless compression)? - If not, what is the difference? Which is recommended to have lossless compression?
This question asks about crf
and qp
, but doesn't talk about lossless compression.