View Single Post
  #400  
Old 01-09-2011, 02:55 PM
Anywho Anywho is offline
Batch File Basher
 
Join Date: Jul 2010
Posts: 204
Anywho is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by by-gum View Post
Anywho - progress! We seem to retrieve some data and then:
That time it looked like you were getting it from the Akamai server (usually metered downloads). Your previous attempts were from the Hostworks server (usually un-metered downloads). Anyway, this showed another bug in the script. You'll need to change the line:

Code:
"$CURDIR"/"$FLVSTREAMER" --resume -r rtmp://cp53909.edgefcs.net////flash/playback/_definst_/$SHOWPATH -t rtmp://cp53909.edgefcs.net/ondemand?auth=$TOKEN -o "$CURDIR"/"$FILENAME" $SWFPARAMS
to
Code:
"$CURDIR"/"$FLVSTREAMER" --resume -r rtmp://cp53909.edgefcs.net////flash/playback/_definst_/$SHOWPATH -a ondemand?auth=$TOKEN -o "$CURDIR"/"$FILENAME" $SWFPARAMS
The one for Hostworks will need to be changed from:
Code:
"$CURDIR"/"$FLVSTREAMER" --resume -r rtmp://203.18.195.10/ondemand?auth=$TOKEN -y $SHOWPATH -o "$CURDIR"/"$FILENAME" $SWFPARAMS
to
Code:
"$CURDIR"/"$FLVSTREAMER" --resume -r rtmp://203.18.195.10/ -a ondemand?auth=$TOKEN -y $SHOWPATH -o "$CURDIR"/"$FILENAME" $SWFPARAMS
They're the differences I can see so far between the OSX script and the Windows script.
Reply With Quote