Difference between revisions of "Currency Table"

From A-SMIL.org
Jump to: navigation, search
Line 12: Line 12:
 
$currency[$x]=$html->find('div[align=right]',$x)->plaintext; // find the currency element
 
$currency[$x]=$html->find('div[align=right]',$x)->plaintext; // find the currency element
 
</source>
 
</source>
 
  
 
== Fixed playlist , dymamic content  ==
 
== Fixed playlist , dymamic content  ==
Line 32: Line 31:
 
     </par>
 
     </par>
 
</source>
 
</source>
 
 
 
 
 
 
 
 
 
 
 
 
 
  
 
----
 
----
 
[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]

Revision as of 06:22, 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 save 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>

Download Full Sample