tinkering.vandoeselaar.com/
tag / convert
januari 2019
convert m4a to mp3 with ffmpeg

Ffmpeg is a great quick way to convert media files. I often use it to convert audio files to the desired format. the simplest way to use it is like the following example; In the next example I add a codec to convert to mp3; [read more]

mei 2018
FFmpeg Flac to Mp3

This command finds all Flac files and then converts them to mp3 with FFMPEG keeping meta data. find . -name “*.flac” -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \; [read more]