-
Archives
- June 2026
- December 2024
- January 2022
- December 2021
- May 2020
- April 2020
- March 2020
- April 2019
- December 2017
- July 2016
- March 2016
- February 2016
- September 2015
- May 2015
- June 2014
- May 2014
- February 2014
- January 2014
- December 2013
- October 2013
- September 2013
- July 2013
- June 2013
- April 2013
- March 2013
- February 2013
-
Meta
Author Archives: jdriselvato
(FFmpeg) How to trim ‘x’ seconds from the end of an audio track?
Note: Trimming at this point should be easily understood but for a refresher refer to answers in How to trim ‘x’ seconds from the start of an audio track?. Trimming a couple of seconds off the end of a track … Continue reading
Posted in Programming, Tutorial
Tagged FFmpeg
Comments Off on (FFmpeg) How to trim ‘x’ seconds from the end of an audio track?
(FFmpeg) How to trim ‘x’ seconds from the start of an audio track?
Here we’ll use an input file with a 1 minute duration with a 5 second introduction of silence. To remove that silence, it’s important to identify these two numbers because trimming requires tricky subtraction. Let’s look at the example below: … Continue reading
(FFmpeg) How to record a MacOS Screen with terminal?
In this post you’ll learn how to record the screen of your Mac with terminal using FFMPEG. FFMPEG is able to use avfoundation (the audio and video library) to access webcams, audio devices and to record the screen. FFMPEG doesn’t … Continue reading
Posted in Programming, Tutorial
Tagged FFmpeg
Comments Off on (FFmpeg) How to record a MacOS Screen with terminal?
(FFmpeg) How to merge multiple mp3s into one track?
Merging audio with FFMPEG is one of the most searched questions on the internet and couldn’t be any easier. The only difference is a txt file with a list of mp3 tracks must be made before the merging can begin. … Continue reading
Posted in Programming, Tutorial
Tagged FFmpeg
Comments Off on (FFmpeg) How to merge multiple mp3s into one track?
(FFmpeg) How to convert wav to mp3?
WAV is probably the most common audio format next to MP3. The WAV format has been developed and maintained by Microsoft and IBM since its initial release in 1991. wav files are known for their large file size due to … Continue reading
(FFmpeg) How to convert FLAC to mp3?
FLAC (Free Lossless Audio Codec) is another free audio codec and container that is known for it’s lossless audio quality. Oddly enough, FLAC is also maintained and developed by the xiph.org foundation. Other than FLACs inconvenience of player support, audiophiles … Continue reading
(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