Difference between revisions of "Main Page"

From A-SMIL.org
Jump to: navigation, search
(Contents: added Screen on/off topic)
(Contents: Adding JavaScript integratino)
(11 intermediate revisions by the same user not shown)
Line 16: Line 16:
 
Digital signage deals with scheduling multimedia files for playback on digital displays connected on an IP network. The industry has roots tracing back for a few decades, but has recently expanded rapidly due to the proliferation of low-cost flat panel displays that are easy to install and maintain in public space. As the market expands out of the "emerging" status, mainstream customers demand compatibility and interoperability among products from different vendors. SMIL appears to be an ideal technology to answer the needs of the industry.
 
Digital signage deals with scheduling multimedia files for playback on digital displays connected on an IP network. The industry has roots tracing back for a few decades, but has recently expanded rapidly due to the proliferation of low-cost flat panel displays that are easy to install and maintain in public space. As the market expands out of the "emerging" status, mainstream customers demand compatibility and interoperability among products from different vendors. SMIL appears to be an ideal technology to answer the needs of the industry.
  
A SMIL playlist that plays 2 videos repeatedly looks as simple as this:
+
A SMIL script that plays 2 videos repeatedly looks as simple as this:
  
 
<source lang="smil">
 
<source lang="smil">
<seq repeatCount="indefinite">
+
<smil>
  <video src="ad1_15s.mpg" />
+
  <head />
  <video src="ad2_30s.mpg" />
+
  <body>
</seq>
+
    <seq repeatCount="indefinite">
 +
      <video src="ad1_15s.mpg" />
 +
      <video src="ad2_30s.mpg" />
 +
    </seq>
 +
  </body>
 +
</smil>
 
</source>
 
</source>
  
Line 36: Line 41:
  
 
* [[Guided navigation]]
 
* [[Guided navigation]]
 +
* [[REST Push API]]
 
* [[SMIL Tutorial]]
 
* [[SMIL Tutorial]]
 
** [[SMIL Media Objects]]: video, image, and audio objects
 
** [[SMIL Media Objects]]: video, image, and audio objects
Line 44: Line 50:
 
** [[Transition]]: quickly making static images ''alive''
 
** [[Transition]]: quickly making static images ''alive''
 
** [[Interactivity]]: triggering playlists based on user input
 
** [[Interactivity]]: triggering playlists based on user input
 +
** [[Video input]]: video zone from external source
 
** [[Conditional play]]: per-media item playback conditions
 
** [[Conditional play]]: per-media item playback conditions
 
** [[Linking SMIL]]: jumping between SMIL scripts
 
** [[Linking SMIL]]: jumping between SMIL scripts
 
** [[Screen on/off]]: putting display into stand-by mode
 
** [[Screen on/off]]: putting display into stand-by mode
 +
** [[Sync Playback]]: SMIL playback synchronization
 +
** [[AnyTiles|AnyTiles video wall]]: SMIL for video wall
 
* [[SMIL Connectivity|Connectivity]]
 
* [[SMIL Connectivity|Connectivity]]
 
** [[Transport|Sending SMIL to Player]]: network management protocol for media players
 
** [[Transport|Sending SMIL to Player]]: network management protocol for media players
Line 55: Line 64:
 
** [[MediaRSS|Media RSS Bridge]]: connecting a media RSS content feed to SMIL
 
** [[MediaRSS|Media RSS Bridge]]: connecting a media RSS content feed to SMIL
 
** [[Maintenance tasks]]: A-SMIL extension for player upkeeping
 
** [[Maintenance tasks]]: A-SMIL extension for player upkeeping
 +
** [[Cache Control]]: A-SMIL extension for media cache control
 +
** [[JavaScript integration]]: triggering SMIL events from JavaScript
 
* [[SMIL Reference]]
 
* [[SMIL Reference]]
 
** [[Compliance levels]]: Subsets of SMIL defining performance levels
 
** [[Compliance levels]]: Subsets of SMIL defining performance levels
Line 63: Line 74:
 
** [[Checking for Updates|Smooth Update for SMIL Playlists]]
 
** [[Checking for Updates|Smooth Update for SMIL Playlists]]
 
** [[License Enforcement via USB Update]]
 
** [[License Enforcement via USB Update]]
 +
* [[SMIL Samples]]
 +
** [[Universal Digital Clock]]
 +
** [[Currency Table]]
 
</div>
 
</div>
 
|}
 
|}

Revision as of 09:18, 30 June 2016

Free source code: Download full source code for Project Hornet, a Windows-based management console for SMIL media players, written in C# language.

This website is an "Advocacy for SMIL" (hence A-SMIL) as an open standard for digital signage. Thank you for all your support. We are on Google's page 1 for search on SMIL.

SMIL Supported by Most Leading Digital Signage Systems. Read more...

SMIL as an Open Standard for Digital Signage

SMIL (pronounced "smile") stands for "Synchronized Multimedia Integration Language" and defines scheduling ("Synchronized"), video, audio, images, text ("Multimedia"), multi-zone screen layout ("Integration") in an XML-based text file format ("Language"). It is an open specification (royalty-free to use) created by the World-Wide Web Consortium, the same organization responsible for defining the HTML language, an open standard for the Internet. Products that utilize SMIL are available from leading companies such as Adobe, Apple, Microsoft, and Real Networks.

Digital signage deals with scheduling multimedia files for playback on digital displays connected on an IP network. The industry has roots tracing back for a few decades, but has recently expanded rapidly due to the proliferation of low-cost flat panel displays that are easy to install and maintain in public space. As the market expands out of the "emerging" status, mainstream customers demand compatibility and interoperability among products from different vendors. SMIL appears to be an ideal technology to answer the needs of the industry.

A SMIL script that plays 2 videos repeatedly looks as simple as this:

<smil>
  <head />
  <body>
    <seq repeatCount="indefinite">
      <video src="ad1_15s.mpg" />
      <video src="ad2_30s.mpg" />
    </seq>
  </body>
</smil>

Get an overview on this site via Guided navigation

Contents