<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title><![CDATA[SMIL Player]]></title>
    <link>http://brainstorm.ubuntu.com/item/2686/</link>
    <description><![CDATA[Hello,<br /><br />Create and add an 'Ambulant' package in Ubuntu. Ambulant is a SMIL player.<br />The SMIL standard is defined by the W3C. It's a XLM format allowing to make presentations, slideshows, to mix image, video, audio, text, it is encapsulable in the html or xhtml (for example, it's used for the MMS).<br />
<br />


<b>[24 votes] Solution #1: Auto-generated solution of idea #2686</b>
<br />

<br />
<br />



<b>[5 votes] Solution #2: Support SMIL players and authoring tools as alternatives to Flash and Silverligh</b>
<br />

<br />
<br />



]]></description>

    <language>en-us</language>
    <pubDate>Mon, 03 Mar 2008 10:24:56 +0000</pubDate>
    <lastBuildDate>Mon, 27 Jul 2009 15:17:50 +0000</lastBuildDate>
    <generator>QAPoll module</generator>
    <guid isPermaLink="true">http://brainstorm.ubuntu.com/idea/2686/</guid>
        <item>
  <title>Comment from jsymmetric</title>
  <description><![CDATA[<br />I second this proposal.<br />SMIL 3.0 just became a W3C recommendation this month and <br />for the first time there is a text standard. <br /><br />The W3C has done their job creating the languages, SMIL and smilText, xiph.org are doing their job by creating free audio and video formats.<br /><br />We just need the software to take advantage of<br />these new multimedia advances.<br /><br />Windows Ambulant will work on Wine on Ubuntu but Ambulant<br />needs to be in the repositories and supported. <br /><br />Using SMIL 3.0 and xiph media, schools and<br />small businesses can use multimedia to improve the quality of<br />education and the quality of their products.<br /><br />I think this is another selling point for Ubuntu.<br /><br />http://www.ambulantplayer.org/<br /><br />Take Care,<br /><br />]]></description>
  <pubDate>Tue, 30 Dec 2008 19:20:26 +0000</pubDate>
</item>
        <item>
  <title>Comment from lorenzosu</title>
  <description><![CDATA[SMIL is a very promising alternative to (closed source, proprietary) flash. Having the Ambulant player and Ambulant Firefox plug-in included in Ubuntu would improve its use and visibility.<br /><br />Kind regards,<br />Lorenzo.]]></description>
  <pubDate>Thu, 08 Jan 2009 14:58:03 +0000</pubDate>
</item>
        <item>
  <title>Comment from jsymmetric</title>
  <description><![CDATA[<br />This is an example of a simple training SMIL file. It's pretty straight forward. Create your areas and fill those areas with media. <br /><br />Easy to write and easy to edit. When implemented, SMIL 3.0 with xiph.org's media can become essential technology to businesses, IMO.<br /><br />seq = sequence containers <br />par = parallel containers<br /><br />--------------------------------------------------------------<br /><br /><br /><br /><br /><br />   <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />   <br /><br />   <br /><br /><br /><br /><br /><br />    <br /> <br />     <br /><br /><br />     <br />Step one...<br />     <br /><br />     <br /><br />     <br /><br /> <br />    <br /><br /> <br /><br /><br /><br /><br />     <br />Step two...<br />     <br /><br />     <br /><br />     <br /><br />    <br /> <br /><br /> <br /><br /><br /><br /><br />     <br />Step three...<br />     <br /><br />     <br /><br />     <br /><br /><br /> <br /> <br /><br /> <br /><br /><br /><br /><br />]]></description>
  <pubDate>Wed, 14 Jan 2009 19:44:57 +0000</pubDate>
</item>
        <item>
  <title>Comment from jsymmetric</title>
  <description><![CDATA[<br />Okay I can't post actual SMIL code, as the previous comment shows. This is the code without angle brackets and usually<br />the elements are nested to make it easier to read.<br /><br />-------------------------------------------------------------<br /><br />smil xmlns="http://www.w3.org/ns/SMIL"<br /><br />  <br />head<br />   <br />meta name="title" content="training_example" /<br />   <br />layout<br />    <br />root-layout  xml:id="root_main" title="training_example" backgroundColor="white" width="1000" height="600" /<br />    <br />region  xml:id="region_img" title="training_example" top="150" left="50" width="400" height="400" z-index="1" /<br />    <br />region  xml:id="region_vid" title="training_example" top="150" left="550" width="400" height="300" z-index="1" /<br />    <br />region  xml:id="region_text" title="training_example" top="30" left="50" width="900" height="120" z-index="2" <br />textAlign="center" textFontSize="44px" textColor="black"   /<br />   <br />/layout<br />   <br />transition  xml:id="fade_1" dur="1s" type="fade" /<br />   <br />/head<br /> <br /> <br />body<br />    <br />seq<br />    <br />par begin="1s" dur="33s"  <br />     <br />audio xml:id="audio_1"  src="media/audio_1.ogg" /<br />     <br />smilText xml:id="text_1" region="region_text" transIn="fade_1" transOut="fade_1"  <br /><br />Step one...<br /><br />/smilText<br />     <br />img xml:id="image_1" src="media/pic_1.jpg" region="region_img" transIn="fade_1" transOut="fade_1" fit="fill"  /<br />     <br />video xml:id="video_1" src="media/video_1.ogg" region="region_vid" transIn="fade_1" transOut="fade_1"fit="fill" /<br /><br />/par<br />    <br />    <br />par begin="1s" dur="33s"  <br />     <br />audio xml:id="audio_2"  src="media/audio_2.ogg" /<br />     <br />smilText xml:id="text_2" region="region_text" transIn="fade_1" transOut="fade_1"  <br />     <br />Step two...<br />     <br />/smilText<br /><br />img xml:id="image_2" src="media/pic_2.jpg" region="region_img" transIn="fade_1" transOut="fade_1" fit="fill"  /<br />     <br />video xml:id="video_2" src="media/video_2.ogg" region="region_vid" transIn="fade_1" transOut="fade_1"fit="fill" /<br />    <br />/par <br /><br />par begin="1s" dur="33s"  <br />     <br />audio xml:id="audio_3"  src="media/audio_3.ogg" /<br />     <br />smilText xml:id="text_3" region="region_text" transIn="fade_1" transOut="fade_1"  <br />     <br />Step three...<br />     <br />/smilText<br />     <br />img xml:id="image_3" src="media/pic_3.jpg" region="region_img" transIn="fade_1" transOut="fade_1" fit="fill"  /<br />     <br />video xml:id="video_3" src="media/video_3.ogg" region="region_vid" transIn="fade_1" transOut="fade_1"fit="fill" /<br />    <br />/par<br />/seq<br />/body<br />/smil<br /><br /><br /><br /><br /><br /><br />]]></description>
  <pubDate>Wed, 14 Jan 2009 19:56:54 +0000</pubDate>
</item>
        <item>
  <title>Comment from jsymmetric</title>
  <description><![CDATA[<br />Schools can use SMIL and Xiph multimedia to teach and make it fun.<br /><br />This is an example of Lincoln's Gettysburg address. The instructor can<br />have students record the audio, make an image that goes along with the text. At the end of the project the students will end up remembering a famous speech.<br /><br />Plus the students become use to expressing their ideas with text, images, audio... this is the new ink and paper.<br /><br />-----------------------------------------------------------<br /><br /><br />smil xmlns="http://www.w3.org/ns/SMIL"<br /><br />head<br />   <br />meta name="title" content="school_example" /<br />   <br />layout<br />    <br />root-layout  xml:id="root_main" title="school_example" backgroundColor="black" width="988" height="680" /<br />    <br />region  xml:id="region_img"  title="school_example" top="0" left="0" width="988" height="680" z-index="1" /<br />    <br />region  xml:id="region_text" title="school_example"  top="180" left="70" width="420" height="300" z-index="2" <br />textAlign="left" textColor="blue" textFontSize="37px" /<br />   <br />/layout<br />   <br />transition  xml:id="fade_1" dur="1s" type="fade" /<br />   <br />/head<br />  <br /><br />body<br />   <br />seq<br />     <br />par begin="1s" dur="12s" <br />     <br />img  id="img_1" transIn="fade_1" transOut="fade_1" region="region_img"  src="media/lincoln_1.jpg" /<br />     <br />audio  xml:id="audio1" src="media/audio_1.ogg" /<br />     <br />smilText xml:id="t_1" region="region_text"  transIn="fade_1" transOut="fade_1"   <br />      <br />"Fourscore and seven years ago<br />our fathers brought forth on this <br />continent a new nation<br />     <br />/smilText<br />/par<br /><br />par  dur="12s" <br />     <br />img  id="img_2" transIn="fade_1" transOut="fade_1" region="region_img" src="media/lincoln_2.jpg" /<br />     <br />audio  xml:id="audio2"  src="media/audio_2.ogg" /<br />     <br />smilText xml:id="t_2" region="region_text" transIn="fade_1" transOut="fade_1" <br />      <br />conceived in liberty and dedicated to the <br />proposition that all men are created equal.<br />     <br />/smilText	<br />/par <br /><br />par  dur="12s" <br />     <br />img  id="img_3" transIn="fade_1" transOut="fade_1" region="region_img"  src="media/lincoln_3.jpg" /<br />     <br />audio  xml:id="audio3"  src="media/audio_3.ogg" /<br />     <br />smilText xml:id="t_3" region="region_text" transIn="fade_1" transOut="fade_1" <br />      <br />Now we are engaged in a great civil war, <br />testing whether that nation or any nation so <br />conceived and so dedicated can long endure.<br /> <br />/smilText<br />/par<br /><br /><br />/seq<br />/body<br />/smil<br /><br /><br /><br /><br /><br /><br /><br /><br />]]></description>
  <pubDate>Wed, 14 Jan 2009 20:03:25 +0000</pubDate>
</item>
        <item>
  <title>Comment from jsymmetric</title>
  <description><![CDATA[<br />From small screens MMS to large digital signage, SMIL is making inroads.<br />On the Internet it hasn't, now with smilText and xiph media it's time.<br /><br />But in the other profiles Mobile and Daisy SMIL files are in containers MMS has mime-multipart and Daisy uses IDPF's ePub format.<br /><br />With the disparate speeds in Internet connections, all of the separate SMIL files may not download in time, making the SMIL presentation ineffective. If Ubuntu adds Ambulant and supports it, the next step would be to standardize a container, such as the Daisy profile. <br /><br />A zip file that Ambulant would open automatically and then SMIL content could be offered online or an ePub zip or maybe a combination of both. That's the next step in taking over the Web :)<br /><br />IDPF's Digital Book Standards FAQs:<br />idpf.org/forums/viewtopic.php?t=22]]></description>
  <pubDate>Wed, 14 Jan 2009 20:06:49 +0000</pubDate>
</item>
        <item>
  <title>Comment from gnurag</title>
  <description><![CDATA[Great idea!<br />I hope it's going to be implemented soon...despite the few votes so far ;-)<br /><br />I really look forward to a flash alternative.<br /><br />Also, I'd like to find a player capable of playing easily SMIL files. I often have trouble with Helix and RealPlayer..<br /><br />But I have to say that sometimes the SMIL code was not well written and that's the reason why the player can't load it.<br />Sometimes it seems to be a problem of connection speed, but I can't really understand it..<br /><br />I'm a newbie in this technology, but I'm curious to learn and see it have success.<br /><br />Vote!]]></description>
  <pubDate>Thu, 26 Feb 2009 14:45:05 +0000</pubDate>
</item>
      </channel>
</rss>
