I make a simple Webpage (jsp page) and i embed a flvplayer. Everything is ok if the flash video file under web root. But i want to save the videos let say in c:/videos but the flvplayer does not start to play the videos from that location.
Here is my sample jsp file.
PHP Code:
<%@page contentType="text/html"%>
<%@
page pageEncoding="UTF-8"%>


<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"
>
<
html>
    <
head>
        <
meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <
title>JSP Page</title>
    </
head>
    <
body>
        <
h1>JSP Page</h1>
        
        
        <
object type="application/x-shockwave-flash" data="flvplayer.swf" width="500" height="450" id="FlvPlayer">
            <
param name="allowScriptAccess" value="sameDomain" />
            <
param name="movie" value=flvplayer.swf" />
            <param name="
quality" value="high" />
            <param name="
scale" value="noScale" />
            <param name="
wmode" value="transparent" />
            <param name="
bgcolor" VALUE="#000000" />
            
<param name="flashvars" value="file=c:\star.flv" />
        </
object>
        
    </
body>
</
html
Any idea??
Thanks,