Hi
I wl try the above one
and thanks for the reply
actually i have done like this
the video files are stored are in my local sys C:/Content/MediaContent/c1528f09-910f-4974-aee0-657b345a608a_one.flv
my movie file name is "c1528f09-910f-4974-aee0-657b345a608a_one.flv" this much big name it should have to play in vlc as per my requiremnets
i developed a page and integrated the vlc player the code is::
<script type='text/javascript'>
window.onload = function(){
var vlc = document.getElementById('vlc');
path="
http://192.165.0.126:8080/myproject/Med ... 8a_one.flv";
//Comments: in the above path the file will play only when the MediaContent folder sholud be in my project location then only it is playing, my requirement is the files are stored in C:/ path i want to play that files that are stored in C: how to give that path so that in network with my IP all my videos will be playing with streaming
i think u understand my problem now plz help me ........ //
vlc.playlist.playItem(vlc.playlist.add('path'));
};
</script>
</head>
<body>
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
codebase="
http://downloads.videolan.org/pub/video ... /axvlc.cab"
width="400" height="300" id="vlc" events="True">
<param name="Src" value=""></param>
<param name="ShowDisplay" value="True" ></param>
<param name="AutoLoop" value="no"></param>
<param name="AutoPlay" value="yes"></param>
<embed type="application/x-google-vlc-plugin" name="vlcfirefox" autoplay="yes"
loop="no" width="400" height="300"></embed>
</object>