Difference between revisions of "Currency Table"

From A-SMIL.org
Jump to: navigation, search
(Fixed playlist , dymamic content)
 
(One intermediate revision by the same user not shown)
Line 14: Line 14:
  
 
== Fixed playlist , dymamic content  ==
 
== Fixed playlist , dymamic content  ==
The live currency data will be save as PNG image, player will update the image every 60 seconds.
+
The live currency data will be saved as PNG image, player will update the image every 60 seconds.
 
<source lang="smil">
 
<source lang="smil">
 
     <par repeatCount="indefinite">
 
     <par repeatCount="indefinite">
Line 31: Line 31:
 
     </par>
 
     </par>
 
</source>
 
</source>
 +
 +
== Applicable Device ==
 +
Full-HD Open API Player from [http://www.iadea.com IAdea Corporation].
  
 
----
 
----
 
[http://www.a-smil.org/images/7/71/CurrencyTable20110211.zip Download Full Sample]
 
[http://www.a-smil.org/images/7/71/CurrencyTable20110211.zip Download Full Sample]

Latest revision as of 06:24, 12 February 2011

Summary

This sample implements a live currency exchange chart.The live currency data is obtained from internet resource using PHP programming. Fixed_Playlist,_Dynamic_Content– SMIL skill used here to update the live currency data to the SMIL player.

Obtain live currency data from web

There are plenty currency resource available over internet, this sample grab currency data from CNBC. Open source dom parser used here to parse the currency data from the web page:

//snapshot from the php code
include_once('simple_html_dom.php'); // include dom parser
$html = file_get_html('http://www.cnbc.com/id/24509219'); // assign source
$currency[$x]=$html->find('div[align=right]',$x)->plaintext; // find the currency element

Fixed playlist , dymamic content

The live currency data will be saved as PNG image, player will update the image every 60 seconds.

    <par repeatCount="indefinite">
        <seq dur="60s" /> <!-- refresh interval -->
        <seq>
          <prefetch src="currency1.png" />
          <prefetch src="currency2.png" />
          <prefetch src="currency3.png" />
          <prefetch src="currency4.png" />
          <prefetch src="currency5.png" />
          <prefetch src="currency6.png" />
          <prefetch src="currency7.png" />
          <prefetch src="currency8.png" />		  
          <prefetch src="currency9.png" />	
        </seq>
    </par>

Applicable Device

Full-HD Open API Player from IAdea Corporation.


Download Full Sample