In order to view your SMIL file it must be inserted into a XHTML or HTML document.
the usual proceedure is to use the <embed> tag along with the <object> tag.
Using these tags together will give you the best results.This would be used with The Real player to play the SMIL presentation.
As in the example below.
|
|
The other method would be to would be to use the <applet> tag to insert a applet written in java that would play the SMIL presentation.This would be used with the Soja player.
As in the example below.
|
<APPLET CODE="org.helio.soja.SojaApplet.class" ARCHIVE="soja.jar" CODEBASE = "http://place.URL .here" WIDTH="300" HEIGHT="200">
<PARAM NAME="source" VALUE="sources/anyfile.smil">
<PARAM NAME="display" VALUE="applet">
<PARAM NAME="userpreferences" VALUE="false">
</APPLET>
|