General question, is there a way to resize Lucy's 4k video to 1080 x 2400 or similar?
I would like my potato pc to run those 4k, but nope :'
You can use ffmpeg. Put bat file in folder with video with this command. It will convert all mp4 files to mkv 1920 x 1080.
chcp 65001
for /R %%i in (*.mp4) do (
C:\ffmpeg\ffmpeg.exe -y -i "%%i" -r 60 -c:v libx264 -preset slow -tune animation -b:v 20000K -crf 18 -vf "scale='min(1920,iw)':'min(1080,ih)':force_original_aspect_ratio=decrease,pad=width=ceil(iw/2)*2:height=ceil(ih/2)*2" "%%~pi%%~ni-converted.mkv"
)