PDA

View Full Version : yycast.com: What is the stream address of Fox News Live?


primtim34
10-22-2011, 02:07 PM
What is the stream address for this website?
hXXp://yycast.com/foxnewslive1

I can't find the actual streaming address. Any help would be appreciated.

chap
10-22-2011, 11:25 PM
rtmpdump -r "rtmp://68.68.22.81/live/_definst_" -a "live/_definst_" -f "WIN 11,0,1,152" -W "http://www.streamiton.tv/player/player.swf" -p "http://yycast.com/foxnewslive1" -y "foxnewslive1" -o foxnewslive1.flv

rtmp://68.68.22.81/live/_definst_/foxnewslive1

primtim34
10-23-2011, 06:34 PM
So to record it for 60 minutes would the following script work?

#!/bin/sh
NOW=$(date +"%b-%d-%y")
rtmpdump -r "rtmp://68.68.22.81/live/_definst_" -a "live/_definst_" -f "WIN 11,0,1,152" -W "http://www.streamiton.tv/player/player.swf" -p "http://yycast.com/foxnewslive1" -y "foxnewslive1" --stop 3600 --live -o foxnewslive1.flv

KSV
10-23-2011, 08:55 PM
replace
-o foxnewslive1.flv
with
-o "foxnewslive1 $NOW.flv"

primtim34
10-24-2011, 06:17 PM
Perfect. Thanks.