Previous: >>6080793
Any kind anon mind sharing their creation process for these? Current process takes too long for me
>>6118433I make them with ffmpeg, prompt:ffmpeg.exe -loop 1 -framerate 1/1 -i "C:\cover.jpg" -i "C:\song.flac" -map 0 -map 1:a -c:v libvpx-vp9 -vf format=yuv420p -c:a libopus -b:a 128k -shortest "C:\output.webm"In addition to the file paths, you can also change the bit rate (128k in this example). It's relatively quick this way.
>>6118438Thanks!