After some debating, I finally decide to use regular jxl to store my images. How do I make the best visually lossless ones from extracting frames from my videos?
+ Reply to Thread
Results 1 to 8 of 8
-
-
-
Would it be too much for you to do some research rather than be spoon-fed by forum members ?
But do not expect free programs to use these new formats. More likely that commercial-paid programs get a licence and that comes down to what you pay for and, eventually, get.
And you fool noone. Already banned twice. Wanna make it a hattrick ? -
Same like other jpeg commandline encoders - not sure if ffmpeg will adopt jpegli in some predictable future - from my perspective it should but... this show that using even old technology but with new techniques you can deliver way higher quality.
-
Well, I usually use this to make jpg files:
-vf zscale=min=709:m=170m:rin=limited:r=full,format=(d epends on the video) -qmin 1 -qmax 1 -q:v 1 -output%d.jpg
Or, is there ways to make higher quality jpgs? By the way, I used rgb24 for the format and it still makes images. -
Try this:
Code:@setlocal @set FFMPG=%CD%;E:\Media\FF @set PATH=%FFMPG%;%PATH% @set filename=%1 @set OUTDIR="aaa" @if not exist %OUTDIR% (mkdir %OUTDIR%) @ffmpeg -y -an -sn -dn -hide_banner -v 32 -stats -i %filename% -f:v zscale=min=709:m=170m:rin=limited:r=full,format=yuv444p -f image2 -c:v mjpeg -q:v 1 -qscale 1 -intra_matrix 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 -huffman 1 "%OUTDIR%\%~n1_%%06d.jpg" @set OUTDIR="bbb" @if not exist %OUTDIR% (mkdir %OUTDIR%) @ffmpeg -y -an -sn -dn -hide_banner -v 32 -stats -i %filename% -f:v zscale=min=709:m=170m:rin=limited:r=full,format=yuv444p -f image2 -c:v mjpeg -q:v 1 -qscale 1 -huffman 1 "%OUTDIR%\%~n1_%%06d.jpg" @endlocal @pause
Similar Threads
-
JXL Image Sequence
By Jay123210599 in forum Newbie / General discussionsReplies: 4Last Post: 17th Jan 2024, 18:35 -
MPD files and multiple EXO files
By labamba in forum Video Streaming DownloadingReplies: 20Last Post: 29th Dec 2023, 03:16 -
what software to make BD with menus with 4k files
By mikyitalia in forum Authoring (Blu-ray)Replies: 11Last Post: 26th Sep 2023, 02:29 -
I need help decrypt movie files (starzplay) , files included !
By Dazzle Cat in forum Video Streaming DownloadingReplies: 1Last Post: 1st Oct 2020, 18:29 -
How do i convert .srt files to .odt files?
By jooj in forum SubtitleReplies: 2Last Post: 25th Dec 2019, 19:32