Lately i've posted a lot of questions about how to use ffmpeg. It's pretty clear to me that I am missing some sort background in video encoding and was wondering if any of my fellow superusers had any good resources for studying up on video encoding. What do I need to understand before I can use ffmpeg effectively?
feedback
|
|
First of all, you need to understand which different codecs and formats exist, and what they are typically used for:
You should also look into what makes up video quality in a more general fashion, e.g. how does bit rate, frame rate, or picture size affect the quality? You should then know how to install the latest version of FFmpeg, preferably from the Git sources. There is an extensive tutorial for Ubuntu available. For Windows, there are builds online. For OS X, Homebrew has a formula. Read the FFmpeg documentation and learn the basic command line options. The best free video encoder out there today is x264, and using For encoding, you will then be able to use the presets x264 offers. They are accessible through the FFmpeg options too. There are some main options which come in handy:
You can install a video encoder like Handbrake and see which options it uses. Learn by doing, and try to read up on what all the parameters do.
| ||||
|
feedback
|
