Skip to content

Instantly share code, notes, and snippets.

@wfarr
Forked from shayarnett/ruby_conf_vids.rb
Created December 2, 2008 02:49
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 wfarr/30953 to your computer and use it in GitHub Desktop.
Save wfarr/30953 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'open-uri'
vids = []
f = open('http://feeds.feedburner.com/Rubyconf2008-Confreaks')
f.each do |l|
l =~ /enclosure url=\"([^\"]+)"/
vids << $1
end
vids.compact!.uniq!
vids.each do |vid|
next if File.exist?(vid.split('/').last)
puts "Downloading #{vid}"
# Mac OS X doesn't have wget installed by default, use cURL for awesomeness!
`curl -O #{vid}`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment