-
Archives
-
Meta
Tag Archives: FFmpeg
(FFmpeg) How to convert ogg to mp3?
ogg is an open container format by the xiph.org foundation with no restrictions of software patents. ogg does have a higher quality of audio at smaller file sizes but not commonly supported on physical devices natively (MP3 players, iPhone, etc). … Continue reading
(FFmpeg) How to extract audio from a video?
At times, you may have a video that you wish to extract the audio from. This is easily done by simply converting the video into an audio format. For example: A new argument -vn (no video) is used to ensure … Continue reading
Posted in Tutorial, Programming
Tagged FFmpeg
Comments Off on (FFmpeg) How to extract audio from a video?
(FFmpeg) How to convert an entire directory/folder?
Before getting into learning how to use all the amazing and powerful filters, let’s learn one more useful trick; converting an entire directory. Whether it’s to convert an entire folder or apply a filter to multiple files, cycling through files … Continue reading
Posted in Programming, Tutorial
Tagged FFmpeg
Comments Off on (FFmpeg) How to convert an entire directory/folder?
What is map in FFmpeg? Map explained
The -map functionality is an advanced feature that allows the user to select specific input audio or video that is sent to the output. In addition, virtual streams can be created to apply complex manipulations which can be accessed with … Continue reading
(FFmpeg) How to use filter_complex without losing video quality?
This is one of the most asked questions on google about FFMPEG and for a good reason, by default automatic compression is added depending on the filter. This is usually done to perform the filter quicker as the higher the … Continue reading
(FFmpeg) How to chain multiple filters ?
As you use FFMPEG one command might get the job done but at times applying multiple filters to a video is needed. It is possible to apply one filter at a time constantly referencing the last output file but ideally, … Continue reading
Posted in Programming, Tutorial
Tagged FFmpeg
Comments Off on (FFmpeg) How to chain multiple filters ?
(FFmpeg) How to mix additional audio in an mp4?
Adding an additional audio source on top of the audio already in a video can be accomplished with the amix filter. This might be useful for adding background music to a commentary video as seen in the example below: A … Continue reading
Posted in Programming, Tutorial
Tagged FFmpeg
Comments Off on (FFmpeg) How to mix additional audio in an mp4?
(FFmpeg) How to use filters (-vf/-af vs -filter_complex)?
Converting between one file format to another is extremely useful and might be all that’s needed for your use of FFMPEG but where the real fun begins is in the filters. Filters are used to manipulate audio and video with … Continue reading
Posted in Programming, Tutorial
Tagged FFmpeg
Comments Off on (FFmpeg) How to use filters (-vf/-af vs -filter_complex)?
How to install FFmpeg on Linux?
On Ubuntu or Debian based linux operating systems using apt-get installed makes installation of FFMPEG is easy: This will install the latest FFMPEG package but some linux users will want to install from source. FFMPEG requires compilation and installation of … Continue reading
How to Install FFmpeg on MacOS?
Installation on MacOS is simple for users with homebrew installed. Homebrew is the package manager – users always wanted but yet to have natively. Think of it as an equivalent to apt-get on linux. The installation command is as follows: … Continue reading