Skip to content

Instantly share code, notes, and snippets.

@mgaspari
mgaspari / youtube-to-mp3.rb
Created August 23, 2017 18:48 — forked from stefan-lz/youtube-to-mp3.rb
youtube vids to mp3 files (ruby)
#!/usr/bin/ruby
#usage: youtube-to-mp3 <youtube-url>
#example: youtube-to-mp3 http://www.youtube.com/playlist?list=PL398CE05652474A1E
#desc: downloads a single youtube vid or a playlist, then converts to mp3.
# Requires youtube-dl and ffmpeg
url = ARGV[0]
system("youtube-dl -citA #{url}")