I'm using youtube-dl to download from youtube. I would like to download the files as mp3. Doing some research I found that there's a function for this: --audio-format mp3. However when I use this it still downloads the files as m4a or webm. The function I'm using is
youtube-dl --extract-audio --audio-format mp3 <link>
Now it gives a hint to install ffmpeg or avconv, but after doing pip install ffmpeg it still doesn't work. How do I fix this?
Thanks in advance!