not_IO@lemmy.blahaj.zone to Lemmy Shitpost@lemmy.worldEnglish · 2 months agome btwlemmy.blahaj.zoneimagemessage-square41fedilinkarrow-up1377arrow-down111
arrow-up1366arrow-down1imageme btwlemmy.blahaj.zonenot_IO@lemmy.blahaj.zone to Lemmy Shitpost@lemmy.worldEnglish · 2 months agomessage-square41fedilink
minus-squareWolfLink@sh.itjust.workslinkfedilinkarrow-up11·2 months agoCompress video to a broadly compatible format: ffmpeg -i input -c:v libx264 -pix_fmt yuv420p -crf 25 -preset slow -c:a libfdk_aac -b:a 128k output.mp4 This incantation is what I end up needing 99% of the time I do something with ffmpeg.
minus-squareBillegh@lemmy.worldlinkfedilinkarrow-up2·2 months agoI’ve been a fan of libsvtav1 lately.
minus-squareWolfLink@sh.itjust.workslinkfedilinkarrow-up2·edit-22 months agoI ran a comparison between libsvtav1 and h264 and h265 and found that libsvtav kinda sucks. It does produce smaller file sizes at h265, but it tends to add a visible blur.
minus-squareBillegh@lemmy.worldlinkfedilinkarrow-up1·2 months agoMight be what you’re encoding. So far pretty much everything I’ve done has been visually indistinguishable (to me and my wife). Most of the content I’ve been encoding is anime, however.
minus-squareWolfLink@sh.itjust.workslinkfedilinkarrow-up2·2 months agoI should try it on anime. I was using it on phone videos.
Compress video to a broadly compatible format:
ffmpeg -i input -c:v libx264 -pix_fmt yuv420p -crf 25 -preset slow -c:a libfdk_aac -b:a 128k output.mp4This incantation is what I end up needing 99% of the time I do something with ffmpeg.
I’ve been a fan of
libsvtav1lately.I ran a comparison between libsvtav1 and h264 and h265 and found that libsvtav kinda sucks.
It does produce smaller file sizes at h265, but it tends to add a visible blur.
Might be what you’re encoding. So far pretty much everything I’ve done has been visually indistinguishable (to me and my wife). Most of the content I’ve been encoding is anime, however.
I should try it on anime. I was using it on phone videos.