Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
Hulu download scriptI created a very basic Ruby script to download from Hulu.
It only works for Windows right now. Feel free to use and improve it. github.com/svnpenn/dotfiles/blob/master/bin/hulu.rb |
#2
|
|||
|
|||
Re: Hulu download scriptAwesome, thanks!
|
#3
|
|||
|
|||
ruby install???Hi have you any hints and tips on installing ruby on windows to use your script ?
Ive installed rubyinstaller version 1.8.7 and the DevKit and ran Code:
gem install nokogiri Code:
gem install nokogiri --platform=ruby |
#4
|
|||
|
|||
Re: ruby install???I'm at work right now.
I will try to make a write up for the script later today! |
#5
|
|||
|
|||
Re: Hulu download scriptAny help on this please im really interested in this Ruby method.
Thanks |
#6
|
|||
|
|||
Re: Hulu download scriptSorry for the delay. I have been trying to turn the script into a Ruby gem, so that it is easier to install.
I am new with Ruby so its been slow going, but it definitely works with Hulu, without: * modifying hosts file * RtmpSrv * RtmpExplorer |
#7
|
|||
|
|||
Re: Hulu download scriptThanks for the update ill look forward to your little gem
|
#8
|
|||
|
|||
Re: Hulu download scriptWhat issue did you have, maybe I can solve it for now.
|
#9
|
|||
|
|||
Re: Hulu download scriptThis is the error i get even though i have nokogiri installed from gem ?
Code:
C:\Documents and Settings\evol\Desktop\hulu>ruby hulu.rb hulu.rb:4:in `require': no such file to load -- nokogiri (LoadError) from hulu.rb:4 C:\Documents and Settings\evol\Desktop\hulu> |
#10
|
|||
|
|||
Re: Hulu download scriptOk I see the problem
This script requires Ruby 1.9 If you are going to use Ruby 1.8 you need this diff Code:
--- a/hulu.rb 2012-04-05 16:48:54 -0500 +++ b/hulu.rb 2012-04-05 17:02:56 -0500 @@ -1,6 +1,7 @@ #!/bin/env ruby # nokogiri.org/Nokogiri/XML/Document # tenderlovemaking.com/2008/12/04/nokogiris-slop-feature +require 'rubygems' require 'nokogiri' # Dump process and parse |
Tags: hulu, ruby |
Thread Tools | |
Display Modes | |
|
|