Embed wmv in Mozilla Firefox
Hi,
I want to have a video to be embed in a page which is not working in Mozilla Firefox, but if i try to open and play the same page in internet explorer then it's working fine over there according to me it should work in both borwser. I don't know what the issue, does anyone know how to get this video embed in Mozilla Firefox.
Embed wmv in Mozilla Firefox
Sure definitely i will help you out with this before that can you tell me which code are you trying to using it in Firefox will embedding wmv and at the same time can you tell me which version of Mozilla Firefox is installed on your system.
Embed wmv in Mozilla Firefox
I am having Mozilla Firefox 2.0 and i am using the following code
Code:
<OBJECT ID="Player" width="300" height="210"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<PARAM name="autoStart" value="True">
<PARAM name="uiMode" value="full">
<PARAM name="volume" value="100">
<PARAM name="mute" value="false">
<PARAM name="URL" value="http://www.techarena.in /getMedia?OpenAgent&title=2007_architecture_video">
</OBJECT>
Embed wmv in Mozilla Firefox
It seems that there would be some issue with activex because of which you are not able to do so, try to follow the below code
Code:
<OBJECT ID="Player" width="330" height="310"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<PARAM name="autoStart" value="True">
<PARAM name="uiMode" value="full">
<PARAM name="volume" value="100">
<PARAM name="mute" value="false">
<PARAM name="URL" value="http://www.techarena.in/getMedia?OpenAgent&title=2007_architecture_video">
<embed src="http://www.techarena.in mmcontroller.nsf/getMedia?OpenAgent&title=2007_architecture_video" width="330" height="310" autoStart="True" uiMode="full" volume="100" mute="false"></embed>
</OBJECT>