Created
March 8, 2012 10:51
-
-
Save zylew/2000385 to your computer and use it in GitHub Desktop.
Download "Apple Special Event 2012" from apple. http://events.apple.com.edgesuite.net/123pibhargjknawdconwecown/event/index.html This script is based on previous WWDC keynote download script: https://gist.github.com/1012426
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'open-uri' | |
size_hash = {"720p" => "6540", "720i" => "4540", "540p" => "2540", "540i" => "1840", "360p" => "1240", "360i" => "0640", "360is" => "0440", "224p" => "0240"} | |
if ["--help", "help", "-h"].include?(ARGV[0]) || ARGV.size < 1 | |
puts "Usage: #{File.basename __FILE__} ( #{size_hash.keys.join(' | ')} )" | |
exit 0 | |
end | |
video_size = size_hash[ARGV[0]] | |
outfilename = "apple_special_event_2012.ts" | |
File.unlink outfilename if File.exists? outfilename | |
if video_size | |
baseurl = "http://qthttp.apple.com.edgesuite.net/123pibhargjknawdconwecown/" | |
outfile = open outfilename, 'w+' | |
puts baseurl + video_size + "_vod.m3u8" | |
listfile = open baseurl + video_size + "_vod.m3u8" | |
listfile.each_line do |line| | |
next if line =~ /^#/ | |
file = line.strip.split("/").last | |
print "Downloading fragment file: #{file}..." | |
begin | |
infile = open baseurl + "/" + line.strip | |
rescue StandardError => ex | |
puts "retry..." | |
retry | |
raise | |
end | |
outfile.write infile.read | |
infile.close | |
puts "Done" | |
end | |
outfile.close | |
else | |
puts "Wrong option." | |
exit 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment