Miten muunnan how to convert video format mp4 to webm with linux

Miten muunnan how to convert video format mp4 to webm with linux

How to convert videos from mp4 to webm  = HTML5

Like this on a linux terminal (command line),

 

Näin muunnat mp4 videon linux pääteessä eli komentoriviltä webm muotoon eli HTML5 videoksi:

asenna ensin ffmpeg (install first ffmpeg):

sudo apt update

sudo apt install ffmpeg

 

muunna video , convert video:

 

ffmpeg  -i input.mp4  -b:v 0  -crf 30  -pass 1  -an -f webm /dev/null


ffmpeg  -i input.mp4  -b:v 0  -crf 30  -pass 2  output.webm