ref: 350337b6b4cdb22fb93aff5c58e9e24c2416d1d0
dir: /test/Rakefile/
desc "Download raw test data"
task :download_raw do
(5208..5280).each do |filenum|
url = "http://media.xiph.org/BBB/BBB-360-png/big_buck_bunny_0#{filenum}.png"
puts "Grabbing #{url}"
system("curl -O #{url}")
end
end