What's a nice and easy program to use to convert videos to...

What's a nice and easy program to use to convert videos to .webm without having to fiddle around unnecessary settings and bloated UI's?

Attached: serveimage.png (512x512, 15K)

Other urls found in this thread:

gitgud.io/nixx/WebMConverter
webmproject.org/tools/
github.com/ElegantMonkey/mpv-webm
github.com/Kagami/boram
twitter.com/SFWRedditImages

I think CloudConvert has a .webm option. I personally use the .webm plugin for Adobe Premiere.

ffmpeg

webm.lua

it's a script for mpv

Attached: YM 03.jpg (402x787, 128K)

gitgud.io/nixx/WebMConverter

this

ffmpeg

ffmpeg -i input.mp4 -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis output.webm

webmproject.org/tools/

Ffmpeg is absolutely amazing. I use this:

ffmpeg -i in.mp4 -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis out.webm

If you dont want to set up environmental variables and stuff, just download ffmpeg, place videofile you wish to convert in the same folder as the where you downloaded ffmpeg, shift-rightclick in the explorer (outside of file, like rightclick on no file at all) and take 'open powershell window here', then type "./ff" press tab, it should automatically fill out the rest, add the rest of the command.

Graphical webmconverters are shit in quality.

ffmpeg

ffmpeg -i inputfile outputfile.webm
add -c:v libvpx if you want VP8 instead of VP9
-an to remove audio for 4chin

Thanks boyos

Attached: 1482816933332.png (727x682, 168K)

VP8's default settings are trash though. At least specify -crf 10 -b:v x

github.com/ElegantMonkey/mpv-webm

Attached: how to make webm.webm (1366x768, 1.52M)

oh i forgot to mention that you have mute before encoding to make a webm without audio. press m to mute

>spending an hour to make a good webm
>not using a gui

fuck that shit

>spending an hour to make a good webm
What?

Boram is pretty cool, it's also kinda for retards, there's no way you can screw it up, and it's for all platforms

github.com/Kagami/boram

And now you can convert 212341 files without effort. Don't be dumb user.

>>spending an hour to make a good webm
>What?
Yes, a good webm is a distinct possibility.

I'd love something like this as a standalone software and a seeking bar

ffmpeg -i $1 -c:v libvpx -b:v 1M -c:a $2 libvorbis $1.webm