can someone convert this song to webm for me?>https://youtu.be/2Uy34s1FJUI?si=RNYoeBAjGeyiq1Wu
>>1502808Let us be clear here. You want to convert THE song into webm and not the video?
>>1502830the video as well please.
>>1502808>Error: Maximum file size allowed is 4 MB
>>1502808
>>1502895amazing! thank you!
>>1502896that's not amazing at all, that encode looks like shit
>>1502897ok, then fix it.
>>1502899
>>1502910thanks
>>1502910Did you do both?how do you make it looks better?
>>1502960NTA but here's my webm. I downloaded the video with yt-dlp and converted it with ffmpeg.#show different files available on youtube, choose id numbers (303+250)yt-dlp -F https://youtu.be/2Uy34s1FJUI?si=RNYoeBAjGeyiq1Wu#download best quality 1080p60 vp9 video with mediocre quality 63kbps opus audioyt-dlp -f 303+250 https://youtu.be/2Uy34s1FJUI?si=RNYoeBAjGeyiq1Wu#see https://trac.ffmpeg.org/wiki/Encode/VP9; two-pass, deadline and additionally:#-vf mpdecimate [and] -vsync vfr [to discard duplicate frames]#-vf scale=640:-2 [to scale to 640px width]#-c:a copy [to copy the mediocre quality opus audio and avoid additional lossy to lossy conversion]ffmpeg -i "Petters on the Low [2Uy34s1FJUI].webm" -vf "mpdecimate,scale=640:-2" -c:v libvpx-vp9 -b:v 0 -crf 57 -deadline best -vsync vfr -pass 1 -an -f null /dev/null && ffmpeg -i "Petters on the Low [2Uy34s1FJUI].webm" -vf "mpdecimate,scale=640:-2" -c:v libvpx-vp9 -b:v 0 -crf 57 -deadline best -c:a copy -vsync vfr -pass 2 petters_best.webm
>>1502960I didn't do both, I did the latter
>>1502988Valuable information was written here today.Very clear anon, thanks, Its very good info.I'm guessing the first one is done with ffmpeg too withouth the two-pass you did.Thanks a lot again.I have learned a lot.Take care anon.
>>1502988>>1502910I can't really tell the difference but thanks for the info