<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Squeezebox on Jackenhack</title><link>https://www.jackenhack.com/tags/squeezebox/</link><description>Recent content in Squeezebox on Jackenhack</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Mon, 11 Feb 2019 00:00:00 +0000</lastBuildDate><atom:link href="https://www.jackenhack.com/tags/squeezebox/index.xml" rel="self" type="application/rss+xml"/><item><title>Why I Switched To Roon And You Should Too</title><link>https://www.jackenhack.com/roon-why-i-switched-and-you-should-too/</link><pubDate>Mon, 11 Feb 2019 00:00:00 +0000</pubDate><guid>https://www.jackenhack.com/roon-why-i-switched-and-you-should-too/</guid><description>&lt;p&gt;&lt;img decoding="async" height="512" loading="lazy" sizes="(min-width: 768px) 720px, 100vw" src="https://www.jackenhack.com/roon-why-i-switched-and-you-should-too/images/roon-logo_hu_4f7ad72ba6646e41.jpg" srcset="https://www.jackenhack.com/roon-why-i-switched-and-you-should-too/images/roon-logo_hu_70699670efc61f47.jpg 360w,/roon-why-i-switched-and-you-should-too/images/roon-logo_hu_909e74707c105163.jpg 480w" width="512"&gt;&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve been running my music system at home using Squeezebox Server software for many years. It has served me well, but Logitech bought the entire eco-system and then abandoned it. Because it&amp;rsquo;s Open Source, it&amp;rsquo;s still updated, but it&amp;rsquo;s time to do an upgrade to a better system. After testing a lot of different server solutions, I finally choose &lt;a href="https://roonlabs.com"&gt;Roon by Roon Labs&lt;/a&gt; as my music server software. Here&amp;rsquo;s why.&lt;/p&gt;</description></item><item><title>Raspberry Pi Car Audio System</title><link>https://www.jackenhack.com/raspberry-pi-car-audio-system/</link><pubDate>Mon, 23 Jun 2014 00:00:00 +0000</pubDate><guid>https://www.jackenhack.com/raspberry-pi-car-audio-system/</guid><description>&lt;p&gt;&lt;img alt="raspberry-pi-car-computer.jpg" decoding="async" height="1425" loading="lazy" sizes="(min-width: 768px) 720px, 100vw" src="https://www.jackenhack.com/raspberry-pi-car-audio-system/images/raspberry-pi-car-computer_hu_d623d2627555ba13.jpg" srcset="https://www.jackenhack.com/raspberry-pi-car-audio-system/images/raspberry-pi-car-computer_hu_becfc7ed4368382a.jpg 360w,/raspberry-pi-car-audio-system/images/raspberry-pi-car-computer_hu_a9da29e733044bc6.jpg 480w,/raspberry-pi-car-audio-system/images/raspberry-pi-car-computer_hu_9b30b44ad28b965.jpg 720w" width="862"&gt;&lt;/p&gt;
&lt;h2 id="my-raspberry-pi-car-audio-player"&gt;My Raspberry Pi Car Audio Player&lt;/h2&gt;
&lt;p&gt;A lot of people are using the excellent Linux microcomputer &lt;a href="http://www.raspberrypi.org/" title="Raspberry Pi"&gt;Raspberry Pi&lt;/a&gt; and &lt;a href="http://www.engineering-diy.blogspot.ro/2013/08/car-pc-projectaugust-2013-update.html" title="Engineering(DIY): Car PC project(August 2013 update)"&gt;install it in their cars&lt;/a&gt;. Usually, they use a color screen that is touch sensitive, being able to play back video and music. But I’m only interested in high-quality audio playback, being able to have all my CDs in lossless &lt;a href="https://xiph.org/flac/" title="FLAC - Free Lossless Audio Codec"&gt;FLAC&lt;/a&gt; format for optimal sound quality. So a 16x2 LCD with some buttons is plenty. I now have a working system (but not yet installed in my car.) here’s a description of how I&amp;rsquo;ve built it. Most of the installations I’ve seen the use of the audio out from the Raspberry Pi, but it’s only 11-bit and sounds like crap. I want to use an external DAC, and you can get that to work in XBMC, but only menu and music output, not films. There are some HDMI to audio converters, but I’ll instead use a quality USB DAC.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://youtu.be/wzmFZlpbBCQ"&gt;http://youtu.be/wzmFZlpbBCQ&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>Raspberry Pi avahi-daemon disabled because there is a unicast .local domain - solved</title><link>https://www.jackenhack.com/raspberry-pi-avahi-daemon-disabled-because-there-is-a-unicast-local-domain-solved/</link><pubDate>Sat, 06 Apr 2013 00:00:00 +0000</pubDate><guid>https://www.jackenhack.com/raspberry-pi-avahi-daemon-disabled-because-there-is-a-unicast-local-domain-solved/</guid><description>&lt;p&gt;When setting up a Raspberry Pi with &lt;a href="http://www.squeezeplug.de"&gt;SqueezePlug&lt;/a&gt;, my favorite distribution for &lt;a href="https://www.jackenhack.com/raspberry-pi-squeezebox-logitech-server/"&gt;setting up a music server&lt;/a&gt; I always get the error message “avahi-daemon disabled because there is a unicast .local domain” because I have a lot of Apple equipment configured with Bonjour. To fix it, all you need to do is to edit &lt;code&gt;/etc/default/avahi-daemon&lt;/code&gt; and change the line:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;AVAHI_DAEMON_DETECT_LOCAL=1&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;p&gt;&lt;code&gt;AVAHI_DAEMON_DETECT_LOCAL=0&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;then restart the Avahi-daemon with&lt;/p&gt;
&lt;p&gt;&lt;code&gt;sudo service avahi-daemon restart&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Problem solved.&lt;/p&gt;</description></item><item><title>Raspberry Pi as a Squeezebox Logitech Server</title><link>https://www.jackenhack.com/raspberry-pi-squeezebox-logitech-server/</link><pubDate>Sat, 22 Dec 2012 00:00:00 +0000</pubDate><guid>https://www.jackenhack.com/raspberry-pi-squeezebox-logitech-server/</guid><description>&lt;p&gt;&lt;img alt="Raspberry Pi in a clear case next to an external USB hard drive" decoding="async" height="400" loading="lazy" sizes="(min-width: 768px) 720px, 100vw" src="https://www.jackenhack.com/raspberry-pi-squeezebox-logitech-server/images/image2_hu_ddbf82bebdf7e79c.jpg" srcset="https://www.jackenhack.com/raspberry-pi-squeezebox-logitech-server/images/image2_hu_51bbab8548551973.jpg 360w,/raspberry-pi-squeezebox-logitech-server/images/image2_hu_a4bb45215f0a8f2b.jpg 480w" width="670"&gt;I love my music playback setup that consists of a couple of Squeezebox V3 players in different rooms so I can listen to music in lossless format wherever I am in the apartment. With the &lt;a href="http://penguinlovesmusic.de"&gt;iPeng HD&lt;/a&gt; app on my iPad, I have a nice interface for controlling the players with album art and other nice features. But the best part is that I can playback high resolution audio directly on my iPad using the Camera Kit USB adapter and an HRT HeadStreamer DAC portable USB headphone amplifier. But I wanted a small, cheap and eco-friendly server for hosting my music files and wondered if I could use the &lt;a href="http://www.raspberrypi.org/"&gt;Raspberry Pi&lt;/a&gt;. And here’s my findings.&lt;/p&gt;</description></item></channel></rss>