Difference between revisions of "SMIL Media Objects"

From A-SMIL.org
Jump to: navigation, search
m (Compare HTML page vs. widget)
(Added RTSP video usage)
Line 8: Line 8:
  
 
A simple video played for its entire duration.
 
A simple video played for its entire duration.
 +
 +
RTSP multi-cast streams containing H.264 video can also be specified in the following fashion:
 +
 +
<source lang="smil">
 +
<video src="rtsp://{$ip}/{$endpoint}" />
 +
</source>
  
 
== Still Image (img) ==
 
== Still Image (img) ==

Revision as of 15:16, 6 March 2012

SMIL supports multimedia objects, including

Video (video)

<video src="ad1.mpg" />

A simple video played for its entire duration.

RTSP multi-cast streams containing H.264 video can also be specified in the following fashion:

<video src="rtsp://{$ip}/{$endpoint}" />

Still Image (img)

<img src="ad2.jpg" dur="5s" />

The dur attribute specifies duration of the still image during playback.

Audio (audio)

<audio src="music.mp3" />

Playing music in the background.

Sound Volume Control

For video and audio objects, you can specify the "sound level" attribute to control its audio volume.

<video src="ad1.mpg" soundLevel="20%" />

Valid values for soundLevel is from 0% (mute) to 100% (max).

HTML Documents and Widgets (text and ref)

For SMIL players that support HTML content, such as the IAdea XMP-3250/3350/3450 Media Appliances, one may use the text and ref elements to designate the content to play.

To enable HTML rendering, one MUST first activate the corresponding system component from the SMIL's body declaration, such as the following:

<body systemComponent="http://www.w3.org/1999/xhtml">

There are two types of HTML contents: a simple page and an HTML Widget.

Simple HTML Page

A simple HTML page is represented by an URL to the HTML document. The page can be played using the following code:

<text src="http://server/index.html" dur="indefinte" />

or

<ref src="http://server/index.html" type="text/html" dur="indefinte" />

Note that the media files referenced from the HTML document is external and NOT cached in the media player after power cycling. If network is not available after the player restarts, the referenced media files would be unavailable for display.

To make the complete HTML document cached in the player and available to play when network is not available, use HTML Widgets as described below.

HTML Widget

An HTML Widget is a zipped HTML file system tree containing at the top level the file named "index.html" which can refer to other files using relative URLs within the zipped tree. A widget is loaded into a player as a self-contained media file, and is cached in the player's storage for offline playback. It can be accessed using the following code:

<ref src="http://server/content.wgt" type="application/widget" dur="indefinte" />


Related