+ Reply to Thread
Results 1 to 6 of 6
-
basic encoding with each:
ffmpeg -i input.mp4 -c:v ffv1 ffv1.mkv
ffmpeg -i input.mp4 -c:v huffyuv huffyuv.mkv
ffmpeg -i input.mp4 -c:v libx264 -qp 0 x264.mkv
ffmpeg -i input.mp4 -c:v libx265 -qp 0 -x265-params lossless=1 x265.mkv
sizes vary depending on the source. But ffv1 is usually smallest, huffyuv biggest, x264 and x265 between them but closer to ffv1. Test for yourself. -
I recall reading a very old thread recently, probably at doom9, where one of the developers said using B frames in lossless mode for x264 always hurts compression and they should be disabled with --bframe 0 because x264 doesn't do it automatically. I don't know for certain that's still the case though.
Edit: From here https://x265.readthedocs.io/en/stable/lossless.html
In HEVC, only QP=4 is truly lossless quantization, and thus when encoding losslesly x265 uses QP=4 internally in its RDO decisions.
What happens when -qp 0 and lossless are specified together?Last edited by hello_hello; 7th May 2024 at 12:53.
Avisynth functions Resize8 Mod - Audio Speed/Meter/Wave - FixBlend.zip - Position.zip
Avisynth/VapourSynth functions CropResize - FrostyBorders - CPreview (Cropping Preview) -
By the way...
Does anyone know why this one (had the smallest filesize of all lossless codecs) was not developed further?
http://www.yuvsoft.com/2d-technologies/lossless-video-codec/
Similar Threads
-
H.264 to H.265
By Jay123210599 in forum Newbie / General discussionsReplies: 2Last Post: 28th Dec 2023, 20:35 -
FFmpeg H.264/265 lossless
By Jay123210599 in forum Newbie / General discussionsReplies: 3Last Post: 7th Dec 2023, 22:01 -
FFV1 - FFmpeg LossLess Encoder Maximum Quality Settings
By Tom4 in forum Video ConversionReplies: 7Last Post: 10th May 2023, 02:32 -
Which is best YULS, FFV1, MSU, Lagarith or Huffyuv for compressing VHS?
By bigbadben in forum Capturing and VCRReplies: 6Last Post: 13th Oct 2020, 17:18 -
Quick sanity check: Lossless to lossless encoding HuffYUV to UTVideo
By nicholasserra in forum Video ConversionReplies: 2Last Post: 20th Aug 2020, 11:41