Previously I created a post that described how to extract music from YouTube using a variety of Linux tools. I am getting ready for a road-trip and needed some theme music (Mustang Sally, Slow Ride, etc…), but didnt have a Linux system available. So here is another method using Windows tools.
DISCLAIMER: I am not fully aware of the legality of this. I am assuming that it is OK since I am not doing any hacking or breaking of cryptography, but your mileage may vary.
Tools needed
- Windows computer
- VLC player – http://www.videolan.org/
- Free YouTube Download – http://dvdvideosoft.com
Using VLC, walk through the Convert process to extract the music as an MP3.
If you have a lot of files, you can use the following command to bulk convert them.
for %i in (*.mp4) do “c:program filesvideolanvlcvlc.exe” “%i” –sout #transcode{acodec=mp3}:duplicate{dst=std{access=file,mux=raw,dst=””%i.mp3″”},select=”novideo”} vlc://quit
Comments
Post a Comment