How to loop footage?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a ten second footage that I would like to have play continuously when
I put it on my website. How do I get it to loop?
 
Hello there,

The below should do what you want. You need to edit the file name, Size and
path name etc

<table border='0' cellpadding='0' align="center">
<tr><td>
<OBJECT id='mediaPlayer' width="320" height="285"
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://servername/path/to/media.file">
<param name='animationatStart' value='true'>
<param name='transparentatStart' value='true'>
<param name='autoStart' value="true">
<param name='showControls' value="true">
<param name='loop' value="true">
<EMBED type='application/x-mplayer2'
pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
bgcolor='darkblue' showcontrols="true" showtracker='-1' showdisplay='0'
showstatusbar='-1' videoborder3d='-1' width="320" height="285"
src="http://servername/path/to/media.file" autostart="true" designtimesp='5311'
loop="true">
</EMBED>
</OBJECT> </td></tr> <!-- ...end embedded WindowsMedia file -->
</table>
 
Well, I tried it but I couldn't get it to work. (My skills with html are
nonexistent). Is there anything on the program itself that will allow me to
loop a reel?
 
Hello there,

If possible send me the name of the file and the path (where it will reside on
your website) send it to rc at the-kellys dot org and I will create the code
for you and send it back.
 
Back
Top