I would like to hear Linus' talk about Git from youtube on my way to work, which means I'm looking for an elegant way to extract .wav or .mp3 from a YouTube video.
14 Answers
install Youtube-dl and FFmpeg then use the following commandline
Download the video
youtube-dl --extract-audio --audio-format mp3 http://www.youtube.com/watch?v=YOURVIDEO
optionally use the -k flag to keep the video by default it deletes the video
- 1,053
I have had success with video2mp3.net – it is free and online!
- 235,242
- 117,648
mplayer x.flv -vo null -ao pcm
lame -V2 audiodump.wav talk.mp3
This will extract the audio in wav format and encode it to a VBR mp3 with lame.
- 11,633
- 10,674
video2mp3 comes in first, closely followed by abcyoutube. Both cache popular videos, so there's 0 conversion time.
- 2,217
In Safari 6 for OS X you can open the video from the web inspector and download it by pressing ⌥↩ on the location bar.
- Enable the develop menu from the advanced preferences
- Press ⌥⌘I and open or reload the page for the video
- Double-click the videoplayback resource under the other folder
- Focus the location bar and press ⌥↩ (option-return)
You can extract the audio without re-encoding with ffmpeg. It can be installed with Homebrew.
ffmpeg -i video.mp4 -acodec copy sound.aac
- 4,158
- 42,502
- 8
- 126
- 159
You can download directly only the (m4a) audio stream.
- SMTube that comes with SMPlayer can search, list and play (and also download) Youtube videos, and has an option to select and edit players. Instead of a player a downloader (like uGet or IDM) can be set.
Take notice of the Parameters section for download, namely you may remove the quiet option and or set a different location for download.
Then, right-click a title in the list and select the downloader from the 'audio' option
- Flashgot in Firefox
After starting the youtube video in Firefox, right-click the Flashgot icon in toolbar and select only the audio stream by going to 'Available formats/DASH (separate audio and video tracks)'
and select the specific audio track.
https://youtube-mp3-convert.org/youtube-mp3
I use this for collecting music, it may work for you. At the top of the page click the "Youtube to Mp3" link & enter the URL of the video you want just the sound from. Not 100% sure this will do what you want, would like to know if it does. Good luck.
- 1
I wrote an open source package and command line tool for this in Go. By default, it downloads video and audio, but you can download just audio like this:
youtube -v 0 youtube.com/watch?v=4XpnKHJAok8
- 1
This answer was originally intended to another question (that got merged into this question), where the user was the owner of the videos. This will not work if you don't own the videos yourself.
- Go to http://www.youtube.com/my_videos,
- Click on the down arrow besides the video title
- choose "download as MP4" (or other file format if applies)
- use software installed on your computer to extract the audio from the file
(I don't own a mac, so I can't recommend a mac software for this final step).
- 7,094
I don't trust the software like vixy.net, I think they track all my youtube activity.
convert2mp3.net is my favorite now, they converted a rare video (so the video wasn't cached) to mp3 in less than one minute.
listentoyoutube.com needed ca. 5-6 minutes for the same video.
video2mp3.net needed more than two hours to extract the sound from the same video and they want to accept a java applet.
- 1,149
- 2
- 10
- 14




