Quote:
Originally Posted by by-gum
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.