Created
August 28, 2017 16:27
-
-
Save anonymous/eccabf6bd687242cb4b4dc154b004aaa to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ ## ADDED. require 'net/http' ## What they gave me. # Get the job-related command line arguments. FOR DEMO params = Hash.new if ARGV[0].is_int? jobId = ARGV.shift input = ARGV.shift mode = ARGV.shift numOutputs = ARGV.shift # Setup the params hash. FOR DEMO. params = { "job_type" => "Job", # default to Job, since Live has used JSON for a while, so "fallback" is more likely to be Server "script_type" => "#{mode}", "id" => jobId, "output_groups" => [], "inputs" => [{'uri' => "#{input}", 'type' => "FileInput"}] } #### WHAT I THINK I NEED: thefilename = ARGV.shift http = Net::HTTP.new('https://recording.music.unt.edu/elementalupdate.php?filename='.thefilename) response = http.request_get('/')