<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Xuggle &#187; Uncategorized</title>
	<atom:link href="http://xuggle.wordpress.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://xuggle.wordpress.com</link>
	<description>xu‧ggle (zŭ&#039; gl) v. To freely encode, decode, and experience audio and video.</description>
	<lastBuildDate>Fri, 18 Jun 2010 03:02:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='xuggle.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/b6dccc0c635d867cfc404704644a42c6?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Xuggle &#187; Uncategorized</title>
		<link>http://xuggle.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://xuggle.wordpress.com/osd.xml" title="Xuggle" />
	<atom:link rel='hub' href='http://xuggle.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Xuggle now has librtmp support</title>
		<link>http://xuggle.wordpress.com/2010/06/18/xuggle-now-has-librtmp-support/</link>
		<comments>http://xuggle.wordpress.com/2010/06/18/xuggle-now-has-librtmp-support/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 03:00:12 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=425</guid>
		<description><![CDATA[First the bad news; The FFmpeg team has asked me to remove our FAAC-based AAC audio encoder from the binaries we build of Xuggle.  They believe the FAAC encoder is not redistributable as a binary form and, while they don&#8217;t actually have anything to do with the FAAC license, have put Xuggle on notice.  So, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=425&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First the bad news; The FFmpeg team has asked me to remove our FAAC-based AAC  audio encoder from the binaries we build of Xuggle.  They believe the  FAAC encoder is not redistributable as a binary form and, while they  don&#8217;t actually have anything to do with the FAAC license, have put  Xuggle on notice.  So, in an attempt to get off notice, we no longer  auto-build FAAC.  Sorry.  That said, if you build Xuggle from source  yourself and have already built and installed FAAC on your machine,  we&#8217;ll link against it if you ask us to.</p>
<p>Now the somewhat inconvenient news; Xuggle now requires libssl, libcrypto and libz to  build.  If you&#8217;re on ubuntu you probably have those already but to be  sure:</p>
<pre>apt-get install libssl-dev</pre>
<p>This further complicates our windows builds, which remain broken for now.  In fact, we recommend people build from scratch to get the latest version as we&#8217;re unlikely to bundle up a formal release soon.</p>
<p>But finally, the GREAT news.  If you install libssl and build Xuggler from  source, we now ship Xuggle with the excellent librtmp library.  That&#8217;s  right&#8230; &#8216;<a href="http://rtmpdump.mplayerhq.hu/">rtmpdump</a>&#8216; is now bundled with Xuggle, but there&#8217;s much more.   The FFmpeg we ship with also uses librtmp for RTMP support.  And the  Xuggle Java API uses it too.  In other words, the tip of tree Xuggle now  has RTMP, RTMPE, RTMPT, and RTMPS support and much better debugging.   It ships with rtmpdump and other tools.  It allows you to separate  application name from path name.  It can intuit your personal desires  and make your dreams come true.  It allows you to embed arbitrary AMF in  requests (so may work with other CDNs like Akamai and others for their  custom security crap).  It supports secure-token.  It supports buffering  (like the flash player).  It can make excellent soufflé.  It can &#8220;lie&#8221;  about the webpage you came from.    It is way better than a smart  phone*.</p>
<p>Unfortunately it means a slight change in user interface for using  FFmpeg with our streams.  Here&#8217;s what a new broadcast of a live stream  looks like:</p>
<pre>ffmpeg -re -i ~/Work/xuggle-xuggler-main/test/fixtures/ucl_h264_aac.mp4 \
 -acodec copy -vcodec copy -f flv "rtmp://10.10.1.134/appname  playpath=test live=true"</pre>
<p>The quotes for the URL are very important.  You can now pass any  parameter RTMPDump supports on the URL provided it is separated via a  non-URL-encoded space from the actual URL.</p>
<p>Here&#8217;s recording a file from a RTMP server:</p>
<pre>ffmpeg -f flv -i "rtmp://10.10.1.134/appname playpath=stream1" \
  -acodec  copy -vcodec copy -y recording.flv</pre>
<p>And if you&#8217;d like a blow-by-blow formatted packet dump to watch while  doing that:</p>
<pre>ffmpeg -debug 50 -level 50 -f flv -i "rtmp://10.10.1.134/appname  playpath=stream1" \
 -acodec copy -vcodec copy -y recording.flv</pre>
<p>Finally, thanks to the kind folks at <a href="http://www.connectsolutions.com/">ConnectSolutions</a> who continue to sponsor this work!</p>
<p>- Art</p>
<p>* <a href="http://www.youtube.com/watch?v=jbHF63b7g50">way better than an iphone</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=425&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/06/18/xuggle-now-has-librtmp-support/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>Xuggle now part of ConnectSolutions</title>
		<link>http://xuggle.wordpress.com/2010/04/27/xuggle-now-part-of-connectsolutions/</link>
		<comments>http://xuggle.wordpress.com/2010/04/27/xuggle-now-part-of-connectsolutions/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 12:37:35 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=419</guid>
		<description><![CDATA[Hi folks, Robert and I have some exciting news we’re announcing today: We’ve been acquired by ConnectSolutions, LLC and have joined their kick-ass team. This is great news for Robert and me, because it helps us get the technology we’ve been working hard on into the hands of paying customers. But it’s also great news [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=419&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi folks,</p>
<p>Robert and I have some exciting news we’re announcing today: We’ve been acquired by <a href="http://www.connectsolutions.com/">ConnectSolutions, LLC</a> and have joined their kick-ass team.  This is great news for Robert and me, because it helps us get the technology we’ve been working hard on into the hands of paying customers.  But it’s also great news for the <a href="http://www.xuggle.com/xuggler">Xuggler</a> community!</p>
<p>This deal enables us to continue working on <a href="http://www.xuggle.com/">Xuggle’s</a> technology, and <a href="http://www.connectsolutions.com/">ConnectSolutions</a> is committed to keeping <a href="http://www.xuggle.com/xuggler">Xuggler</a> open-source.  That means Robert and I can continue our involvement in the video space, but now we have a profitable company behind the project!</p>
<p>I’m sure some of you have some questions, and so here’s a little Q&amp;A section about the deal.</p>
<p>- Art</p>
<h2>What just happened?</h2>
<p><a href="http://www.connectsolutions.com/">ConnectSolutions</a> just announced they acquired <a href="http://www.xuggle.com/">Xuggle</a>, all of our source code, and our team.  Effective immediately we work for ConnectSolutions.  To find out more about <a href="http://www.connectsolutions.com/">ConnectSolutions</a>, visit their website: <a href="http://www.connectsolutions.com/">www.connectsolutions.com</a>.</p>
<h2>Is this a good thing for <a href="http://www.xuggle.com/">Xuggle</a>?</h2>
<p>Hell yes!  We get to deploy our technology with real customers in a real business environment, with a team of people we’re excited to work with.  What’s not to love?</p>
<h2>Is this a good thing for the <a href="http://www.xuggle.com/xuggler">Xuggler</a> open-source project?</h2>
<p>Hell yes!  This means Robert and I can afford to still be involved with the project.  It means we’ll be integrating <a href="http://www.xuggle.com/xuggler">Xuggler</a> into products that are used by thousands of live audience members and by real paying customers.  And it means any additional updates we release to <a href="http://www.xuggle.com/xuggler">Xuggler</a> will be tested even more!</p>
<h2>Will <a href="http://www.connectsolutions.com/">ConnectSolutions</a> continue to leave <a href="http://www.xuggle.com/xuggler">Xuggler</a> in the public domain?</h2>
<p>Yes.  As part of this transaction, <a href="http://">ConnectSolutions</a> has committed to leaving <a href="http://www.xuggle.com/xuggler">Xuggler</a> in the public domain as LGPL-licensed software.  In addition, Art and Robert will continue to provide support as we desire to the project.</p>
<h2>Will <a href="http://www.connectsolutions.com/">ConnectSolutions</a> provide commercial support for <a href="http://www.xuggle.com/xuggler">Xuggler</a>?</h2>
<p><a href="http://www.connectsolutions.com/">ConnectSolutions</a> has no current plans to provide commercial support for <a href="http://www.xuggle.com/xuggler">Xuggler</a> at this time.</p>
<h2>But I wanted to license some of Xuggle’s closed-source technology; can I still do that?</h2>
<p>Our focus over the next year will be integrating Xuggle&#8217;s closed-source technology into <a href="http://www.connectsolutions.com/">ConnectSolutions</a>’ product suite.  If you’d like to become a customer of <a href="http://www.connectsolutions.com/">ConnectSolutions</a>, contact us at <a href="http://www.connectsolutions.com/">http://www.connectsolutions.com/contact.html</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/419/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=419&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/04/27/xuggle-now-part-of-connectsolutions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>We&#8217;re Hiring&#8230;</title>
		<link>http://xuggle.wordpress.com/2010/03/05/were-hiring/</link>
		<comments>http://xuggle.wordpress.com/2010/03/05/were-hiring/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 05:55:53 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=415</guid>
		<description><![CDATA[Hi guys, We have some exciting news: We&#8217;re hiring!  If you meet the following description, I&#8217;d love to chat with you:  You are an enthusiastic, self-driven rock star with experience writing high-volume Java-based servers supporting rich Internet applications for real users.  You love to get code into production, but know when to step back and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=415&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>We have some exciting news: We&#8217;re hiring!  If you meet the following description, I&#8217;d love to chat with you:  You are an enthusiastic, self-driven rock star with experience writing high-volume Java-based servers supporting rich Internet applications for real users.  You love to get code into production, but know when to step back and invest in architecture as well.  You like writing code, but also love mentoring your team mates as well.  You love learning new technologies and move from novice to expert quickly.  Terms like Java, Erlang, XMPP, EJabberD, Spring, AMQP, RabbitMQ, FFmpeg, Xuggle, Hudson, JUnit, Virtualization, Flash or MySQL make you curious.</p>
<p>Background on us: We are a small profitable startup with real customers you’ve heard of.  We believe that solving real customer problems is the path to success.  We believe that people want to collaborate, but collaboration means more than text – it means seeing and hearing each other.  We believe that great technology is important, but a great team environment is as important.  We believe that family and work are not mutually exclusive.  We believe that team members should have health-care and should share in the profits we generate today.</p>
<p>If interested, please drop me a note at <a href="mailto:aclarke@xuggle.com">aclarke@xuggle.com</a> and tell me  a little about yourself.  And for bonus points, tell me how you&#8217;ve used Xuggle, Hibernate and/or Spring to build really cool shit before.<br />
<strong><br />
Primary Duties and Responsibilities</strong></p>
<ul type="disc">
<li>You will work with a larger team to architect and       develop collaboration applications.</li>
<li>You will work primarily in Java and SQL, and will work       closely with Flex &amp; HTML developers.</li>
<li>You will provide architecture guidance to multiple       development teams</li>
<li>You will be a significant individual contributor of       Java code</li>
<li>You will review code written by others and serve as a       mentor</li>
</ul>
<p><strong>Required Job Related Skills and  Experience</strong></p>
<ul type="disc">
<li>You have at least five years experience writing server-side code in a production client-server environment (Java preferred).</li>
<li>You have experience with high-volume production       environments.</li>
<li>You have worked with HTML or Flex teams and provided       APIs they use.</li>
<li>You believe writing unit tests is a critical part of       the development cycle.</li>
<li>You have worked successfully in a fast-paced environment, adapting to changing priorities and features. and making appropriate decisions based on risk.</li>
<li>You quickly learn new technologies on your own.</li>
<li>You have strong written and verbal communication skills.</li>
<li>You have a BS degree in computer science or equivalent experience.</li>
<li>You are a US Citizen.</li>
<li>You are based in the Bay Area, California, USA and willing to work in Emeryville.</li>
</ul>
<p><strong>Additional Qualifications</strong></p>
<ul type="disc">
<li>Experience with Red5, WowzaMedia, FFmpeg, C++, Erlang,       Spring, Hibernate is good.</li>
<li>Experience with Java application servers such as       Tomcat, Jetty, or others.</li>
<li>Operational experience with both Linux and Windows       environments.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/415/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=415&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/03/05/were-hiring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>New RTMP Tutorial</title>
		<link>http://xuggle.wordpress.com/2010/02/02/new-rtmp-tutorial/</link>
		<comments>http://xuggle.wordpress.com/2010/02/02/new-rtmp-tutorial/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:51:42 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=413</guid>
		<description><![CDATA[The feedback on Xuggler 3.4 has been great, but a lot of people have been asking for RTMP examples.  So I threw together a quick tutorial showing how to use Xuggler 3.4 and RTMP.  The tutorial focuses on using the &#8216;ffmpeg&#8217; command-line tool to show usage.  You can use the Xuggler API for more flexible [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=413&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The feedback on <a href="http://www.xuggle.com/xuggler/downloads/3.4.final.jsp">Xuggler 3.4</a> has been great, but a lot of people have been asking for RTMP examples.  So I threw together a quick tutorial showing how to use Xuggler 3.4 and RTMP.  The tutorial focuses on using the &#8216;ffmpeg&#8217; command-line tool to show usage.  You can use the Xuggler API for more flexible programming if you need, but that&#8217;s a tutorial for another day.</p>
<p>You can find the <a href="http://wiki.xuggle.com/Live_Encoding_Tutorial">tutorial here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/413/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=413&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/02/02/new-rtmp-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>Introducing Xuggler 3.4</title>
		<link>http://xuggle.wordpress.com/2010/01/31/introducing-xuggler-3-4/</link>
		<comments>http://xuggle.wordpress.com/2010/01/31/introducing-xuggler-3-4/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 21:30:22 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=411</guid>
		<description><![CDATA[OK, a few weeks later than we hoped, but we&#8217;ve officially called Xuggler 3.4 done.  See the release notes here. Big new features: Support for reading and writing RTMP urls (so works with Wowza and FMS). Support for B-frame H264 encoding 10% faster H264 decoding Support for FFmpeg preset files Support for encoding AMR audio [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=411&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>OK, a few weeks later than we hoped, but we&#8217;ve officially called Xuggler 3.4 done.  See the release <a href="http://www.xuggle.com/xuggler/downloads/3.4.final.jsp">notes here</a>.</p>
<p>Big new features:</p>
<ul>
<li>Support for reading and writing RTMP urls (so works with Wowza and FMS).</li>
<li>Support for B-frame H264 encoding</li>
<li>10% faster H264 decoding</li>
<li>Support for FFmpeg preset files</li>
<li>Support for encoding AMR audio (e.g. for inside .3gp mobile media files).</li>
<li>We expose a new seek API, along with index files (still experimental).</li>
</ul>
<p>Enjoy!</p>
<p>- Art &amp; Robert</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/411/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=411&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/01/31/introducing-xuggler-3-4/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>Xuggler 3.4: Yet Another Feature</title>
		<link>http://xuggle.wordpress.com/2010/01/23/xuggler-3-4-yet-another-feature/</link>
		<comments>http://xuggle.wordpress.com/2010/01/23/xuggler-3-4-yet-another-feature/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 18:12:09 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=409</guid>
		<description><![CDATA[Xuggler 3.4 will contain the ability to decode wide and narrow band AMR audio, and to encode narrow band AMR audio.  That means you&#8217;ll be able to create 3GP files for Android and other phones that like to use AMR audio. As usual, the feature is announced AFTER it&#8217;s already in the code base, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=409&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Xuggler 3.4 will contain the ability to decode wide and narrow band AMR audio, and to encode narrow band AMR audio.  That means you&#8217;ll be able to create 3GP files for Android and other phones that like to use AMR audio.</p>
<p>As usual, the feature is announced AFTER it&#8217;s already in the code base, and the alpha builds can be <a href="http://build.xuggle.com/job/xuggler_jdk5_stable/">found here</a>.</p>
<p>- Art</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=409&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/01/23/xuggler-3-4-yet-another-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>Xuggler 3.4 Alpha Testing</title>
		<link>http://xuggle.wordpress.com/2010/01/17/xuggler-3-4-alpha-testing/</link>
		<comments>http://xuggle.wordpress.com/2010/01/17/xuggler-3-4-alpha-testing/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:52:03 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=405</guid>
		<description><![CDATA[Hi folks, Our build server has (thanks to a mac donation) started automatically building all OSes without (much) manual intervention.  That means our continuous builder will now ship executables for mac, linux and windows: http://build.xuggle.com/job/xuggler_jdk5_stable/ For those who don&#8217;t enjoy building Xuggler themselves, but want to test the very latest versions, that&#8217;s where to get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=405&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi folks,</p>
<p>Our build server has (thanks to a mac donation) started automatically building all OSes without (much) manual intervention.  That means our continuous builder will now ship executables for mac, linux and windows:<br />
<a href="http://build.xuggle.com/job/xuggler_jdk5_stable/" target="_blank">http://build.xuggle.com/job/xuggler_jdk5_stable/</a></p>
<p>For those who don&#8217;t enjoy building Xuggler themselves, but want to test the very latest versions, that&#8217;s where to get them.  And in fact, I&#8217;d love for you to start downloading and trying out releases because we&#8217;re actively working on the next Xuggler release (3.4) and you can alpha-test it there.</p>
<p>Current features that are committed to 3.4 are:</p>
<ul>
<li>RTMP support (playing and publishing RTMP streams without needing Red5).  Just open &#8220;rtmp://&#8230;&#8221; with IContainer objects and everything happens behind the scenes.</li>
<li>H264 B-Frame encoding support; prior versions of Xuggler incorrectly computed timestamps when codecs used B-frames.  We&#8217;re fixing that.</li>
<li>New Seek API.  See IContainer.seek&#8230; and the new <a href="http://build.xuggle.com/view/Stable/job/xuggler_jdk5_stable/javadoc/java/api/com/xuggle/xuggler/IIndexEntry.html">IIndexEntry </a>object.</li>
<li><a href="http://build.xuggle.com/view/Stable/job/xuggler_jdk5_stable/javadoc/java/api/com/xuggle/xuggler/Configuration.html">com.xuggle.xuggler.Configuration.configure</a>(&#8230;): the ability to read FFmpeg preset files or other property files to configure Xuggler objects.<a href="http://build.xuggle.com/view/Stable/job/xuggler_jdk5_stable/javadoc/java/api/com/xuggle/xuggler/Configuration.html" target="_blank"></a></li>
</ul>
<div>All of these methods are implemented in the stable release right now, although we have a known issue with RTMP support and the very latest Red5 tip of tree that I&#8217;ll be working on next week.</p>
<p>Enjoy,</p>
</div>
<div>- Art</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/405/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=405&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/01/17/xuggler-3-4-alpha-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>New Xuggler Feature Coming Soon: byte, frame #, timestamp range seeking</title>
		<link>http://xuggle.wordpress.com/2010/01/13/new-xuggler-feature-coming-soon-byte-frame-timestamp-range-and-index-seeking/</link>
		<comments>http://xuggle.wordpress.com/2010/01/13/new-xuggler-feature-coming-soon-byte-frame-timestamp-range-and-index-seeking/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 19:20:35 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=399</guid>
		<description><![CDATA[In our continuing push for Xuggler 3.4, there is another change.  Xuggler 3.4 will expose the new (but still experimental) FFmpeg seek API.   The new API (which not all demuxers support) allows seeking within a range of valid values, allows you to specify timestamps, bytes, or frame numbers you want to seek to, allows seeking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=399&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In our continuing push for Xuggler 3.4, there is another change.  Xuggler 3.4 will expose the new (but still experimental) FFmpeg seek API.   The new API (which not all demuxers support) allows seeking within a range of valid values, allows you to specify timestamps, bytes, or frame numbers you want to seek to, allows seeking backwards (for some demuxers), and allows seeking to non-key frames (for some demuxers).</p>
<p>I don&#8217;t have a list of exactly what ContainerFormats support efficient seeking, and there is currently no way to query that in FFmpeg.  We won&#8217;t be generating our own list, so feel free to share your findings on the xuggler-users list or the Wiki so everyone can learn.</p>
<p>The new method is:</p>
<pre>public class IContainer {
...
public int seekKeyFrame(int streamIndex, long minTimeStamp,
  long targetTimeStamp, long maxTimeStamp, int flags);
...
}
</pre>
<p>This change is in tip of tree right now and can be used if you <a href="http://www.xuggle.com/xuggler/downloads/build.jsp">build from source</a>.  To generate the java documentation for these new methods, build Xuggler tip of tree, and then run:</p>
<pre>ant doc-java
</pre>
<p>Feedback and bug-reports welcome on our support list.  The old seekKeyFrame API will be deprecated at some point in the future in favor of this API so you should migrate your code now.</p>
<p>Thanks,</p>
<p>- Art</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/399/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/399/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=399&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/01/13/new-xuggler-feature-coming-soon-byte-frame-timestamp-range-and-index-seeking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>
	</item>
		<item>
		<title>New Xuggler Feature Coming Soon: RTMP</title>
		<link>http://xuggle.wordpress.com/2010/01/12/new-xuggler-feature-coming-soon-rtmp/</link>
		<comments>http://xuggle.wordpress.com/2010/01/12/new-xuggler-feature-coming-soon-rtmp/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 00:57:24 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=397</guid>
		<description><![CDATA[So we&#8217;re working on a big new feature for Xuggler 3.4: RTMP support. Up until this point if you wanted RTMP you had to integrate Xuggler into a RTMP server such as Red5 and Wowza.  But for 3.4 we&#8217;re going to add our own RTMP support, so you can read to and write from RTMP [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=397&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="RTMP" src="http://www.adobe.com/livedocs/flashmediaserver/3.0/docs/images/RTMP.png" alt="" width="242" height="150" /></p>
<p>So we&#8217;re working on a big new feature for Xuggler 3.4: RTMP support.</p>
<p>Up until this point if you wanted RTMP you had to integrate Xuggler into a RTMP server such as Red5 and Wowza.  But for 3.4 we&#8217;re going to add our own RTMP support, so you can read to and write from RTMP URLs, with <strong>no dependency on Red5 or Wowza</strong>.  Heck, it means you can even intercept streams coming from an Aodbe Flash Media Server instance (provided it&#8217;s security set-up allows you to do that).</p>
<p>No firm ETA on when we&#8217;ll call 3.4 done (hopefully this month or next), but if you want to alpha test where we are, go check out tip of tree.  It&#8217;s ready for the &#8216;bleeding edge&#8217; folks among you.</p>
<p>We&#8217;ve got RTMP handshaking working with Wowza and Red5, and publishing and playing back FLVs with Sorenson or H264 seems to work.  We&#8217;re working through some kinks with publishing M4V format files, but reading them via RTMP should work.  We&#8217;ll be doing more work and testing, but I&#8217;d like to start getting your feedback.  Once this feature is fully baked, we&#8217;ll be officially deprecating our old Xuggle-Xuggler-Red5 adaptor in favor of this approach.  We have no plans to add RTMPE, RTMPT or RTMPF support at this time.</p>
<p>If you don&#8217;t know how to build Xuggler from tip-of-tree sources, you can find the <a href="http://www.xuggle.com/xuggler/downloads/build.jsp">instructions here</a>.  Let us know what&#8217;s working and not working on the <a href="http://groups.google.com/group/xuggler-users">Xuggler-Users</a> list.</p>
<p>One note for those who want to run out right now and use this; your Xuggler programs, if publishing data via RTMP, will need to make sure you don&#8217;t overload the RTMP connection.  If you try to cram an entire file down a TCP pipe you&#8217;ll get errors.  Instead, send data &#8216;roughly&#8217; when it would get played by a video player.  For those familiar with the FFmpeg command line program, think of the &#8220;-re&#8221; option.</p>
<p>Lastly, this support is being implemented in C code, which any changes we make are getting submitted back into FFmpeg and will hopefully show up there too.  Various folks on the FFmpeg team have done the major lifting here &#8212; we&#8217;re just making it work with Xuggler and helping the FFmpeg team with bug fixes and integration testing.  So if you want to send cookies in support of the feature, they get first dibs on the best ones.</p>
<p>Enjoy.</p>
<p>- Art</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/397/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=397&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/01/12/new-xuggler-feature-coming-soon-rtmp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>

		<media:content url="http://www.adobe.com/livedocs/flashmediaserver/3.0/docs/images/RTMP.png" medium="image">
			<media:title type="html">RTMP</media:title>
		</media:content>
	</item>
		<item>
		<title>Octopus Alpha Testing</title>
		<link>http://xuggle.wordpress.com/2010/01/11/octopus-alpha-testing/</link>
		<comments>http://xuggle.wordpress.com/2010/01/11/octopus-alpha-testing/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 00:26:39 +0000</pubDate>
		<dc:creator>abclarke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.xuggle.com/?p=392</guid>
		<description><![CDATA[Hi folks, Last month we mentioned our super-not-so-secret-anymore-project Octopus.  Today we announce the beginning of our alpha-testing program: http://octopus.xuggle.com/ We&#8217;re going to be running this test instance of our Octopus server over the next few weeks and collecting performance and interaction data.  It&#8217;s alpha so please, if you run into issues, let us know by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=392&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://xuggle.files.wordpress.com/2010/01/octopus.png"><img class="alignnone size-medium wp-image-393" title="Octopus" src="http://xuggle.files.wordpress.com/2010/01/octopus.png?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Hi folks,</p>
<p>Last month we mentioned our super-not-so-secret-anymore-project Octopus.  Today we announce the beginning of our alpha-testing program:</p>
<pre><a href="http://octopus.xuggle.com/">http://octopus.xuggle.com/</a></pre>
<p>We&#8217;re going to be running this test instance of our Octopus server over the next few weeks and collecting performance and interaction data.  It&#8217;s alpha so please, if you run into issues, let us know by shooting us an e-mail at <a href="mailto:info@xuggle.com">info@xuggle.com</a> which as much information as you can give us.</p>
<p>For details on what you&#8217;re seeing, check out this <a href="http://www.xuggle.com/octopus">explanation page</a>.</p>
<p>We&#8217;ll be taking the server up and down over the next few weeks as we add more features and changes.  To help us in the short term, the more you play with it, the more we can improve it.  We&#8217;re particularly interested in people using the &#8220;join chat&#8221; feature with no microphone so we can collect recordings for our echo cancellation features.  As we make improvements, we&#8217;ll post details here.</p>
<p>Also, if you&#8217;re with a company that is interested in adding this functionality to your product, please contact us as well.  We&#8217;d love to hear what you&#8217;d like to see in Octopus for your use.</p>
<p>Thanks,</p>
<p>- Art</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xuggle.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xuggle.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xuggle.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xuggle.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xuggle.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xuggle.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xuggle.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xuggle.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xuggle.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xuggle.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xuggle.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xuggle.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xuggle.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xuggle.wordpress.com/392/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xuggle.wordpress.com&amp;blog=6076666&amp;post=392&amp;subd=xuggle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xuggle.wordpress.com/2010/01/11/octopus-alpha-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">abclarke</media:title>
		</media:content>

		<media:content url="http://xuggle.files.wordpress.com/2010/01/octopus.png?w=300" medium="image">
			<media:title type="html">Octopus</media:title>
		</media:content>
	</item>
	</channel>
</rss>
