>>559
Hmm, I think it's mostly because I do a 2-pass by adding "-pass 1 -f null NUL", render it and then changing it to "-pass 2 -f webm kill.webm"
Also the original was in 60 fps, but I wanted to preserve a little bit more quality so I chose to cut it down to 50 fps.
So everything looked something like this:
ffmpeg -i kill.mkv -metadata title="Please Kill My Love" -r 50 -c:v libvpx -crf 24 -b:v 420k -vf scale=-1:360 -c:a libvorbis -q:a 1 -pass 1 -f null -y NUL
ffmpeg -i kill.mkv -metadata title="Please Kill My Love" -r 50 -c:v libvpx -crf 24 -b:v 420k -vf scale=-1:360 -c:a libvorbis -q:a 1 -pass 2 -f webm -y kill.webm
I'm not very good at ffmpeg so there might be some things in that code which are meaningless, but it works so I'm not complaining.