In Word press 1.5 I could play video files using the code below in the browser/a post. But now I'm only getting a MediaPlayer-window, but no video is playing. I have made sure that all links etc. are OK, and the html-code is copied directly from WP 1.5 where it works perfectly.
When I copy this to the HTML-editor window, it is gone after I click "update" and "save", and the following code is left:
<!-- VIDEO -->
<div class="text_align_center"><object id="NSPlay" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="275" standby="Loading Microsoft Windows Media Player components..." width="330" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" /></div>
Any tips?
THE ORIGINAL HTML-CODE COPIED FROM WP 1.5:
<!-- VIDEO --><div class="text_align_center">
<object id="NSPlay" width="330" height="275" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">
<!-- ASX File Name --><param name="FileName" value="http://www.mydomain.com/FILENAME.XXX">
<!-- Display Controls --></param><param name="ShowControls" value="1">
<!-- Display Position Controls --></param><param name="ShowPositionControls" value="0">
<!-- Display Audio Controls --></param><param name="ShowAudioControls" value="1">
<!-- Display Tracker Controls --></param><param name="ShowTracker" value="0">
<!-- Show Display --></param><param name="ShowDisplay" value="0">
<!-- Display Status Bar --></param><param name="ShowStatusBar" value="1">
<!-- Diplay Go To Bar --></param><param name="ShowGotoBar" value="0">
<!-- Display Controls --></param><param name="ShowCaptioning" value="0">
<!-- Player Autostart --></param><param name="AutoStart" value="1">
<!-- Animation at Start --></param><param name="AnimationAtStart" value="0">
<!-- Transparent at Start --></param><param name="TransparentAtStart" value="0">
<!-- Do not allow a change in display size --></param><param name="AllowChangeDisplaySize" value="0">
<!-- Do not allow scanning --></param><param name="AllowScan" value="0">
<!-- Do not show contect menu on right mouse click --></param><param name="EnableContextMenu" value="0">
<!-- Embedded Microsoft Media Player Object for Netscape Navigator. --><embed type="video/x-msvideo" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" src="http://www.mydomain.com/FILENAME.XXX" width="223" height="50" showcontrols="1" showpositioncontrols="0" showaudiocontrols="1" showtracker="0" showdisplay="0" showstatusbar="1" showgotobar="0" showcaptioning="0" autostart="0" autorewind="0" animationatstart="0" transparentatstart="0" allowchangedisplaysize="0" allowscan="0" enablecontextmenu="0">
</embed> </param></object></div>