The filename of the audio file will be the same as the mp4 video with the correct extension. The mp4 extension will be removed and replaced by the mp3 extension e.g hi.mp4 will become hi.mp3
If you need to extract the audio from an .MP4 movie file to an .OGG audio file you can execute the following: FILE="the-file-you-want-to-process.mp4"; ffmpeg -i "${FILE}" -vn -acodec libvorbis -y "${FILE%.mp4}.ogg" The first command will assign the file name to a variable, we do this to avoid typing errors in…
We needed to shrink a bunch of mp4 videos so that they would have the same size as the screen of an android device. We did that both to save space on the internal memory of the device and to make the device perform as efficient as possible as it…
When working with video files, there are times when you need to convert them from one format to another or modify them in some other way. One of the most popular tools for this is ffmpeg. This command-line tool can do a lot of things related to video processing, including…