<?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/"
		>
<channel>
	<title>Comments on: RTMP &#8211; microphone and camera access on J2ME Lite</title>
	<atom:link href="http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/feed/" rel="self" type="application/rss+xml" />
	<link>http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/</link>
	<description>-- &#34;in a flash&#34;</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:48:42 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rajdeep</title>
		<link>http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/comment-page-1/#comment-16</link>
		<dc:creator>Rajdeep</dc:creator>
		<pubDate>Sun, 07 Feb 2010 18:02:46 +0000</pubDate>
		<guid isPermaLink="false">http://flashvisions.com/?p=1044#comment-16</guid>
		<description>Welcome :) I will update that to others. A very nice work though in bringing RTMP to J2ME. Keep up the good work.</description>
		<content:encoded><![CDATA[<p>Welcome <img src='http://flashvisions.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I will update that to others. A very nice work though in bringing RTMP to J2ME. Keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei</title>
		<link>http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/comment-page-1/#comment-15</link>
		<dc:creator>Andrei</dc:creator>
		<pubDate>Sun, 07 Feb 2010 17:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://flashvisions.com/?p=1044#comment-15</guid>
		<description>I agree that documentation is far from perfect.
Will work on this direction also.

Thanks for your feedback!</description>
		<content:encoded><![CDATA[<p>I agree that documentation is far from perfect.<br />
Will work on this direction also.</p>
<p>Thanks for your feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajdeep</title>
		<link>http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/comment-page-1/#comment-14</link>
		<dc:creator>Rajdeep</dc:creator>
		<pubDate>Sun, 07 Feb 2010 17:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://flashvisions.com/?p=1044#comment-14</guid>
		<description>well then i am sure the code snippet provided, under &quot;Publish audio source as live stream&quot; - 

MyMicrophone mic = new MyMicrophone();
stream.attachAudio(mic);
stream.publish(&quot;streamName&quot;, NetStream.LIVE);
mic.start();

seems to me as a customer misguidance. Because that is what myself and my fellow J2ME developers can make out from it. Perhaps a better documentation ?</description>
		<content:encoded><![CDATA[<p>well then i am sure the code snippet provided, under &#8220;Publish audio source as live stream&#8221; &#8211; </p>
<p>MyMicrophone mic = new MyMicrophone();<br />
stream.attachAudio(mic);<br />
stream.publish(&#8220;streamName&#8221;, NetStream.LIVE);<br />
mic.start();</p>
<p>seems to me as a customer misguidance. Because that is what myself and my fellow J2ME developers can make out from it. Perhaps a better documentation ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei</title>
		<link>http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/comment-page-1/#comment-13</link>
		<dc:creator>Andrei</dc:creator>
		<pubDate>Sun, 07 Feb 2010 17:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://flashvisions.com/?p=1044#comment-13</guid>
		<description>Hi Rajdeep,

I am the library developer :)
The library provides RTMP Client side API only.


The idea is that you need to wrap audio capture and encoding functionality in the IMicrophone interface (the same for video capture).

But again neither capture nor encoding functionality is not available in the library.

Regards, Andrei.</description>
		<content:encoded><![CDATA[<p>Hi Rajdeep,</p>
<p>I am the library developer <img src='http://flashvisions.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
The library provides RTMP Client side API only.</p>
<p>The idea is that you need to wrap audio capture and encoding functionality in the IMicrophone interface (the same for video capture).</p>
<p>But again neither capture nor encoding functionality is not available in the library.</p>
<p>Regards, Andrei.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajdeep</title>
		<link>http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/comment-page-1/#comment-12</link>
		<dc:creator>Rajdeep</dc:creator>
		<pubDate>Sun, 07 Feb 2010 14:57:23 +0000</pubDate>
		<guid isPermaLink="false">http://flashvisions.com/?p=1044#comment-12</guid>
		<description>Hello Andrei,

Take a look at Example 4.5 - Publish audio source as live stream.

This is what the developer&#039;s page snippet looks like:

MyMicrophone mic = new MyMicrophone();
stream.attachAudio(mic);
stream.publish(&quot;streamName&quot;, NetStream.LIVE);
mic.start();</description>
		<content:encoded><![CDATA[<p>Hello Andrei,</p>
<p>Take a look at Example 4.5 &#8211; Publish audio source as live stream.</p>
<p>This is what the developer&#8217;s page snippet looks like:</p>
<p>MyMicrophone mic = new MyMicrophone();<br />
stream.attachAudio(mic);<br />
stream.publish(&#8220;streamName&#8221;, NetStream.LIVE);<br />
mic.start();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei</title>
		<link>http://flashvisions.com/flashlite/rtmp-microphone-and-camera-access-on-j2me-lite/comment-page-1/#comment-11</link>
		<dc:creator>Andrei</dc:creator>
		<pubDate>Sun, 07 Feb 2010 14:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://flashvisions.com/?p=1044#comment-11</guid>
		<description>It doesn&#039;t neither capture audio/video nor encode it. Just provides RTMP API similar to ActionScript.</description>
		<content:encoded><![CDATA[<p>It doesn&#8217;t neither capture audio/video nor encode it. Just provides RTMP API similar to ActionScript.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
