<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Authoring Mobile Video Content for Flash Lite 2.x</title>
	<atom:link href="http://nhippe.com/2007/04/05/hello-world/feed/" rel="self" type="application/rss+xml" />
	<link>http://nhippe.com/2007/04/05/hello-world/</link>
	<description>Flash Video Every Where</description>
	<lastBuildDate>Fri, 04 Nov 2011 13:57:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Milly</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-294</link>
		<dc:creator><![CDATA[Milly]]></dc:creator>
		<pubDate>Tue, 28 Oct 2008 16:03:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-294</guid>
		<description><![CDATA[Good post.]]></description>
		<content:encoded><![CDATA[<p>Good post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nhippe</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-269</link>
		<dc:creator><![CDATA[nhippe]]></dc:creator>
		<pubDate>Wed, 27 Feb 2008 02:48:58 +0000</pubDate>
		<guid isPermaLink="false">#comment-269</guid>
		<description><![CDATA[Hello Locos, the example in this article uses an external 3gp file (myLocalVideo.3gp). You can include video and use the Flash Lite 2.x player it just needs to be device video (e.g. 3gp). You can download the player at the following location:

http://www.adobe.com/devnet/devices/

I hope this helps,

N]]></description>
		<content:encoded><![CDATA[<p>Hello Locos, the example in this article uses an external 3gp file (myLocalVideo.3gp). You can include video and use the Flash Lite 2.x player it just needs to be device video (e.g. 3gp). You can download the player at the following location:</p>
<p><a href="http://www.adobe.com/devnet/devices/" rel="nofollow">http://www.adobe.com/devnet/devices/</a></p>
<p>I hope this helps,</p>
<p>N</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Locos</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-263</link>
		<dc:creator><![CDATA[Locos]]></dc:creator>
		<pubDate>Tue, 26 Feb 2008 05:49:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-263</guid>
		<description><![CDATA[hi there, i have a 7610 and i&#039;m using FL 2.0 in it. Also, I&#039;m going to finish my thesis and project. I want to make a learning software that have some video inside. But i think if i put in swf file the swf will be big and may cause the mobile phone crash. 

can i use a swf and use outside 3GP video so the swf only role as a player for the 3GP vid. What do you think? i can build a application like that on 7610?
or need FL 3 ?

i also planning to buy a E65 .. but i dont know that E65 support FLite 3 or not. the E65 is a FLite 1.1 enable but can we use FL 3 developer in E65 ?

sorry.. i&#039;m not a native english speaker
thanks]]></description>
		<content:encoded><![CDATA[<p>hi there, i have a 7610 and i&#8217;m using FL 2.0 in it. Also, I&#8217;m going to finish my thesis and project. I want to make a learning software that have some video inside. But i think if i put in swf file the swf will be big and may cause the mobile phone crash. </p>
<p>can i use a swf and use outside 3GP video so the swf only role as a player for the 3GP vid. What do you think? i can build a application like that on 7610?<br />
or need FL 3 ?</p>
<p>i also planning to buy a E65 .. but i dont know that E65 support FLite 3 or not. the E65 is a FLite 1.1 enable but can we use FL 3 developer in E65 ?</p>
<p>sorry.. i&#8217;m not a native english speaker<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nhippe</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-199</link>
		<dc:creator><![CDATA[nhippe]]></dc:creator>
		<pubDate>Tue, 12 Feb 2008 05:35:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-199</guid>
		<description><![CDATA[When you are using device video it is considerably more simple than using Flash Video. You create a video object in the library of the Flash authoring too. You drag the video object to the stage and give it an instance name (i.e. vid). In your actionscript you would use the following to play the video if it is local and in the same directory as the swf 

vid.play(&quot;a1_ring.3gp&quot;);

If the video is being streamed from a media server via rtsp you would use the following:

vid.play(&quot;rtsp://whateverserver.com/a1_ring.3gp&quot;);

Yes that is why this solution is so simple, the device is doing everything. I do not think there is anyway to customize play(). With that said there is a great deal more functionality when using Flash video than device video. In order to use Flash video it will require the Flash Lite 3 player on the device. In the mean time you will need to use device video such that it is. Hope that helps.]]></description>
		<content:encoded><![CDATA[<p>When you are using device video it is considerably more simple than using Flash Video. You create a video object in the library of the Flash authoring too. You drag the video object to the stage and give it an instance name (i.e. vid). In your actionscript you would use the following to play the video if it is local and in the same directory as the swf </p>
<p>vid.play(&#8220;a1_ring.3gp&#8221;);</p>
<p>If the video is being streamed from a media server via rtsp you would use the following:</p>
<p>vid.play(&#8220;rtsp://whateverserver.com/a1_ring.3gp&#8221;);</p>
<p>Yes that is why this solution is so simple, the device is doing everything. I do not think there is anyway to customize play(). With that said there is a great deal more functionality when using Flash video than device video. In order to use Flash video it will require the Flash Lite 3 player on the device. In the mean time you will need to use device video such that it is. Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MCG4</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-194</link>
		<dc:creator><![CDATA[MCG4]]></dc:creator>
		<pubDate>Mon, 11 Feb 2008 13:33:44 +0000</pubDate>
		<guid isPermaLink="false">#comment-194</guid>
		<description><![CDATA[Hi Nick,
        Post is excellent. But still have some query on mobile video streaming. Pls clear it …
I have tried to create a video appliation, viz streams a video from remote server and plays in my device. I used video class and play method. Here, i have some queries ....
==&gt; Is video.play() internally connecting to remote rtsp server &amp; streaming video?
==&gt;Is decoding and rendering part handled by the device player ???
==&gt;Or Play() method is using symbian libraries to demultiplex &amp; decode RTP data for decoding and rendering?
==&gt;In remote video streaming, upto what extent play method is using device player?
==&gt;Finally, can we customize play() ...
Pls help on this. ...

-MCG4]]></description>
		<content:encoded><![CDATA[<p>Hi Nick,<br />
        Post is excellent. But still have some query on mobile video streaming. Pls clear it …<br />
I have tried to create a video appliation, viz streams a video from remote server and plays in my device. I used video class and play method. Here, i have some queries &#8230;.<br />
==&gt; Is video.play() internally connecting to remote rtsp server &amp; streaming video?<br />
==&gt;Is decoding and rendering part handled by the device player ???<br />
==&gt;Or Play() method is using symbian libraries to demultiplex &amp; decode RTP data for decoding and rendering?<br />
==&gt;In remote video streaming, upto what extent play method is using device player?<br />
==&gt;Finally, can we customize play() &#8230;<br />
Pls help on this. &#8230;</p>
<p>-MCG4</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy MacLaren</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-151</link>
		<dc:creator><![CDATA[Andy MacLaren]]></dc:creator>
		<pubDate>Sat, 02 Feb 2008 05:50:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-151</guid>
		<description><![CDATA[Really a fantastic hello world Nick, looking forward to you future posts and offcourse more flash for devices]]></description>
		<content:encoded><![CDATA[<p>Really a fantastic hello world Nick, looking forward to you future posts and offcourse more flash for devices</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nhippe</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-135</link>
		<dc:creator><![CDATA[nhippe]]></dc:creator>
		<pubDate>Mon, 28 Jan 2008 19:59:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-135</guid>
		<description><![CDATA[Hello Bruce,
Yes you are correct, in order to play in the browser the Flash plugin needs to be ported to the embedded browser. I am not sure what device and OS you are using but if it is Windows Mobile or Symbian you can download the Flash Lite player to play standalone SWFs. 


http://www.adobe.com/cfusion/entitlement/index.cfm?e=flashlite2_1_winmobile_download

https://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Fflashlite3

We will start to see more browser integration this year. Hope that helps.]]></description>
		<content:encoded><![CDATA[<p>Hello Bruce,<br />
Yes you are correct, in order to play in the browser the Flash plugin needs to be ported to the embedded browser. I am not sure what device and OS you are using but if it is Windows Mobile or Symbian you can download the Flash Lite player to play standalone SWFs. </p>
<p><a href="http://www.adobe.com/cfusion/entitlement/index.cfm?e=flashlite2_1_winmobile_download" rel="nofollow">http://www.adobe.com/cfusion/entitlement/index.cfm?e=flashlite2_1_winmobile_download</a></p>
<p><a href="https://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Fflashlite3" rel="nofollow">https://www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5Fflashlite3</a></p>
<p>We will start to see more browser integration this year. Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce Holliday</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-134</link>
		<dc:creator><![CDATA[Bruce Holliday]]></dc:creator>
		<pubDate>Sat, 26 Jan 2008 21:14:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-134</guid>
		<description><![CDATA[Hello,
At last an excellent mobile video resource that makes sense ! Ive been doing some testing and have discovered that the swf doesnt play the video when sat in an htm page; does work in the FCS3 test. &#039;Cos its a standalone I guess. I have installed the fp7 cab but Ive missed something Im sure as swf files are not recognised to play directly when clicking on them. To allow swf to play as a true standalone is there a cab ?

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hello,<br />
At last an excellent mobile video resource that makes sense ! Ive been doing some testing and have discovered that the swf doesnt play the video when sat in an htm page; does work in the FCS3 test. &#8216;Cos its a standalone I guess. I have installed the fp7 cab but Ive missed something Im sure as swf files are not recognised to play directly when clicking on them. To allow swf to play as a true standalone is there a cab ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Perry</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-4</link>
		<dc:creator><![CDATA[Bill Perry]]></dc:creator>
		<pubDate>Wed, 29 Aug 2007 08:02:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-4</guid>
		<description><![CDATA[Fantastic article Nick, thanks for taking the time to gather your thoughts and share your ideas and workflow for device video with FL2.0.]]></description>
		<content:encoded><![CDATA[<p>Fantastic article Nick, thanks for taking the time to gather your thoughts and share your ideas and workflow for device video with FL2.0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: biskero.org</title>
		<link>http://nhippe.com/2007/04/05/hello-world/#comment-3</link>
		<dc:creator><![CDATA[biskero.org]]></dc:creator>
		<pubDate>Mon, 20 Aug 2007 13:49:34 +0000</pubDate>
		<guid isPermaLink="false">#comment-3</guid>
		<description><![CDATA[[...] mobilenation. The author works for the Adobe Mobile and Devices bu (name?). The first post is about Flash Lite 2.1 and video (Scott mention it) and it&#8217;s a pretty detailed one, examples [...]]]></description>
		<content:encoded><![CDATA[<p>[...] mobilenation. The author works for the Adobe Mobile and Devices bu (name?). The first post is about Flash Lite 2.1 and video (Scott mention it) and it&#8217;s a pretty detailed one, examples [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

