I use the below code to play a video in a website. The video plays perfectly, except that on the video, I see some message that says ".jpg.com" and "pic video" and i cannot understand why this happen. Uploadin the video in video.google.com or in mytubes.com doesnt shows the above text. Below is the code I use. Thanks in advance for any help <!-- BEGIN GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER --> <OBJECT ID="mediaPlayer" 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"> <PARAM NAME="fileName" VALUE="http://www.anysite.com/videofilename.MOV"> <PARAM NAME="animationatStart" VALUE="false"> <PARAM NAME="transparentatStart" VALUE="false"> <PARAM NAME="autoStart" VALUE="true"> <PARAM NAME="showControls" VALUE="true"> <PARAM NAME="clickToPlay" VALUE="true"> </OBJECT> <!-- END GENERIC ALL BROWSER FRIENDLY HTML FOR WINDOWS MEDIA PLAYER -->
|