Thanks, RSATom,
http://rsatom.github.io/fbvlc/ works perfect for two modes with IE 9, Chrome and Firefox.
I made standard vlc working as well, the only thing for standard vlc, IE 9 need extra browser refresh to get video .
here is the sample code: (VID_10212014.mp4 can be any .mp4 file)
http://localhost/vlc/web-convertie.html
<html>
<head>
<meta content="IE=EDGE" http-equiv="X-UA-Compatible">
<title>VLC Player</title>
</head>
<body>
<div style="width: 100%; height: 100%; position: relative; background-color: black;" id="p1" class="myplayer">
<div style="width: 100%; height: 100%; display: block;" id="player_78587">
<object type="application/x-vlc-plugin" classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" width="400" height="300" >
<param name="Src" value="
http://10.51.51.73/clients/vlc/VID_10212014.mp4">
<param name="windowless" value="true"></object>
</object>
</div>
</div>
</body>
</html>
Any suggestions?