I would like to be able to capture video from
Code:
http://www.abc.net.au/
This is a major government TV station in Australia and has lots of quality content.
e.g.
Code:
http://www.abc.net.au/4corners/special_eds/20090817/cyber/
Here's some source from that page:
HTML Code:
<!--url's used in the movie-->
<script language="JavaScript" type="text/javascript">
<!--
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) { // if we've detected an acceptable version
var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
+ 'width="100%" height="100%"'
+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
+ '<param name="allowFullScreen" value="true" />'
+ '<param name="movie" value="template.swf" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="lt" /><param name="bgcolor" value="#000000" />'
+ '<embed src="template.swf" menu="false" quality="high" scale="noscale" salign="lt" bgcolor="#000000" allowFullScreen="true"'
+ 'width="100%" height="100%" name="Four Corners Web Specials" align="middle"'
+ 'play="true"'
+ 'loop="false"'
+ 'quality="high"'
+ 'allowScriptAccess="sameDomain"'
+ 'type="application/x-shockwave-flash"'
+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
+ '<\/embed>'
+ '<\/object>';
document.write(oeTags); // embed the flash movie
document.write(oeTags); // embed the flash movie
}
The whole page comes up as flashplayer 10 content and there is no source visible when right clicking in the browser. Sorry, I'm not sure what the final URL is for the video stream. The page includes a number of videos and ideally I would like to be able to access all of them.