Recently, we had this audio file ( mp3) that we wanted to upload to youtube.com. As it is known, youtube does not allow uploading audio files. Taking that into consideration we had to create a video with a static image just to upload the audio file to youtube. To do that, we used ffmpeg and the following command:
If you need to extract the audio from an .WEBM movie file to an .MP3 audio file you can execute the following: The first command will assign the file name to a variable, we do this to avoid typing errors in the second command where we might want to use…
The following command will find all mp4 files that are in the current directory and in all sub-folders and extract the audio to mp3 format. find . -type f -iname "*.mp4" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -vn -y "${FILE%.mp4}.mp3";' _ '{}' \; The filename of the audio file…
The following command will find all mkv files that are in the current directory and in all sub-folders and extract the audio to mp3 format. find . -type f -name "*.mkv" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -vn -c:a libmp3lame -y "${FILE%.mkv}.mp3";' _ '{}' \; The filename of the…
Thanks a lot it works perfectly!