Playing Video files

Using a Panel tag, AVI, MPEG and other different kind of video files can be played on an HTML page. You can set which file extensions are handled by PANEL, in Preferences window.

Another way to play a video file is by using an anchor tag like this:

<A HREF=filename.avi>...</A>
     WIDTH|HEIGHT|CLOSE|REWIND

The video file will be sized and played. Do not include any dot "." other than the dot between the filename and the extension,.

See Default Video file extensions in Preferences window

Example 1:

                 <A HREF="MYVIDEO.AVI 400 500 CLOSE">Play</A>

This file will be played in a window 400x500 pixels, centered in the screen and will be closed automatically when the AVI ends. The parameters should be separated only by spaces.

Example 2:

                 <A HREF="MYVIDEO.MPG 700 600 REWIND">Play</A>

This file will be played in a window 700x600 pixels, centered in the screen and it will be replayed automatically, until the user stops it. The parameters should be separated only by spaces.