Skip to content

Instantly share code, notes, and snippets.

@keisei1092
Created January 22, 2017 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keisei1092/c043caef6f6de2082a9d22d8dfbb61d8 to your computer and use it in GitHub Desktop.
Save keisei1092/c043caef6f6de2082a9d22d8dfbb61d8 to your computer and use it in GitHub Desktop.
require 'sinatra'
set :port, 4568
get '/youtube-dl/:id' do
`youtube-dl -o '~/Desktop/%(title)s.%(ext)s' --add-metadata -x --audio-format mp3 'https://www.youtube.com/watch?v=#{params[:id]}'`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment