Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Batch script to convert, youtube-dl webm file to mp3 with ffmpeg

Tags:

People also ask

How do I convert FFmpeg Webm to MP3?

Method 2: Use FFmpeg to convert WEBM to MP3 file You can convert WEBM to MP3 on Mac, Windows and Linux systems using FFmpeg. ffmpeg -i "${FILE}" -vn -ab 128k -ar 33000 -y "${FILE%. webm}.

Can FFmpeg convert WEBM to MP4?

With these simple steps, you can now FFmpeg convert WebM to MP4: Step 1: First, you will need to go to https://www.ffmpeg.org/download.html and download FFmpeg for the conversion. It will be presented to you as a . zip file.

Can FFmpeg convert audio?

FFmpeg is a great tool for quickly changing an AV file's format or quality, extracting audio, creating GIFs, and more.


I'm using youtube-dl to extract the best possible audio quality from youtube videos. However the best quality audio usually turns out to be the webm format, which isn't useful. I would like to write a batch script that converts the webm file to an mp3 with ffmpeg. I've already tried using this guide on reddit to do it, but it doesn't seem to work. It appears to create an empty mp3 file that displays an error when i try to play it and the meta data is also completly blank.

Here is the batch script:

for %%a in ("Downloaded\*.*") do %CD%\ffmpeg\bin\ffmpeg.exe -i "%%a" -vn -ar 44100 -ac 2 -ab 192k -f mp3 "Converted\%%~na.mp3" pause

I'll also give an explanation of how the whole thing should work.

The idea is, is that you use youtube-dl to extract the best possible audio, then put that file into the Downloaded folder (see pic below) and then you run the mp3 script (which uses commands from ffmpeg) to convert the webm file in the Downloaded folder to a mp3 file, and place it in the Converted folder. The mp3 script is the code above. But it doesn't seem to work properly.

I'm not very familiar with batch scripting, nor with ffmpeg so any help would be appreicated.

Here is the picture to complement the explanation part.

enter image description here