<?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>gHacks technology news &#187; music server</title>
	<atom:link href="http://www.ghacks.net/tag/music-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 03:24:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Set up a Linux media server</title>
		<link>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/</link>
		<comments>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:51:54 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[DAAP]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mp3 server]]></category>
		<category><![CDATA[multimedia server]]></category>
		<category><![CDATA[music server]]></category>
		<category><![CDATA[songbird]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17860</guid>
		<description><![CDATA[Do you have multiple machines around your house that would like to share a centralized server for multi-media? Having such a server for music allows for consolidation, ease of use, and space saving on client PCs. Of course to many users, the idea of setting up a multi-media server sounds like it would be a [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have multiple machines around your house that would like to share a centralized server for multi-media? Having such a server for music allows for consolidation, ease of use, and space saving on client PCs. Of course to many users, the idea of setting up a multi-media server sounds like it would be a nightmare&#8230;especially on the Linux platform. That couldn&#8217;t be further from the truth.</p>
<p><a title="Firefly Media Server" href="http://www.fireflymediaserver.org/" target="_blank">The Firefly Media Server</a> (formerly mt-daap) is a fast DAAP server that is simple to install and even easier to configure. Firefly resides on a single Linux machine that doesn&#8217;t have to be a powerhouse. In fact, you can install this lightweight server on Ubuntu Server and you&#8217;re almost ready to go. In this article you will see how to do just that &#8211; install and configure Firefly Media Server on Ubuntu Server.</p>
<p><span id="more-17860"></span><strong>Features</strong></p>
<p>The Firefly server has all of the features you will want in a DAAP server:</p>
<ul>
<li><span style="background-color: #ffffff">Supports Unix/POSIX</span></li>
<li><span style="background-color: #ffffff">Beta for Windows in the works</span></li>
<li><span style="background-color: #ffffff">On the fly transcoding of OGG, FLAC, Apple Lossless, and WM</span></li>
<li><span style="background-color: #ffffff">User-created smart playlist support</span></li>
<li><span style="background-color: #ffffff">Integrates with iTunes and many other DAAP-supporting media players</span></li>
<li><span style="background-color: #ffffff">Serve streaming radio stations</span></li>
</ul>
<p><strong>Installation</strong></p>
<p>Since we are installing on a Ubuntu Server, the installation is simple:</p>
<ol>
<li><span style="background-color: #ffffff">Open up a terminal (or just log into your servers&#8217; console)</span></li>
<li><span style="background-color: #ffffff">Issue the command <em>sudo apt-get install mt-daap</em></span></li>
<li><span style="background-color: #ffffff">Enter your user password</span></li>
</ol>
<p>That&#8217;s it. Now it&#8217;s time to set it up.</p>
<p><strong>Configuration file</strong></p>
<p>There is only one configuration file for Firefly: <strong>/etc/mt-daapd.conf</strong>. This file is quite easy to set up. For a basic DAAP server, out of the box, there is really only one option you must configure. If you open up the configuration file look for the line:</p>
<p><em>mp3_dir = /home/media/music</em></p>
<p>This is the line you will need to change to reflect the directory you will serve your media from. For my setup I created a new sub-directory in <strong>/opt </strong>called <strong>music</strong>. Do this with the command:</p>
<p><em>sudo mkdir /opt/media</em></p>
<p>Now you have to make that directory readable by the DAAP server with the command:</p>
<p><em>sudo chmod ug+r -R /opt/media</em></p>
<p>Now all files and sub-directories created with the <strong>/opt/media</strong> directory will have the proper permissions such that the DAAP server can serve up the files.</p>
<p>Of course what you have just set up is a very basic DAAP server. There are a lot of other options within the configuration file you can set up, such as:</p>
<ul>
<li><span style="background-color: #ffffff">servername: This is the name your DAAP server will broadcast. By default the server will be listed as Firefly <em>RELEASE_NUMBER HOSTNAME</em> (Where <em>RELEASE_NUMBER </em>is the release number of the Firefly installation and <em>HOSTNAME</em> is the hostname of the server.)</span></li>
<li><span style="background-color: #ffffff">password protection: This will cause any user attempting to access the DAAP server to have to enter a password in order to see the files. </span></li>
<li><span style="background-color: #ffffff">port: If you need to use a port other than the default (3689), configure it here.</span></li>
<li><span style="background-color: #ffffff">extensions: The file types you want to allow to be served by your DAAP server.</span></li>
<li><span style="background-color: #ffffff">Valid codectypes: These are the configurations for the format conversion. There are already lines for this in the configuration file &#8211; you just have to uncomment the ones you want to add for internal conversion.</span></li>
<li><span style="background-color: #ffffff">rescan_interval: If you want to enable background scanning you need to uncomment this entry and set an interval. This will enable you to add new files without having to restart the DAAP server to pick up the new files. Very handy if you frequently add new files.</span></li>
</ul>
<p>There are other configuration options, but those are the ones you will want to focus on first.</p>
<p><strong>Start the daemon</strong></p>
<p>After your configuration file is complete, go ahead and move your media files into the directory and then start the server with the command:</p>
<p><em>sudo /etc/init.d/mt-daap start</em></p>
<p>With the server up and running you can fire up a DAAP enabled client, like iTunes or Songbird (Note: Songbird requires the addition of a DAAP add on), and you should automatically see the files on the DAAP server.</p>
<p><strong>Final thoughts</strong></p>
<p>Setting up a DAAP server is a great idea for a small internal network where you want to be able to share out a multi-media library. Anyone looking to set this up, and has a Linux server up and running, would do well to give Firefly a try. The simplicity, size, and speed of this server makes it the perfect candidate.</p>

	Tags: <a href="http://www.ghacks.net/tag/daap/" title="DAAP" rel="tag">DAAP</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/mp3-server/" title="mp3 server" rel="tag">mp3 server</a>, <a href="http://www.ghacks.net/tag/multimedia-server/" title="multimedia server" rel="tag">multimedia server</a>, <a href="http://www.ghacks.net/tag/music-server/" title="music server" rel="tag">music server</a>, <a href="http://www.ghacks.net/tag/songbird/" title="songbird" rel="tag">songbird</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/03/songbird-07-rc1-released/" title="Songbird 0.7 RC1 Released (August 3, 2008)">Songbird 0.7 RC1 Released</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/" title="iTunes Music Server pulpTunes (May 29, 2009)">iTunes Music Server pulpTunes</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/11/view-and-edit-information-about-songs-with-more-tunes/" title="View and Edit information of songs with More Tunes (June 11, 2007)">View and Edit information of songs with More Tunes</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/08/22/the-complete-media-player-review-part-1-2/" title="The Complete Media Player Review (Part 1) (August 22, 2008)">The Complete Media Player Review (Part 1)</a> (15)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>iTunes Music Server pulpTunes</title>
		<link>http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/</link>
		<comments>http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/#comments</comments>
		<pubDate>Fri, 29 May 2009 21:44:28 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes music]]></category>
		<category><![CDATA[linux software]]></category>
		<category><![CDATA[mac software]]></category>
		<category><![CDATA[music server]]></category>
		<category><![CDATA[pulptunes]]></category>
		<category><![CDATA[stream music]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/</guid>
		<description><![CDATA[Apple iTunes is one of the most popular music managers and players. While it can be used to play music locally it does not offer any means to play music over the Internet which might be interesting for users who work on different computer systems, e.g. a home computer and one at the office.
Pulptunes is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes_music_server.jpg" alt="itunes music server" title="itunes music server" width="128" height="54" class="alignleft size-full wp-image-13160" />Apple iTunes is one of the most popular music managers and players. While it can be used to play music locally it does not offer any means to play music over the Internet which might be interesting for users who work on different computer systems, e.g. a home computer and one at the office.</p>
<p>Pulptunes is a iTunes music server that can stream mp3 and m4a files over the Internet. The music can then be accessed in any modern web browser including Microsoft&#8217;s <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a>, <a href="http://www.ghacks.net/tag/firefox/">Mozilla Firefox</a> or <a href="http://www.ghacks.net/category/browsing/opera/">Opera</a>. The user can then access the music that is stored on his local computer system over the Internet.</p>
<p><span id="more-13162"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/05/itunes-500x299.jpg" alt="itunes" title="itunes" width="500" height="299" class="alignnone size-medium wp-image-13163" /></p>
<p><a href="http://www.pulptunes.com/">PulpTunes</a> is not only available for Windows operating systems but also Linux and Macintosh. The software program tries to find the location of the iTunes XML file automatically which worked fine on the test system. Linux users and those where it was not found automatically need to add the path to the program manually.</p>
<p>Songs can be played directly in the web browser or downloaded with a right-click. All iTunes playlists and genres are available in the interface which makes it easier to locate albums or songs. A search is also provided to search the music collection.</p>
<p>Advanced options are available that include a basic user management so that only authorized users have access to the web service. Other options include:</p>
<ul>
<li>Displays cover art if found</li>
<li>Generate direct links to songs or playlists to send to your friends</li>
<li>iTunes DJ integration</li>
<li>Command-line mode for server environments</li>
<li>Adjustable buffer level</li>
</ul>
<p>PulpTunes needs to be running on the local computer system so that users can connect to the service over the Internet.</p>

	Tags: <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/itunes-music/" title="itunes music" rel="tag">itunes music</a>, <a href="http://www.ghacks.net/tag/linux-software/" title="linux software" rel="tag">linux software</a>, <a href="http://www.ghacks.net/tag/mac-software/" title="mac software" rel="tag">mac software</a>, <a href="http://www.ghacks.net/tag/music-server/" title="music server" rel="tag">music server</a>, <a href="http://www.ghacks.net/tag/pulptunes/" title="pulptunes" rel="tag">pulptunes</a>, <a href="http://www.ghacks.net/tag/stream-music/" title="stream music" rel="tag">stream music</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/18/stream-music-with-subsonic/" title="Stream Music With Subsonic (June 18, 2009)">Stream Music With Subsonic</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/05/20/music-management-software-jajuk/" title="Music Management Software Jajuk (May 20, 2009)">Music Management Software Jajuk</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/07/07/vlc-media-player-1-0-released/" title="VLC Media Player 1.0 Released (July 7, 2009)">VLC Media Player 1.0 Released</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/08/25/prep-for-gre-gmat-sat-tests-with-words/" title="Prep For GRE, GMAT, SAT Tests With Words (August 25, 2009)">Prep For GRE, GMAT, SAT Tests With Words</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/02/05/photo-collage/" title="Photo Collage (February 5, 2009)">Photo Collage</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Sockso Music Server</title>
		<link>http://www.ghacks.net/2008/09/14/sockso-music-server/</link>
		<comments>http://www.ghacks.net/2008/09/14/sockso-music-server/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 07:35:25 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[digital music server]]></category>
		<category><![CDATA[home music server]]></category>
		<category><![CDATA[how to stream music]]></category>
		<category><![CDATA[music server]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sockso]]></category>
		<category><![CDATA[stream music]]></category>
		<category><![CDATA[streaming music server]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6984</guid>
		<description><![CDATA[Setting up your own music server is an interesting way of connecting your music library to the Internet. A fast enough connection at home and Java are the only two requirements for setting up the music server which can then stream music to the same computer, a network or the Internet.
Sockso is a multi-platform music [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up your own music server is an interesting way of connecting your music library to the Internet. A fast enough connection at home and Java are the only two requirements for setting up the music server which can then stream music to the same computer, a network or the Internet.</p>
<p><a href="http://sockso.pu-gh.com/">Sockso</a> is a multi-platform music server that can be run under Windows, Linux and Macintosh. Setup differs depending on the operating system. Windows users simply download the Sockso distribution from the website and unpack it into a directory on their hard drive. They then execute the windows.bat file which will load the Sockso server interface.</p>
<p>This is where the administrator adds music from the computer to the music server. All that is needed is to click on the Connection button and add folders to the server. The Collection Manager is also the place to create playlists that are then accessible in the web interface.</p>
<p><span id="more-6984"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/09/music_server-500x291.png" alt="music server" title="music server" width="500" height="291" class="alignnone size-medium wp-image-6985" /></p>
<p>It is a good idea to test the music server both locally and on the Internet before sending the information to your friends. The default port is 4444 which means that you can fire up a browser and load http://localhost:4444/ or http://network ip:4444/ to test the music server locally.</p>
<p>Checking if the music server is working on the Internet demands knowledge of the current IP of the computer. If you do not know about it you can <a href="http://www.ghacks.net/ip/">Check the IP</a> here at Ghacks. Then load http://your IP:4444/ in a browser which should also display the web interface of the music server.</p>
<p>If that is working you can begin to send that link to your friends so that they can tune in and listen to your music. It is also possible to simply use this as a way to listen to your own music collection while on the road.</p>
<p>Sockso does work fine as a music server and it is usually only a matter of minutes before it is up and running. It does have some serious limitations though. There is no user administration which means that anyone can connect to the music server not just the invited friends. Users who receive a dynamic IP from their Internet Provider will either have to check their IPs regularly or use a service that gives them a static IP.</p>
<p>It&#8217;s probably the safest to run Sockso only on a local network. It can be configured to allow music uploads as well and it could become a popular application in University dorms or company networks. </p>

	Tags: <a href="http://www.ghacks.net/tag/digital-music-server/" title="digital music server" rel="tag">digital music server</a>, <a href="http://www.ghacks.net/tag/home-music-server/" title="home music server" rel="tag">home music server</a>, <a href="http://www.ghacks.net/tag/how-to-stream-music/" title="how to stream music" rel="tag">how to stream music</a>, <a href="http://www.ghacks.net/tag/music-server/" title="music server" rel="tag">music server</a>, <a href="http://www.ghacks.net/tag/server/" title="server" rel="tag">server</a>, <a href="http://www.ghacks.net/tag/sockso/" title="sockso" rel="tag">sockso</a>, <a href="http://www.ghacks.net/tag/stream-music/" title="stream music" rel="tag">stream music</a>, <a href="http://www.ghacks.net/tag/streaming-music-server/" title="streaming music server" rel="tag">streaming music server</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/" title="iTunes Music Server pulpTunes (May 29, 2009)">iTunes Music Server pulpTunes</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/11/16/wiredtree-review-after-four-months/" title="Wiredtree Review After Four Months (November 16, 2009)">Wiredtree Review After Four Months</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/08/05/windows-ssh-server-winsshd/" title="Windows SSH Server WinSSHD (August 5, 2009)">Windows SSH Server WinSSHD</a> (3)</li>
	<li><a href="http://www.ghacks.net/2007/12/29/windows-home-server-has-a-problem/" title="Windows Home Server has a problem (December 29, 2007)">Windows Home Server has a problem</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/25/windows-file-server/" title="Windows File Server (October 25, 2009)">Windows File Server</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/09/14/sockso-music-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
