Skip to content

Instantly share code, notes, and snippets.

@andreortiz82
Created September 18, 2014 16:17
Show Gist options
  • Save andreortiz82/65accd94d11566c65c2d to your computer and use it in GitHub Desktop.
Save andreortiz82/65accd94d11566c65c2d to your computer and use it in GitHub Desktop.
Download horn samples from NYB website
require 'open-uri'
86.times do |sample|
begin
open("nyb_#{sample}.mp3", 'wb') do |file|
file << open("http://www.newyorkbrass.com/samples/samples/nyb_#{sample}.mp3").read
puts "nyb_#{sample}.mp3 - saved"
end
rescue Exception => ex
puts "Error: #{ex}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment