434

There are several Q&A threads that explain how to download youtube videos using the terminal.

However, I would also like to learn how to extract the video's soundtracks as MP3 files--also using only the terminal.

Answers briefly explaining how to use youtube-dl or other similar utilities before explaining how to extract the MP3 would be ideal for the sake of having all the information in one place--even though this aspect has been covered in other posts.

muru
  • 207,228
siraj
  • 5,407

8 Answers8

711

You can also download the mp3 directly from youtube without converting using ffmpeg

youtube-dl --extract-audio --audio-format mp3 <video URL>

From the online help:

-x, --extract-audio        convert video files to audio-only files (requires
                           ffmpeg or avconv and ffprobe or avprobe)

Bear in mind as well that youtube-dl defaults to using avconv so you should consider specifying either avconv or FFmpeg at the commandline . From the online help :

--prefer-avconv                  Prefer avconv over ffmpeg for running the
                                 postprocessors (default)
--prefer-ffmpeg                  Prefer ffmpeg over avconv for running the
                                 postprocessors

Further options for keeping the original video, adjusting the bitrate or quality of the audio and a few others can be seen by looking at youtube-dl -h .

Seth
  • 59,332
uniquerockrz
  • 7,327
77

Downloading from youTube

Install youtube-dl from the official repository in Ubuntu:

sudo apt-get install youtube-dl

or as official readme suggest using curl or wget. This will let you upgrade with sudo youtube-dl -U

To download a video execute the following:

youtube-dl <url>

E.g

youtube-dl http://www.youtube.com/watch?v=_z-hEyVQDRA

You can also specify other options

-b            Best quality
-m            Mobile version
-d            High Definition
-g            Don’t download, just show the url
-c            Resume download of a video which was interrupted before
-w            Don’t overwrite existing file

For complete list of switches execute man youtube-dl in terminal.

Information from here

Converting to mp3

Now install ffmpeg from the official repo.

sudo apt-get install ffmpeg

Next have a look to make sure the flv file has downloaded from youtube by typing

ls *flv

This will list all the flv files you have. What you should see is a flv file with the same name as the 'v' component of the youtube url you downloaded.

E.g if you downloaded http://www.youtube.com/watch?v=_z-hEyVQDRA then you should have a file called _z-hEyVQDRA.flv

Next you need to copy that file name and then put it in an ffmpg command like

ffmpeg -i <file name>.flv -acodec libmp3lame <song name>.mp3

So for this example you would type

ffmpeg -i _z-hEyVQDRA.flv -acodec libmp3lame MasterOfPuppets.mp3

Once this has successfully completed you will now have the mp3 file you were after.

Note

  • For cleanup you may want to type rm _z-hEyVQDRA.flv to get rid of the flv file that you no longer need.
  • Information from here
jtlindsey
  • 2,100
Jacob Tomlinson
  • 1,218
  • 10
  • 21
14

This question has been answered a lot, but I figured I would add something really useful. This should honestly just be included aliases when you install the youtube-dl package in my opinion.

I add these to my .bashrc. If I want to download a video as an mp3 I can do that, or download an entire playlist as mp3 I can use mp3p then the url to the playlist.

It is really simple and also respects YouTube's flood or bot protection by having a 30 second interval between downloads. This will also help make sure your IP doesn't get banned.

# youtube-dl alias
mp3 () {
    youtube-dl --ignore-errors -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 -o '%(title)s.%(ext)s' "$1"
}

mp3p () { youtube-dl --ignore-errors --sleep-interval 30 -i -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 -o '%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s' "$1" }

dlv () { youtube-dl --ignore-errors -o '%(title)s.%(ext)s' "$1" }

dlp () { youtube-dl --yes-playlist --ignore-errors --sleep-interval 30 -o '%(playlist)s/%(title)s.%(ext)s' "$1" }

Goddard
  • 4,860
12

For those of us who prefer a GUI interface, there is YouTube to MP3 from MediaHuman.

1. Installation

You can do direct downloads for Ubuntu 16.04+ but I prefer the repository because of automatic updates.

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7D19F1F3
sudo add-apt-repository https://www.mediahuman.com/packages/ubuntu

sudo apt update
sudo apt install youtube-to-mp3

2. Usage

Search and open 'Youtube to MP3' via dash or another launcher. Copy the Youtube video URL from the browser to your clipboard and paste it into the application by clicking the 'Paste link' button on the top-left corner. See screenshot below.

The download and conversion will begin automatically and the audio saved in the Home folder under /Music/Downloaded by MediaHuman

Youtube to MP3 main interface

Parto
  • 15,647
7

For this task, I use youtube-dl (w/ a dependency on ffmpeg) with the following options for best results. You can pass it an URL for a single song or even an entire playlist.

youtube-dl --prefer-ffmpeg --extract-audio --audio-format mp3 --audio-quality 0 --embed-thumbnail <VIDEO_SONG_OR_PLAYLIST_URL>

Breaking down the meaning of the supplied options:

  • --prefer-ffmpeg — Tells youtube-dl to prefer ffmpeg (as opposed to avconv).
  • --extract-audio — Extract the audio stream and discard the video.
  • --audio-format mp3 — Save the audio stream in mp3 format.
  • --audio-quality 0 — Save audio with highest quality possible. The possible values here are 0-9 (you can also pass explicit bitrate such as 128K). If you do not pass this option, youtube-dl uses a default value of 5, often resulting in lower quality audio than you will get with a value of 0.
  • --embed-thumbnail — (Optionally) Embed the video thumbnail into the saved audio files as album art metadata (will be shown in media player applications).
3

16.04 and later

I recommend using the youtube-dl snap package (sudo snap install youtube-dl) to download the mp3 components of YouTube videos, so that you don't get blocked from downloading from YouTube because your version of youtube-dl is not up-to-date.

Show a list of the available formats for a specific YouTube URL which I have denoted by <video URL> in the following line of code.

snap run youtube-dl -F <video URL>

Download the mp3 from a specific URL.

snap run youtube-dl -f your-choice-of-format --extract-audio --audio-format mp3 <video URL>

where your-choice-of-format is replaced by an format integer number that is selected from the audio only results of youtube-dl -F <URL>. The audio only results of youtube-dl -F <URL> will show a choice of available bitrates (e.g. 192k) for you to choose from, but the video only results of youtube-dl -F <URL> cannot be saved by youtube-dl to any audio format.

karel
  • 122,292
  • 133
  • 301
  • 332
2

The yt-dlp utility can download and convert the youtube's video into mp3 audio in a single command.

The syntax is below, with the "URL" being a playlist, channel, or individual video URL, it will handle all 3 types of links.

yt-dlp -f bestaudio -x --audio-format mp3 --audio-quality 0 "URL"
majorgear
  • 171
0

In case you need a GUI for downloading Audios from Youtube only I'd like to introduce YoutubeDownloader

It has been written to ensure the best possible quality in combination. It provides a simple interface for downloading videos or audio tracks only. It has a GTK3 interface and was written for Linux/Ubuntu

kanehekili
  • 7,426