<?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/"
	>

<channel>
	<title>][ stefano maffulli &#187; streaming</title>
	<atom:link href="http://maffulli.net/tag/streaming/feed/" rel="self" type="application/rss+xml" />
	<link>http://maffulli.net</link>
	<description>about open source and freedom</description>
	<lastBuildDate>Tue, 11 Jun 2013 18:36:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Streaming Audio from Raspberry Pi &#8211; part 2</title>
		<link>http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/</link>
		<comments>http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 23:16:52 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[participation]]></category>
		<category><![CDATA[raspberrypi]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=5183</guid>
		<description><![CDATA[Episode two of my experiment with the Raspberry Pi I have received at Pycon 2013. On the way back from Santa Clara I stopped by Fry&#8217;s and bought the only USB sound card they had in store, a weird looking Creative and a powered USB hub.  I ordered also a case from Adafruit industries (not [...]]]></description>
				<content:encoded><![CDATA[<p>Episode two of my experiment with the Raspberry Pi I have received at Pycon 2013. On the way back from Santa Clara I stopped by Fry&#8217;s and bought the only USB sound card they had in store, a weird looking Creative and a powered USB hub.  I ordered also a case from Adafruit industries (not convinced of the case though).</p>
<p><a href="http://maffulli.net/wp-content/uploads/wpid-IMG_20130323_160257.jpg"><img class="alignnone size-full wp-image-5184" alt="Raspberry Pi and USB sound card" src="http://maffulli.net/wp-content/uploads/wpid-IMG_20130323_160257.jpg" width="500" height="375" /></a><br />
The output of lsusb:</p>
<blockquote><p>Bus 001 Device 006: ID 147a:e03d Formosa Industrial Computing, Inc.</p></blockquote>
<p>Hooked them all together, installed avahi-daemon on the Pi so I can ssh into it easily from any lan (ssh raspberrypi.local, although I should change its name to something more unique). Tested arecord locally first. It took me a while to figure out how to use arecord, it&#8217;s old stuff that I&#8217;m not very used to. You need to specify the hardware device. If you get this sort of error:</p>
<blockquote><p>arecord: main:682: audio open error: No such file or directory</p></blockquote>
<p>probably you haven&#8217;t specified that you want to record from the card that actually has an input device</p>
<blockquote><p>pi@raspberrypi ~ $ arecord -l<br />
**** List of CAPTURE Hardware Devices ****<br />
card 1: Audio [2 Channel USB Audio], device 0: USB Audio [USB Audio]<br />
Subdevices: 1/1<br />
Subdevice #0: subdevice #0</p></blockquote>
<p>I hooked my phone&#8217;s audio player to the mic input of the USB card so that there would be constantly audio coming in the Pi, then started recording</p>
<blockquote><p>pi@raspberrypi ~ $ arecord -D hw:1,0 -f s16_le -c 2 &gt; test.wav</p></blockquote>
<p>I have specified the hardware device I want to use, the format and the number of channels. Playing back that file worked.</p>
<blockquote><p>pi@raspberrypi ~ $ aplay -D hw:1,0 test.wav</p></blockquote>
<p>Next step was to capture live audio from the line input of the USB card, transcode that to OGG Vorbis and ship the bits to the remote Icecast server I setup last week. I quickly gave up on ezstream and started using ices2, the Icecast client: it seems easier to manage as it takes care of the encoding. This is the input module I used for the Pi:</p>
<blockquote><p>&lt;input&gt;<br />
&lt;module&gt;alsa&lt;/module&gt;<br />
&lt;param name=&#8221;rate&#8221;&gt;16000&lt;/param&gt;<br />
&lt;param name=&#8221;channels&#8221;&gt;2&lt;/param&gt;<br />
&lt;param name=&#8221;device&#8221;&gt;hw:1,0&lt;/param&gt;<br />
&lt;!&#8211; Read metadata (from stdin by default, or &#8211;&gt;<br />
&lt;!&#8211; filename defined below (if the latter, only on SIGUSR1) &#8211;&gt;<br />
&lt;param name=&#8221;metadata&#8221;&gt;1&lt;/param&gt;<br />
&lt;param name=&#8221;metadatafilename&#8221;&gt;liveaudio&lt;/param&gt;<br />
&lt;/input&gt;</p></blockquote>
<p>The USB soundcard I&#8217;m using sends 16000hz samples. I chose not to resample that, only to downmix stereo to mono to save bandwidth.</p>
<blockquote><p>&lt;&#8211;  stereo-&gt;mono downmixing, enabled by setting this to 1 &#8211;&gt;<br />
&lt;downmix&gt;1&lt;/downmix&gt;</p></blockquote>
<p>And all seems to work: the Pi sends a clear signal up to the streaming server and it&#8217;s been doing that for a while. Big success so far. Next step for me will be to write a script that grabs data from the OpenStack Summit schedule for one room and adds that information as metadata for the streaming: this way the listeners will have an idea of who is speaking or what the session is about.</p>
<p>Update: the stream was having a wide latency, around 20 seconds so I decided to play a little bit with the sampling rates. The latency went down to around 1 second using  &lt;param name=&#8221;rate&#8221;&gt;48000&lt;/param&gt; in the input module and  &lt;samplerate&gt;48000&lt;/samplerate&gt; in the encode module, with no resampling. Unfortunately the USB card dies every now and then when not connected through a powered USB hub. Too bad, because the USB hub looks ugly.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202%20-%20http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;t=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;annotation=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;body=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;body=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;t=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;s=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;notes=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;bodytext=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" id="wp_rp_first"><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-5177" data-post-type="none" ><a href="http://maffulli.net/2013/03/17/simple-live-audio-streaming-from-openstack-summit-using-raspberrypi/" class="wp_rp_title">Simple live audio streaming from OpenStack Summit using RaspberryPi</a></li><li data-position="1" data-poid="in-491" data-post-type="none" ><a href="http://maffulli.net/2007/11/17/easy-and-small-improvements-in-communication/" class="wp_rp_title">Easy and small improvements in communication</a></li><li data-position="2" data-poid="in-1906" data-post-type="none" ><a href="http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/" class="wp_rp_title">Proud member of an effective community</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=5183" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2013. |
<a href="http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/">Permalink</a> |
<a href="http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/#comments">10 comments</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/communication/" rel="tag">communication</a>, <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/openstack-2/" rel="tag">openstack</a>, <a href="http://maffulli.net/tag/participation/" rel="tag">participation</a>, <a href="http://maffulli.net/tag/raspberrypi/" rel="tag">raspberrypi</a>, <a href="http://maffulli.net/tag/streaming/" rel="tag">streaming</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>I finally found the time to connect the&#8230;</title>
		<link>http://maffulli.net/2012/05/24/i-finally-found-the-time-to-connect-the/</link>
		<comments>http://maffulli.net/2012/05/24/i-finally-found-the-time-to-connect-the/#comments</comments>
		<pubDate>Fri, 25 May 2012 00:24:53 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[pogoplug]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[toy]]></category>

		<guid isPermaLink="false">http://maffulli.net/2012/05/24/i-finally-found-the-time-to-connect-the/</guid>
		<description><![CDATA[I finally found the time to connect the new toy to the router and enable ssh. I&#8217;ll have fun putting Debian ARM on this and see if it can become a portable audio streaming server. Share and Enjoy: Related postsStreaming Audio from Raspberry Pi &#8211; part 2Simple live audio streaming from OpenStack Summit using RaspberryPiReaching [...]]]></description>
				<content:encoded><![CDATA[<p>I finally found the time to connect the new toy to the router and enable ssh. I&#8217;ll have fun putting Debian ARM on this and see if it can become a portable audio streaming server.<br />
<a href="http://maffulli.net/wp-content/uploads/PogoplugproRearView.jpg"><img src="http://maffulli.net/wp-content/uploads/PogoplugproRearView-300x186.jpg" alt="" title="PogoplugproRearView" width="300" height="186" class="alignnone size-medium wp-image-1938" /></a></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=I%20finally%20found%20the%20time%20to%20connect%20the...%20-%20http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the...&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=I%20finally%20found%20the%20time%20to%20connect%20the%20new%20toy%20to%20the%20router%20and%20enable%20ssh.%20I%27ll%20have%20fun%20putting%20Debian%20ARM%20on%20this%20and%20see%20if%20it%20can%20become%20a%20portable%20audio%20streaming%20server.%0A" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the..." ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;t=I%20finally%20found%20the%20time%20to%20connect%20the..." ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the...&amp;annotation=I%20finally%20found%20the%20time%20to%20connect%20the%20new%20toy%20to%20the%20router%20and%20enable%20ssh.%20I%27ll%20have%20fun%20putting%20Debian%20ARM%20on%20this%20and%20see%20if%20it%20can%20become%20a%20portable%20audio%20streaming%20server.%0A" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the...&amp;body=I%20finally%20found%20the%20time%20to%20connect%20the%20new%20toy%20to%20the%20router%20and%20enable%20ssh.%20I%27ll%20have%20fun%20putting%20Debian%20ARM%20on%20this%20and%20see%20if%20it%20can%20become%20a%20portable%20audio%20streaming%20server.%0A" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=I%20finally%20found%20the%20time%20to%20connect%20the...&amp;body=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;t=I%20finally%20found%20the%20time%20to%20connect%20the...&amp;s=I%20finally%20found%20the%20time%20to%20connect%20the%20new%20toy%20to%20the%20router%20and%20enable%20ssh.%20I%27ll%20have%20fun%20putting%20Debian%20ARM%20on%20this%20and%20see%20if%20it%20can%20become%20a%20portable%20audio%20streaming%20server.%0A" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the...&amp;notes=I%20finally%20found%20the%20time%20to%20connect%20the%20new%20toy%20to%20the%20router%20and%20enable%20ssh.%20I%27ll%20have%20fun%20putting%20Debian%20ARM%20on%20this%20and%20see%20if%20it%20can%20become%20a%20portable%20audio%20streaming%20server.%0A" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the...&amp;bodytext=I%20finally%20found%20the%20time%20to%20connect%20the%20new%20toy%20to%20the%20router%20and%20enable%20ssh.%20I%27ll%20have%20fun%20putting%20Debian%20ARM%20on%20this%20and%20see%20if%20it%20can%20become%20a%20portable%20audio%20streaming%20server.%0A" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the..." ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F24%2Fi-finally-found-the-time-to-connect-the%2F&amp;title=I%20finally%20found%20the%20time%20to%20connect%20the..." ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-5183" data-post-type="none" ><a href="http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/" class="wp_rp_title">Streaming Audio from Raspberry Pi &#8211; part 2</a></li><li data-position="1" data-poid="in-5177" data-post-type="none" ><a href="http://maffulli.net/2013/03/17/simple-live-audio-streaming-from-openstack-summit-using-raspberrypi/" class="wp_rp_title">Simple live audio streaming from OpenStack Summit using RaspberryPi</a></li><li data-position="2" data-poid="in-196" data-post-type="none" ><a href="http://maffulli.net/2006/09/25/reaching-bolzano-from-anywhere/" class="wp_rp_title">Reaching Bolzano from anywhere</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1939" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2012. |
<a href="http://maffulli.net/2012/05/24/i-finally-found-the-time-to-connect-the/">Permalink</a> |
<a href="http://maffulli.net/2012/05/24/i-finally-found-the-time-to-connect-the/#comments">No comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/hacking/" rel="tag">hacking</a>, <a href="http://maffulli.net/tag/pogoplug/" rel="tag">pogoplug</a>, <a href="http://maffulli.net/tag/streaming/" rel="tag">streaming</a>, <a href="http://maffulli.net/tag/toy/" rel="tag">toy</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2012/05/24/i-finally-found-the-time-to-connect-the/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
