I am very attracted to the idea of using completely free codecs. How do I convert my .mp4
files to .ogv
using FFmpeg under Xenial Xerus using these free codecs?
I am interested in:
- Converting a single mp4 file
- Converting a folder with many mp4 files
First install FFmpeg by running the following in a Terminal window:
Then change to the same folder as your mp4 file(s) and run either of the following:
1. For a single mp4 file:
Of course change
input.mp4
to the actual filename of your input video file!2. For many mp4 files:
Options to experiment with:
-qscale:v
(for video quality) takes integers from 0 - 10 with 0 being lowest quality and 10 the highest quality-qscale:a
(for audio quality) takes integers from 0 - 10 with 0 being lowest quality and 10 the highest qualityAnd enjoy the feeling of using libtheora and libvorbis, both codecs completely unencumbered and totally free :)
References: