hxxp://www.fifa.com/womensworldcup/video/live/index.html
I can use Loopback mode of
WM Recorder to capture live streams from this website . But it's not a comfortable way.
CooJah downloads a commercial which is clearly an RTMP stream and ~10 first seconds of a live stream, then recording stops.
Using
URL Snooper I've found a .smil file with some interesting XML data (_http://ebustreaming.fr.edgesuite.net/vp/ovp/fifa/fifalive4wwc.smil?event=wwcm04)
Code:
<?xml version="1.0"?>
<!DOCTYPE smil PUBLIC "-//W3C//DTD SMIL 2.0//EN" "http://www.w3.org/2001/SMIL20/SMIL20.dtd">
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
<head>
<meta name="title" content="EBU-UER HD Flash Stream" />
<meta name="httpBase" content="http://ebubestfifa-f.akamaihd.net/" />
</head>
<body>
<switch id="EBU-UER HD Flash Stream">
<video src="wwcm04_1_400@s53697?primaryToken=1309201586_0c996e8f7ee99a1440b27c0aa8ac527e" system-bitrate="400000"/>
<video src="wwcm04_1_700@s53697?primaryToken=1309201586_1d1ffb27cb777a823f9c83dc266321a6" system-bitrate="700000"/>
<video src="wwcm04_1_1500@s53697?primaryToken=1309201586_9202e25b0ceac4119afb6eb094c5590d" system-bitrate="1500000"/>
</switch>
</body>
</smil>
Of course the token changes every time you download the file. I'm not sure but I think there should be a hidden RTMP stream. But how to find it?
Loopback gives an additional data in stream details:
Code:
GET /wwcm04_1_400@s53697?primaryToken=1309202237_cfa59b7a8d8e6c6ef5f1abb10ddda2c4&v=1.1.12&fp=WIN%2010,2,152,32&r=GQJKT&g=VKMRQIXVOQFT&primaryToken=?event=wwcm04 HTTP/1.1
Accept: */*
Accept-Language: pl-PL
Referer: http://livemanager.eurovision.edgesuite.net/fifa/site/Digotel.3.1.2-compressed.swf
x-flash-version: 10,2,152,32
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)
Host: ebubestfifa-f.akamaihd.net
Connection: Keep-Alive
Redirecting ebubestfifa-f.akamaihd.net to localhost and using rtmpsrv gives no result.