<?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 and Video</title>
	<atom:link href="http://www.ghacks.net/category/music-and-video/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, 10 Nov 2009 01:33:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</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>Online Music Player TubeRadio</title>
		<link>http://www.ghacks.net/2009/10/29/online-music-player-tuberadio/</link>
		<comments>http://www.ghacks.net/2009/10/29/online-music-player-tuberadio/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 23:25:25 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music videos]]></category>
		<category><![CDATA[tuberadio]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17845</guid>
		<description><![CDATA[If you are looking for music chance is that you find it at Youtube. It really does not matter if you are looking for something new, old, rare or popular as Youtube provides access to millions of different songs from artists from all over the world. Several online services have already used that vast repertoire [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for music chance is that you find it at Youtube. It really does not matter if you are looking for something new, old, rare or popular as Youtube provides access to millions of different songs from artists from all over the world. Several online services have already used that vast repertoire of music by adding it to their music library.</p>
<p>TubeRadio is another service that makes use of that principle. It offers an interface that resembles that of Apple&#8217;s iTunes software. Here is how it works. It begins by entering a song or artist into the form on the homepage of the service. It is alternatively possible to pick one of the artists or genres that are prominently displayed on the homepage.</p>
<p><span id="more-17845"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/10/tuberadio_front-500x266.jpg" alt="tuberadio front" title="tuberadio front" width="500" height="266" class="alignnone size-medium wp-image-17846" /></p>
<p>TubeRadio will search its database for albums that match the song or artist. All of the albums that are found will be displayed with their album cover and name. </p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/10/tuberadio_albums-500x267.jpg" alt="tuberadio albums" title="tuberadio albums" width="500" height="267" class="alignnone size-medium wp-image-17847" /></p>
<p>Albums are selected with a left mouse click. It is possible to select multiple albums. TubeRadio will then perform a search on Youtube for those songs in the selected albums which are then added to playlists from where they can be played. Registered users have options to save playlists so that they can reopen them whenever they re-visit the website. Another option is to go back to the search and add additional albums by performing new searches. It is furthermore possible to search directly on Youtube instead of the discography search option.</p>
<p>The music is played on the TubeRadio website with a small video being displayed. Basic controls like switching songs, changing the playback volume, repeating, muting or shuffling songs are available. Users can also look at lyrics, biographies or similar songs (if available) while listening to the music.</p>
<p>There is also an option to display albums and artists that are currently in the charts to listen to these songs instead. The only aspect that users might criticize is something that all of these services have to cope with: the quality of the Youtube videos. It can happen that the service does not retrieve the song by the artist but a cover that is performed by another artist.</p>
<p>Just visit the <a href="http://www.tuberadio.fm">TubeRadio</a> website if you are interested in trying out the service. (via <a href="http://www.makeuseof.com/tag/tuberadio-fm-%E2%80%93-a-slick-cool-internet-music-player-for-youtube/">Make Use Of</a>)</p>

	Tags: <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/music-videos/" title="music videos" rel="tag">music videos</a>, <a href="http://www.ghacks.net/tag/tuberadio/" title="tuberadio" rel="tag">tuberadio</a>, <a href="http://www.ghacks.net/tag/youtube/" title="youtube" rel="tag">youtube</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/09/youscrobble-a-last-fm-and-youtube-mashup-service/" title="YouScrobble A Last.FM And Youtube Mashup Service (November 9, 2009)">YouScrobble A Last.FM And Youtube Mashup Service</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/11/11/video-crawler-a-multimedia-search-engine/" title="Video Crawler &#8211; A Multimedia Search Engine (November 11, 2008)">Video Crawler &#8211; A Multimedia Search Engine</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/03/27/use-youtube-as-your-music-collection-with-muziic/" title="Use Youtube As Your Music Collection With Muziic (March 27, 2009)">Use Youtube As Your Music Collection With Muziic</a> (3)</li>
	<li><a href="http://www.ghacks.net/2005/12/30/the-50-best-music-videos-of-2005/" title="The 50 Best Music Videos of 2005 (December 30, 2005)">The 50 Best Music Videos of 2005</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/09/10/music-videos-from-the-80s/" title="Music Videos from the 80&#8217;s (September 10, 2008)">Music Videos from the 80&#8217;s</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/29/online-music-player-tuberadio/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Xbox Media Center on Linux</title>
		<link>http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/</link>
		<comments>http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 16:04:09 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[video playback]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17827</guid>
		<description><![CDATA[The Xbox Media Center arrived in 2004 and became popular so quickly that it became clear more ports would be needed. So the XBMC team allowed this tool to evolve into a cross platform media center that would run on just about anything you can think of.  But, of course, the purpose of this article [...]]]></description>
			<content:encoded><![CDATA[<p>The <a title="XBMC" href="http://xbmc.org/" target="_blank">Xbox Media Center</a> arrived in 2004 and became popular so quickly that it became clear more ports would be needed. So the XBMC team allowed this tool to evolve into a cross platform media center that would run on just about anything you can think of.  But, of course, the purpose of this article is to install XBMC on Linux. Although XBMC can be installed on most Linux distributions, the Ubuntu installation is the least painful. I&#8217;ll first illustrate the installation on Ubuntu and then on Fedora. Once installed, you will find XBMC meets many (if not all) of your media center needs similar to that of Windows Media Center.</p>
<p>Of course, ideally, you will want to install XBMC on a machine intended for multi-media use. It will work on lower-end video cards, but the interface will be somewhat slower. For a complete listing of supported hardware check out the <a title="XBMC supported hardware" href="http://xbmc.org/wiki/?title=Supported_hardware" target="_blank">XBMC hardware page</a>. Now, let&#8217;s get on with the installation.</p>
<p><span id="more-17827"></span></p>
<p><strong>Ubuntu</strong></p>
<p>I will give you a warning here: The most recently supported Ubuntu is 8.10. That does not, however, mean it will not install on anything later. I have XBMC installed and working fine on Ubuntu 9.04. With that in mind here are the installation steps for Ubuntu.</p>
<p>Open up your <strong>/etc/apt/sources.list</strong> file and add the following to the end:<br />
<code>deb http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy main<br />
deb-src http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy main</code></p>
<p>Save that file and then issue the command:</p>
<p><em>sudo apt-get update</em></p>
<p>Once the update is complete issue the following command:<br />
<em> </em></p>
<p><em>sudo apt-get install xbmc</em></p>
<p>If you want to install extra skins, issue this command:</p>
<p><em>sudo apt-get install xbmc-skin-*</em></p>
<div id="attachment_17833" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17833" href="http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/xbmc/"><img class="size-thumbnail wp-image-17833" src="http://www.ghacks.net/wp-content/uploads/2009/10/xbmc-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>You will find the XBMC menu entry in the Sound And Video sub-menu of the Applications menu. When XBMC opens you will see a very user-friendly interface (see Figure 1).</p>
<p>Now it&#8217;s time for a less than user-friendly installation. Because there have been no rpm files created for Fedora, the installation requires a number of steps which will lead you to compiling XBMC. These steps will work for Fedora 8, 9, and 10 as well as CentOS 5.2. Here we go. NOTE: You will need to be the root user for this installation.</p>
<p>If you don&#8217;t already have Subversion install, do so now with the command:</p>
<p><em>yum install subversion</em></p>
<p>Once Subversion is installed, check out XBMC from subversion with the command:</p>
<p><em>svn co https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk</em></p>
<p>Now install the rpmfusion repository with one of the following commands:</p>
<p>Fedora:</p>
<p><em>rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm</em></p>
<p>and</p>
<p><em>rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rmpfusion-nonfree-release-stable.noarch.r</em>pm</p>
<p>CentOS 5 (32 bit):<br />
<em>rpm -Uvh http://apt.sw.be/redhat/e15/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.e15.rf.i386.rpm</em></p>
<p>CentOS 5 (64 bit):</p>
<p><em>rpm -Uvh http://apt.sw.be/redhat/e15/en/x86_64/rpmforge/RPMS/rpmforge-release-0.3.6-1.e15.rf.x86_64.rpm</em></p>
<p>Now the fun begins. This installation command is all one line:<br />
<code>yum install SDL* glew glew-devel libmad-devel tre tre-devel libogg libogg-devel libvorbis libvorbis-devel boost boost-devel bzip2-devel bzip2-libs fribidi* lzo lzo-devel mysql-libs mysql-devel jasper jasper-devel faac faac-devel enca enca-devel hal hal-devel hal-libs cmake gperf nasm libXmu-devel fontconfig-devel freetype-devel libXinerama-devel pcre-devel gcc-c++ sqlite-devel curl-devel mysql-devel libcdio-devel libmms-devel faad2-devel flac-devel libsmbclient-devel libXtst-devel</code></p>
<p>The next step creates a symbolic link for the libmysqlclient.so file. The command is one of these two (depending upon your architecture):</p>
<p>For i386:</p>
<p><em>sudo ln -s /usr/lib/mysql/libmysqlclient.so.15.0.0 /usr/lib/libmysqlclient.so </em></p>
<p>For x64:<br />
<em>sudo ln -s /usr/lib64/mysql/libmysqlclient.so.15.0.0 /usr/lib64/libmysqlclient.so</em></p>
<p>Now cd into the XBMC directory (should be in the directory you are currently working in) and issue the following commands:</p>
<p><em>./bootstrap</em></p>
<p>and</p>
<p><em>./configure</em></p>
<p>and</p>
<p><em>make</em></p>
<p>If you see an error related to jpegint.h, then you might have to issue the following command:</p>
<p><em>cp XBMC/xbmx/lib/cximage-6.0/jpeg/jpegint.h /usr/include</em></p>
<p>If you have to issue the above command, then issue the <em>make </em>command again.</p>
<p>Finally issue the command:</p>
<p><em>make install</em></p>
<p>And XBMC will install.</p>
<p>On Fedora distributions you might have an issue with SELinux. If so you will need to issue the following commands:<br />
<code>chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/avutil-50-i486-linux.so'<br />
chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/avcodec-52-i486-linux.so'<br />
chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/avformat-52-i486-linux.so'<br />
chcon -t textrel_shlib_t '/usr/local/share/xbmc/system/players/dvdplayer/swscale-0.6.1-i486-linux.so'</code></p>
<p>That&#8217;s it for the Fedora/CentOS installation. You should find XBMC in your Video menu. If you can&#8217;t seem to find a menu entry you can always enter <em>xbmc </em>in either a terminal window or the run dialog.</p>
<p><strong>Final thoughts</strong></p>
<p>XBMC is an outstanding media center software. It will play your CDs and DVDs flawlessly. If you have the hardware for this software, it is a much better solution than most other Linux video solutions.</p>

	Tags: <a href="http://www.ghacks.net/tag/media-center/" title="media center" rel="tag">media center</a>, <a href="http://www.ghacks.net/tag/multimedia/" title="multimedia" rel="tag">multimedia</a>, <a href="http://www.ghacks.net/tag/video-playback/" title="video playback" rel="tag">video playback</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/14/xbox-media-center-cross-platform-alpha/" title="Xbox Media Center Cross Platform Alpha (August 14, 2008)">Xbox Media Center Cross Platform Alpha</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/11/20/xbmc-media-center-final/" title="XBMC Media Center Final (November 20, 2008)">XBMC Media Center Final</a> (13)</li>
	<li><a href="http://www.ghacks.net/2006/09/02/the-perfect-multimedia-device/" title="The perfect multimedia device (September 2, 2006)">The perfect multimedia device</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/04/09/ten-video-sharing-services-compared/" title="Ten Video Sharing Services Compared (April 9, 2006)">Ten Video Sharing Services Compared</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/09/08/smplayer-0551/" title="SMPlayer 0.5.51 (September 8, 2007)">SMPlayer 0.5.51</a> (17)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/28/xbox-media-center-on-linux/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Sync your Android phone with Banshee</title>
		<link>http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/</link>
		<comments>http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 01:51:46 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Android]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Banshee]]></category>
		<category><![CDATA[HTC Hero]]></category>
		<category><![CDATA[music management software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17563</guid>
		<description><![CDATA[Recently I finally managed to get rid of my iPhone for a much more Linux-geek friendly mobile &#8211; the HTC Hero. One of my issues with the iPhone was that, in order to do ANY syncing, you had to use iTunes, which I really didn&#8217;t like. And although the HTC Hero has yet to be [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I finally managed to get rid of my iPhone for a much more Linux-geek friendly mobile &#8211; the HTC Hero. One of my issues with the iPhone was that, in order to do ANY syncing, you had to use iTunes, which I really didn&#8217;t like. And although the HTC Hero has yet to be able to do full syncing with Linux (no contacts or calendar syncing with Evolution, Thunderbird, Claws Mail, etc). You can, however, very easily sync your music with the HTC Hero (and any Android-based phone) by using the Banshee music manager.</p>
<p>Banshee is strongly tied to the GNOME desktop manager. These two together make managing your Android phone music as simple as it gets. Now, Banshee is not a complete replacement for iTunes. There is no way to purchase music through Banshee (which is fine because most Android phones can purchase music straight from the Amazon MP3 market). But Banshee does a bang up job of managing your music &#8211; and a simple job interacting with the Android phone. Now, let&#8217;s take a look at how this is done.</p>
<p><span id="more-17563"></span><strong>Installing Banshee</strong></p>
<p>If you don&#8217;t already have Banshee installed you will need to do so. And you will need to make sure you have a version &gt;= 1.4. To install go to your Add/Remove Software tool and follow these steps:</p>
<ol>
<li><span style="background-color: #ffffff">Search for &#8220;banshee&#8221; (no quotes).</span></li>
<li><span style="background-color: #ffffff">Select Banshee for installation.</span></li>
<li><span style="background-color: #ffffff">Click Apply to install.</span></li>
</ol>
<p>That&#8217;s it.</p>
<p>Now that Banshee is installed, you are ready to have Banshee and your Android working together.</p>
<p><strong>Connecting your Android</strong></p>
<div id="attachment_17564" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17564" href="http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/banshee_nautilus/"><img class="size-thumbnail wp-image-17564 " src="http://www.ghacks.net/wp-content/uploads/2009/10/banshee_nautilus-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>When you connect your Android phone to your Linux machine you will be asked (on the phone) if you want to mount your SD card. Go ahead and do that so your Linux machine can see the SD card on the phone. This SD card will show up in the Nautilus file manager (shown in Figure 1) as a 2.0 GB Media. You can actually drag and drop files to this directory &#8211; but we&#8217;re managing music, so we&#8217;re going to use Banshee and not a file manager.</p>
<p>Now open up Banshee and your Android phone will automatically show up (see Figure 2).</p>
<p>As you can see, the interface gives you a clear view of the space</p>
<div id="attachment_17565" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-17565" href="http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/banshee_android/"><img class="size-thumbnail wp-image-17565 " src="http://www.ghacks.net/wp-content/uploads/2009/10/banshee_android-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>available on your phone&#8217;s card. You can also see that there are two options:</p>
<p>Manually sync</p>
<p>Automatically sync</p>
<p>Most likely you will want to manually sync your phone. If your Banshee library is like mine there is WAY more music than will fit on a 2 Gig card. of course you can replace that 2 Gig card with a much larger card and then have Banshee automatically sync.</p>
<p>For manually syncing all you need to do is navigate through your music collection and then drag and drop the files you want to put on your phone.</p>
<p>Upon completion of the music management you can then click the Eject Android G1 Phone button in the upper right corner of Banshee. Now, before you actually unplug your phone from your computer you need to turn off USB storage on your phone. Once USB storage is off you can then unplug your phone and check to make sure your new music is present and accounted for.</p>
<p><strong>Final thoughts</strong></p>
<p>I certainly hope the Linux community and the Android community can work together further so that the Linux operating system can enjoy a complete sync. Once this happens wireless companies can be sure that Linux users/fans will flock to their Android offerings.</p>

	Tags: <a href="http://www.ghacks.net/tag/android/" title="android" rel="tag">android</a>, <a href="http://www.ghacks.net/tag/banshee/" title="Banshee" rel="tag">Banshee</a>, <a href="http://www.ghacks.net/tag/htc-hero/" title="HTC Hero" rel="tag">HTC Hero</a>, <a href="http://www.ghacks.net/tag/music-management-software/" title="music management software" rel="tag">music management software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/23/t-mobile-mytouch/" title="T-Mobile myTouch (June 23, 2009)">T-Mobile myTouch</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/10/23/spring-designs-alex-and-bns-nook/" title="Spring Design&#8217;s Alex And B&#038;N&#8217;s Nook (October 23, 2009)">Spring Design&#8217;s Alex And B&#038;N&#8217;s Nook</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/11/03/sony-ericsson%e2%80%99s-xperia-x10-review/" title="Sony Ericsson’s XPERIA X10: Review (November 3, 2009)">Sony Ericsson’s XPERIA X10: Review</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/03/22/qr-code-generator/" title="QR Code Generator (March 22, 2009)">QR Code Generator</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/11/06/of-cracks-hacks-and-jailbreaks/" title="Of Cracks, Hacks And Jailbreaks (November 6, 2008)">Of Cracks, Hacks And Jailbreaks</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/22/sync-your-android-phone-with-banshee/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Hulu desktop for Linux</title>
		<link>http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/</link>
		<comments>http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 02:14:58 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Browsing]]></category>
		<category><![CDATA[Desktop Manager]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[multi-media]]></category>
		<category><![CDATA[television]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17474</guid>
		<description><![CDATA[I&#8217;m sure by now everyone here knows about Hulu. If not, Hulu is a rather huge collection of television programs that can be viewed on line, for free, with few commercial interruptions. It&#8217;s brilliant. You can watch old reruns of What&#8217;s Happenin? or Mork and Mindy or Alf! Yes, Alf! But many of you may [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure by now everyone here knows about <a title="Hulu" href="http://www.hulu.com" target="_blank">Hulu</a>. If not, Hulu is a rather huge collection of television programs that can be viewed on line, for free, with few commercial interruptions. It&#8217;s brilliant. You can watch old reruns of What&#8217;s Happenin? or Mork and Mindy or Alf! Yes, Alf! But many of you may not know that there is a Hulu client available. This client makes the viewing experience very simple, and much more convenient than the standard browser viewing because, well, it doesn&#8217;t require a browser. Instead it&#8217;s like watching on a simple (but very impressive) desktop widget.</p>
<p>This desktop widget is now available for Windows, Mac, and (are you ready for it?) Linux! Yes, it&#8217;s available for Linux, so all of us Penguinistas can enjoy our Hulu as it was meant to be enjoyed. And best of all, it&#8217;s easy to install. Let&#8217;s see just how easy the Hulu desktop client is to install and use.</p>
<p><span id="more-17474"></span><strong>Distributions and installations</strong></p>
<p>As of now the only distributions Hulu is available for are Ubuntu 9.04 and Fedora 11. So if you&#8217;re not running either of them you&#8217;re out of luck. Hulu does hope to, over time, support other distributions. But both Ubuntu and Fedora make sense. Now, I will tell you that I did successfully install the Hulu client on Elive Compiz which is a Debian-based installation. So &#8211; if you can install a .deb package on your machine, and you meet the requirements, you might be golden.</p>
<p>Let&#8217;s take a look at the installation process. The Hulu client depends upon:</p>
<ul>
<li><span style="font-size: 12px;background-color: #ffffff">GTK+ 2.12 or higher</span></li>
<li><span style="font-size: 12px;background-color: #ffffff">GLib 2.16 or higher</span></li>
<li><span style="font-size: 12px;background-color: #ffffff">LIRC 0.8.2 or higher (required for remote control functionality)</span></li>
<li><span style="font-size: 12px;background-color: #ffffff">Adobe Flash Player 9.0.124</span></li>
</ul>
<p>Most likely, if you are running either Ubuntu 9.04 or Fedora 11, you already have everything you need installed (minus Flash). Installing Flash is as simple (at least in Ubuntu) as visiting a site that requires Flash, and then walk through the steps for installation when prompted. To install Hulu you will need to download the file from the <a title="Download" href="http://www.hulu.com/labs/hulu-desktop-linux" target="_blank">Hulu Linux page</a>. When you have downloaded that file you will need to issue one of the following commands (from within the directory the file was downloaded).</p>
<p>For Ubuntu:</p>
<p><em>dpkg -i huludesktop*</em></p>
<p>For Fedora:</p>
<p><em>rpm -ivh huludesktop*</em></p>
<p>Once the command finishes up, you are ready to run the client.</p>
<p><strong>Using Hulu desktop</strong></p>
<p>To start up the desktop client, issue the following command:</p>
<p><em>huludesktop</em></p>
<div id="attachment_17475" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-17475" href="http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/hulu-2/"><img class="size-thumbnail wp-image-17475 " src="http://www.ghacks.net/wp-content/uploads/2009/10/hulu-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>You will most likely find Hulu desktop in your Audio/Video menu. If not, you can always add it. When the client opens (see Figure 1) you can immediately begin searching and watching your favorite television episodes.</p>
<p>The menu and overall interface are amazingly simple and sleek. More than likely you will be surprised just how well done this Linux client is (considering it is still in beta).</p>
<div id="attachment_17476" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-17476" href="http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/hulu_action/"><img class="size-thumbnail wp-image-17476 " src="http://www.ghacks.net/wp-content/uploads/2009/10/hulu_action-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>As you can see (in Figure 2) the player runs seamlessly on the Linux desktop. What you can not see is that the client requires very little in desktop resources. In fact, it&#8217;s no more noticeable than running a browser.</p>
<p><strong>Final thoughts</strong></p>
<p>The Hulu Linux desktop client makes watching TV (and movies) a breeze. I am thrilled that Hulu has brought out a Linux client without making the Linux community wait as the Windows and Mac community enjoy it&#8217;s services.</p>

	Tags: <a href="http://www.ghacks.net/tag/hulu/" title="hulu" rel="tag">hulu</a>, <a href="http://www.ghacks.net/tag/movies/" title="movies" rel="tag">movies</a>, <a href="http://www.ghacks.net/tag/multi-media/" title="multi-media" rel="tag">multi-media</a>, <a href="http://www.ghacks.net/tag/television/" title="television" rel="tag">television</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/03/12/hulu-no-publically-available-kind-of/" title="Hulu now publically available kind of (March 12, 2008)">Hulu now publically available kind of</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/05/01/howto-watch-abc-tv-streams-outside-the-usa/" title="Howto watch ABC TV Streams outside the USA (May 1, 2006)">Howto watch ABC TV Streams outside the USA</a> (242)</li>
	<li><a href="http://www.ghacks.net/2009/04/19/would-the-try-buy-model-work-for-games-and-movies/" title="Would the try &#038; buy model work for games and movies? (April 19, 2009)">Would the try &#038; buy model work for games and movies?</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/10/01/web-video-downloader-and-converter/" title="Web Video Downloader And Converter (October 1, 2008)">Web Video Downloader And Converter</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/10/15/watch-tv-online-legally/" title="Watch TV online legally (October 15, 2008)">Watch TV online legally</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/20/hulu-desktop-for-linux/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How To Create A Spotify Account From Anywhere</title>
		<link>http://www.ghacks.net/2009/09/09/how-to-create-a-spotify-account-from-anywhere/</link>
		<comments>http://www.ghacks.net/2009/09/09/how-to-create-a-spotify-account-from-anywhere/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 07:54:02 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[music streaming]]></category>
		<category><![CDATA[spotify]]></category>
		<category><![CDATA[spotify account]]></category>
		<category><![CDATA[spotify proxy]]></category>
		<category><![CDATA[spotify registration]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16156</guid>
		<description><![CDATA[Spotify has been in the news lately and it is likely that the music streaming service will become highly popular once they open registration for users in additional countries of the world. The service is currently limited to streaming music to a few countries including the United Kingdom, Sweden or France. Only users from the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/spotify.png" alt="spotify" title="spotify" width="108" height="116" class="alignleft size-full wp-image-16157" />Spotify has been in the news lately and it is likely that the music streaming service will become highly popular once they open registration for users in additional countries of the world. The service is currently limited to streaming music to a few countries including the United Kingdom, Sweden or France. Only users from the United Kingdom can create a Spotify account without invitation. If you are coming from a country that is currently not supported by Spotify then you will be greeted with the following screen:</p>
<p><span id="more-16156"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/09/spotify-account-500x327.jpg" alt="spotify account" title="spotify account" width="500" height="327" class="alignnone size-medium wp-image-16158" /></p>
<p>Users from unsupported countries can enter their email address to be informed when Spotify opens registration for their countries as well. There is however a way to register an account right away even if you are living in a country that is currently blocked from registration. </p>
<p>All that needs to be done to bypass the country check during registration is to use a <a href="http://www.ghacks.net/2006/08/04/free-web-proxy-list/">web proxy</a> from the United Kingdom. Why United Kingdom? Because users from this country can register without invitation. Spotify did a good job of blocking many UK web proxy servers and it might take some time before you locate one that is actually working for you. Someone let me know that this one is working quite well currently. You then need to paste the following url into the web proxy form:</p>
<p><code>https://www.spotify.com/en/products/overview/</code></p>
<p>The registration asks for the usual information including email address, username and password. Make sure you remember the username and password as these are used to log into the software program that is downloaded after the registration has finished. </p>
<p>Spotify does not perform country checks in the Spotify application which means that the web proxy is currently only needed to create the account. Another solution would be to ask a friend from the United Kingdom to create the account for you. </p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/spotify_software-500x229.jpg" alt="spotify software" title="spotify software" width="500" height="229" class="alignnone size-medium wp-image-16159" /></p>
<p>Feel free to add comments (and working proxies) in the comment section.</p>
<p><strong>Update:</strong> Spotify will block access to the software after 14 days if the IP did not resolve to a country currently supported officially by the application.</p>

	Tags: <a href="http://www.ghacks.net/tag/music-streaming/" title="music streaming" rel="tag">music streaming</a>, <a href="http://www.ghacks.net/tag/spotify/" title="spotify" rel="tag">spotify</a>, <a href="http://www.ghacks.net/tag/spotify-account/" title="spotify account" rel="tag">spotify account</a>, <a href="http://www.ghacks.net/tag/spotify-proxy/" title="spotify proxy" rel="tag">spotify proxy</a>, <a href="http://www.ghacks.net/tag/spotify-registration/" title="spotify registration" rel="tag">spotify registration</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/21/spotify-music-legally-on-demand/" title="Spotify: Music legally on demand (February 21, 2009)">Spotify: Music legally on demand</a> (27)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/09/how-to-create-a-spotify-account-from-anywhere/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>XNJB: Transfer music to and from a MTP MP3 player on a Mac</title>
		<link>http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/</link>
		<comments>http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 23:21:14 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[libmtp]]></category>
		<category><![CDATA[libnjb]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[media transfer protocol]]></category>
		<category><![CDATA[mp3-player]]></category>
		<category><![CDATA[mtp]]></category>
		<category><![CDATA[njb]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[portable devices]]></category>
		<category><![CDATA[xnjb]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16041</guid>
		<description><![CDATA[When I switched to a Mac, I did not purchase an iPod for a few months. I previously had a Creative Zen Vision M media player. Unfortunately, this device was not mass storage, but utilised &#8216;Media Transfer Protocol&#8217;. Whilst several pieces of software on Windows provide the facility to move music to the device, OS [...]]]></description>
			<content:encoded><![CDATA[<p>When I switched to a Mac, I did not purchase an iPod for a few months. I previously had a Creative Zen Vision M media player. Unfortunately, this device was not mass storage, but utilised &#8216;Media Transfer Protocol&#8217;. Whilst several pieces of software on Windows provide the facility to move music to the device, OS X or iTunes has no integrated support.</p>
<p>Media Transfer Protocol (MTP) is utilised on a range of devices, but especially so by Creative. Creative Zens (and their variants) utilise the protocol. Whilst the Creative NOMAD isn&#8217;t MTP, it too uses an awkward protocol not natively supported by OS X. The infamous Zune (in the eyes of an Apple fanboy) too uses MTP, however, Microsoft make it very difficult to transfer data to.</p>
<p><a href="http://www.wentnet.com/projects/xnjb/index.html">XNJB</a> is a piece of software that provides a graphical front-end to a libnjb and libmtp: free and open source libraries that allow communication with devices like Creative NOMADs and Creative Zens. Unfortunately, neither support the Zune, due to additional restrictions Microsoft put in place. The libraries work on other POSIX operating systems, like Linux, but XNJB does not.</p>
<p><span id="more-16041"></span>XNJB allows users to upload and download songs from their media players, for ID3 data to be edited and devices searched. All of this has to be done within the software; it is not integrated into iTunes or Finder.</p>
<p>The transfer of data felt a bit slow to me, but I expect this is primarily due to the messiness of my library and the nature of Media Transfer Protocol.</p>
<p>This software is, however, a useful tool when you first got the Mac. I do, though, doubt you could realistically continue to use a MTP device successfully with OS X. Naturally, you could use it inside Boot Camp or a virtual machine, but in my opinion, that too is not an ideal option.</p>
<p><a href="http://www.wentnet.com/projects/xnjb/device-list.html">Compatible devices are listed on their website.</a></p>

	Tags: <a href="http://www.ghacks.net/tag/apple/" title="apple" rel="tag">apple</a>, <a href="http://www.ghacks.net/tag/creative/" title="creative" rel="tag">creative</a>, <a href="http://www.ghacks.net/tag/ipod/" title="iPod" rel="tag">iPod</a>, <a href="http://www.ghacks.net/tag/libmtp/" title="libmtp" rel="tag">libmtp</a>, <a href="http://www.ghacks.net/tag/libnjb/" title="libnjb" rel="tag">libnjb</a>, <a href="http://www.ghacks.net/tag/libraries/" title="libraries" rel="tag">libraries</a>, <a href="http://www.ghacks.net/tag/mac/" title="mac" rel="tag">mac</a>, <a href="http://www.ghacks.net/tag/media-transfer-protocol/" title="media transfer protocol" rel="tag">media transfer protocol</a>, <a href="http://www.ghacks.net/tag/mp3-player/" title="mp3-player" rel="tag">mp3-player</a>, <a href="http://www.ghacks.net/tag/mtp/" title="mtp" rel="tag">mtp</a>, <a href="http://www.ghacks.net/tag/njb/" title="njb" rel="tag">njb</a>, <a href="http://www.ghacks.net/tag/os-x/" title="os x" rel="tag">os x</a>, <a href="http://www.ghacks.net/tag/portable-devices/" title="portable devices" rel="tag">portable devices</a>, <a href="http://www.ghacks.net/tag/xnjb/" title="xnjb" rel="tag">xnjb</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/06/16/sync-itunes-with-non-ipod-mp3-players/" title="Sync iTunes with non iPod mp3 players (June 16, 2007)">Sync iTunes with non iPod mp3 players</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/02/06/replace-itunes-with-floola/" title="Replace iTunes with Floola (February 6, 2007)">Replace iTunes with Floola</a> (12)</li>
	<li><a href="http://www.ghacks.net/2006/12/18/add-features-to-your-mp3-player/" title="Add Features to your MP3 Player (December 18, 2006)">Add Features to your MP3 Player</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/10/12/winamp-ipod-plugin/" title="Winamp iPod Plugin (October 12, 2006)">Winamp iPod Plugin</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/05/xnjb-transfer-music-to-and-from-a-mtp-mp3-player-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merge Mp3</title>
		<link>http://www.ghacks.net/2009/09/04/merge-mp3/</link>
		<comments>http://www.ghacks.net/2009/09/04/merge-mp3/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 13:03:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[join mp3]]></category>
		<category><![CDATA[merge mp3]]></category>
		<category><![CDATA[merging mp3]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[portable software]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16016</guid>
		<description><![CDATA[It sometimes happens that I discover a need for another software program while reviewing an application. This happened during the review of DVD Slideshow Gui which is an excellent tool for creating DVD photo slideshows. The problem that I encountered during the review was that the program only allowed only one mp3 file for the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/microsoft_windows.jpg" alt="microsoft windows" title="microsoft windows" width="128" height="128" class="alignleft size-full wp-image-11907" />It sometimes happens that I discover a need for another software program while reviewing an application. This happened during the review of <a href="http://www.ghacks.net/2009/09/04/dvd-slide-show-software-dvd-slideshow-gui/">DVD Slideshow Gui</a> which is an excellent tool for creating DVD photo slideshows. The problem that I encountered during the review was that the program only allowed only one mp3 file for the background music of the photo slideshow. That&#8217;s problematic if you add many photos and only one song that might be finished playing after a few minutes while the photos continue to be displayed.</p>
<p>I needed a software program to merge mp3 to be able to have enough music for all the photos that would be displayed in the DVD slideshow. </p>
<p><span id="more-16016"></span>Merge Mp3 is a free and portable software program for the Windows operating system that can do exactly that. Mp3 can be dragged and dropped into the application&#8217;s interface or selected through the file browser. It is also possible to specify folders or playlists to add and merge their mp3.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/merge_mp3-500x256.jpg" alt="merge mp3" title="merge mp3" width="500" height="256" class="alignnone size-medium wp-image-16017" /></p>
<p>The order of the mp3 can be changed in the interface in case it needs to be. Basic controls for playing the added mp3 files are available. As are options to add ID3 tags for the new merged mp3. The biggest benefit of Merge Mp3 is its simplicity. It takes less than a minute to select the mp3 and join them. There are additional options where merging mp3 might make sense. This includes merging all chapters of an audiobook or the tracks of a ripped CD.</p>
<p>Merge Mp3 is compatible with Windows and <a href="http://www.shchuka.com/software/mergemp3/#download">available</a> from the developer&#8217;s website.</p>

	Tags: <a href="http://www.ghacks.net/tag/join-mp3/" title="join mp3" rel="tag">join mp3</a>, <a href="http://www.ghacks.net/tag/merge-mp3/" title="merge mp3" rel="tag">merge mp3</a>, <a href="http://www.ghacks.net/tag/merging-mp3/" title="merging mp3" rel="tag">merging mp3</a>, <a href="http://www.ghacks.net/tag/mp3/" title="mp3" rel="tag">mp3</a>, <a href="http://www.ghacks.net/tag/portable-software/" title="portable software" rel="tag">portable software</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/07/04/trout-is-a-lightweight-free-music-player/" title="Trout Is A Lightweight Free Music Player (July 4, 2009)">Trout Is A Lightweight Free Music Player</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/02/15/mp3-packer/" title="Mp3 Packer (February 15, 2009)">Mp3 Packer</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/11/18/join-mp3-from-the-command-line/" title="Join Mp3 From The Command Line (November 18, 2008)">Join Mp3 From The Command Line</a> (17)</li>
	<li><a href="http://www.ghacks.net/2009/02/18/id3-mass-tagger/" title="ID3 Mass Tagger (February 18, 2009)">ID3 Mass Tagger</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/12/23/advanced-mp3-tag-remover/" title="Advanced MP3 Tag Remover (December 23, 2008)">Advanced MP3 Tag Remover</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/04/merge-mp3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>ScreenTunes Finds Movie and TV Show Music</title>
		<link>http://www.ghacks.net/2009/09/01/screentunes-finds-movie-and-tv-show-music/</link>
		<comments>http://www.ghacks.net/2009/09/01/screentunes-finds-movie-and-tv-show-music/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 05:48:21 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[identify song]]></category>
		<category><![CDATA[movie music]]></category>
		<category><![CDATA[movie soundtracks]]></category>
		<category><![CDATA[screentunes]]></category>
		<category><![CDATA[soundtrack]]></category>
		<category><![CDATA[tv show music]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15895</guid>
		<description><![CDATA[What is the name of the song they are playing now in this movie? I guess everyone has asked that question at some point in time only to find out that it was very difficulty to get an answer unless a movie soundtrack was released with the song in question being on the record. Most [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/09/screentunes.jpg" alt="screentunes" title="screentunes" width="317" height="61" class="alignleft size-full wp-image-15894" />What is the name of the song they are playing now in this movie? I guess everyone has asked that question at some point in time only to find out that it was very difficulty to get an answer unless a movie soundtrack was released with the song in question being on the record. Most of the time however it is no that easy which means it can lead to strenuous research on the Internet to discover the song title.</p>
<p>ScreenTunes is a new music search engine that tries to help the user who is looking for a name of a song that has been played in the movie or that was featured in a tv show. It&#8217;s a basic music search engine that can be used to search for songs, lyrics or music in movies and tv shows. The user has to switch to the movie search option that is located beneath the search form on the website before the search for a song or songs of a movie or tv show can be conducted.</p>
<p><span id="more-15895"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/09/movie_music_search-500x375.jpg" alt="movie music search" title="movie music search" width="500" height="375" class="alignnone size-medium wp-image-15896" /></p>
<p>The music search engine will display results immediately if a correct movie title has been entered in the search form. It will otherwise display movie suggestions (did you mean..) of which one has to be selected. Movie and tv show music are divided into two tabs. It is important to switch to the TV Shows tab to find music from tv shows.</p>
<p>Entering Bourne for example will not only display the three Jason Bourne movies as an option but also several others while a search for Dawson&#8217;s Creek will not display any results in the movie tab but the right tv show in the TV Shows tab.</p>
<p>Music from those movies and tv shows is then displayed in the search results including the music title, artist (if known) and three links. Many of the songs can be listened to right away by clicking on the Listen button. This will open a Grooveshark player on the website to play the song right there.</p>
<p>The two other options are to open the page of the song at Amazon or iTunes to purchase it. Results can vary a lot from none or only a few songs to dozens of songs. <a href="http://www.screentunes.com/">ScreenTunes</a> (via <a href="http://www.downloadsquad.com/2009/08/31/screentunes-finds-music-from-movies/">Download Squad</a>) offers an interesting option to users who want to identify a movie or tv show song.</p>

	Tags: <a href="http://www.ghacks.net/tag/identify-song/" title="identify song" rel="tag">identify song</a>, <a href="http://www.ghacks.net/tag/movie-music/" title="movie music" rel="tag">movie music</a>, <a href="http://www.ghacks.net/tag/movie-soundtracks/" title="movie soundtracks" rel="tag">movie soundtracks</a>, <a href="http://www.ghacks.net/tag/screentunes/" title="screentunes" rel="tag">screentunes</a>, <a href="http://www.ghacks.net/tag/soundtrack/" title="soundtrack" rel="tag">soundtrack</a>, <a href="http://www.ghacks.net/tag/tv-show-music/" title="tv show music" rel="tag">tv show music</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/07/08/song-identification-community/" title="Song identification community (July 8, 2007)">Song identification community</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/01/screentunes-finds-movie-and-tv-show-music/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert various media formats to Vorbis in Linux</title>
		<link>http://www.ghacks.net/2009/08/31/convert-various-media-formats-to-vorbis-in-linux/</link>
		<comments>http://www.ghacks.net/2009/08/31/convert-various-media-formats-to-vorbis-in-linux/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 18:45:20 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[audio conversion]]></category>
		<category><![CDATA[mp3 conversion]]></category>
		<category><![CDATA[mp3 to ogg conversion]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15878</guid>
		<description><![CDATA[Over the past month I have made it my goal to stop using the proprietary MP3 format for audio in favor of the free, open standard Ogg Vorbis format. The primary reasons for doing this is 1) Modern Linux distributions do not ship with mp3 support built in (due to licensing constraints) and 2) My [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past month I have made it my goal to stop using the proprietary MP3 format for audio in favor of the free, open standard Ogg Vorbis format. The primary reasons for doing this is 1) Modern Linux distributions do not ship with mp3 support built in (due to licensing constraints) and 2) My Sanza Fuze supports ogg format. Add these two elements the fact that ripping a CD into ogg format is far faster than ripping it into mp3 format, and you can see why I would choose to migrate to ogg.</p>
<p>Now the problem lies in the fact that I have a fairly large collection of music files that are all in mp3 format. Having to convert 5,000+ files, one by one, via command line would cause even me to pull out my hair. So I decided it was time to search for a tool that would handle the conversion for me. The criteria for this conversion was that the tool had to be easily installed and easily used. My goal is to try to convince new users to shy away from either DRM formats or closed formats. And we all know, when dealing with new users, the easier the better. And so with that in mind, my hunt for the perfect tool landed me with <a title="Sound Converter" href="http://soundconverter.berlios.de/" target="_blank">Sound Converter</a>.</p>
<p><span id="more-15878"></span>Sound Converter is a GNOME-based conversion tool that can read anything the GStreamer library can read, which includes:</p>
<ul>
<li>Ogg Vorbis</li>
<li>AAC</li>
<li>MP3</li>
<li>FLAC</li>
<li>WAV</li>
<li>AVI</li>
<li>MPEG</li>
<li>MOV</li>
<li>M4A</li>
<li>AC3</li>
<li>DTS</li>
<li>ALAC</li>
<li>MPC</li>
</ul>
<p>Once read, Sound Converter can then convert the file into:</p>
<ul>
<li>WAV</li>
<li>FLAC</li>
<li>MP3</li>
<li>AAC</li>
<li>Ogg Vorbis</li>
</ul>
<p>The best feature of Sound Converter is that it can convert a single file or a directory of files. Add to that the usaual simplicty of most GNOME applications and you have the ingredients for a perfect solution. With that said, let&#8217;s get to it.</p>
<p><strong>Installing Sound Converter</strong></p>
<p>You will be glad to know Sound Converter is located in the Ubuntu repositories (as well as in the repos for most distributions).  So all you need to do is fire up your Add/Remove Software utility and do the following:</p>
<ol>
<li>Search for &#8220;converter&#8221; (no quotes).</li>
<li>Select (or mark) the Sound Converter entry for installation.</li>
<li>Click Apply to install.</li>
</ol>
<p>That&#8217;s it. After a brief moment Sound Converter will be installed.</p>
<p><strong>Running Sound Converter</strong></p>
<div id="attachment_15884" class="wp-caption alignleft" style="width: 331px"><a rel="attachment wp-att-15884" href="http://www.ghacks.net/2009/08/31/convert-various-media-formats-to-vorbis-in-linux/sound_converter/"><img class="size-full wp-image-15884" src="http://www.ghacks.net/wp-content/uploads/2009/08/sound_converter.png" alt="Figure 1" width="321" height="332" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>You will find the Sound Converter application in the Sound and Video sub-menu of the Applications menu of the GNOME desktop. When you open up Sound Converter you will be greeted by a very simple main window (see Figure 1). It should be obvious, from the looks of the main window, the developer had simplicity in mind when creating the interface for this tool.</p>
<div id="attachment_15886" class="wp-caption alignright" style="width: 312px"><a rel="attachment wp-att-15886" href="http://www.ghacks.net/2009/08/31/convert-various-media-formats-to-vorbis-in-linux/sound_converter_prefs/"><img class="size-full wp-image-15886" src="http://www.ghacks.net/wp-content/uploads/2009/08/sound_converter_prefs.png" alt="Figure 2" width="302" height="387" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Pretty much all you do is add files/folders to the list and click convert. Of course you first will need to configure Sound converter to meet your needs. Before you add a single file or folder to the list click on the Edit menu and select Preferences. When the preferences window opens (see Figure 2) you will want to take care of the following options:</p>
<ul>
<li>Location: Where you want the converted files to be placed (if it is to be different that where the input files are located.)</li>
<li>Create Subfolders: Do you want Sound Converter to create subfolders for you? This is used only if you configure Sound Converter to store the output folders in a non-default location.</li>
<li>Format: What format do you want the output files to be in?</li>
</ul>
<p>The most important option is the Format. For my needs the format will be Ogg Vorbis. Once that is complete click Close and you are ready to convert.</p>
<p><strong>Converting</strong></p>
<p>There are two ways to add files/folders to the Sound Converter list. The most obvious way is to click either  the Add File or Add Folder buttons and navigate to the file/folder you want to add. Another method is to open the Nautilus file browser and drag and drop the files/folders into the Sound Converter window.</p>
<p>Once you have all of the files/folders listed in the main windows click the Convert button and Sound Converter will do its thing. In the end what you will have is solid quality converted files in the format of your desire. No command line necessary!</p>
<p><strong>Final thoughts</strong></p>
<p>Thank goodness for simple GUI tools that would have previously required creating bash scripts to handle batch conversion. Most users do not have the time or inclination to research creating such scripts. It&#8217;s a good thing Sound Converter is there to handle the job.</p>

	Tags: <a href="http://www.ghacks.net/tag/audio-conversion/" title="audio conversion" rel="tag">audio conversion</a>, <a href="http://www.ghacks.net/tag/mp3-conversion/" title="mp3 conversion" rel="tag">mp3 conversion</a>, <a href="http://www.ghacks.net/tag/mp3-to-ogg-conversion/" title="mp3 to ogg conversion" rel="tag">mp3 to ogg conversion</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/14/create-executable-media-files/" title="Create executable media files (May 14, 2008)">Create executable media files</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/08/11/convert-youtube-videos-to-audio-in-linux/" title="Convert Youtube videos to audio in Linux (August 11, 2009)">Convert Youtube videos to audio in Linux</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/31/convert-various-media-formats-to-vorbis-in-linux/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Convert Youtube videos to audio in Linux</title>
		<link>http://www.ghacks.net/2009/08/11/convert-youtube-videos-to-audio-in-linux/</link>
		<comments>http://www.ghacks.net/2009/08/11/convert-youtube-videos-to-audio-in-linux/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 22:09:46 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[mp3 conversion]]></category>
		<category><![CDATA[video to music conversin]]></category>
		<category><![CDATA[youtube conversion]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15231</guid>
		<description><![CDATA[After reading Martin&#8217;s fine article &#8220;Download Youtube Videos&#8221; today, I had to give a bit of a Linux perspective and show how to do this in the Linux operating system. Inititially I assumed this would have to be done via the command line, because that is how I have always done conversions. But I have [...]]]></description>
			<content:encoded><![CDATA[<p>After reading Martin&#8217;s fine article &#8220;<a title="Download Youtube Videos" href="http://www.ghacks.net/2009/08/10/download-youtube-videos/" target="_blank">Download Youtube Videos</a>&#8221; today, I had to give a bit of a Linux perspective and show how to do this in the Linux operating system. Inititially I assumed this would have to be done via the command line, because that is how I have always done conversions. But I have found that many people do not like having to do such tasks from the command line. So I sat out to find a good (and by &#8220;good&#8221; I mean easy). It didn&#8217;t take long to find, it didn&#8217;t take long to install, and it didn&#8217;t take too long to get working the way I wanted (which means including mp3 support).</p>
<p>The tool I eventually settled upon is <a title="Elltube" href="http://elltube.sourceforge.net/" target="_blank">Elltube</a>. Of  all the available tools this was the easiest to install, get working, and the most reliable. With this tool you will find download and converting Youtube videos a nobrainer. There is only one small hitch. If you want to add mp3 support you will have to do some extra installation (In this case it means installing unsupported files). The distribution I will use for this tutorial is Ubuntu 9.04. I will illustrate converting videos into audio-only mp3 format. This is the format that causes issues with most users due to the necessary installation of mp3-supporting libraries.</p>
<p><span id="more-15231"></span><strong>Preparing for the installation of Elltube</strong></p>
<p>The good news is that everything you need, outside of Elltube itself, will be located in the default repositories. The bad news? You will have to install restricted applications. What this means is that Canonical is not responsible for the updating of these files. With that said you will need to fire up Synaptic. I do not suggest you just open up the Add/Remove Software utility from the menu. Instead open up a terminal window and issue the command:</p>
<p><em>sudo synaptic</em></p>
<p>The above command will open up the full-blown Synaptic tool where you will need to do the following:</p>
<ol>
<li>Search for &#8220;lame&#8221; (no quotes).</li>
<li>Scroll down until you see the &#8220;ubuntu-restricted-extras&#8221;.</li>
<li>Mark &#8220;ubuntu-restricted-extras&#8221; for installation.</li>
<li>Search for &#8220;ffmpeg&#8221; (no quotes).</li>
<li>Mark &#8220;ffmpeg&#8221; for installation.</li>
<li>Click Apply to install.</li>
</ol>
<p>Once all of this has installed download the <a title="Elltube .deb" href="http://downloads.sourceforge.net/project/elltube/elltube/0.3/elltube_0.3-1_all.deb" target="_blank">Elltube .deb file</a> and save it to your ~/ directory. After this file download has completed open up a terminal window and issue the following command to install:</p>
<p><em>sudo dpkg -i ~/elltube_0.3-1_all.deb</em></p>
<p>which will install Elltube. You are ready to convert.</p>
<p><strong>Converting a video to mp3 format</strong></p>
<div id="attachment_15233" class="wp-caption alignleft" style="width: 370px"><a rel="attachment wp-att-15233" href="http://www.ghacks.net/2009/08/11/convert-youtube-videos-to-audio-in-linux/elltube/"><img class="size-full wp-image-15233 " src="http://www.ghacks.net/wp-content/uploads/2009/08/elltube.png" alt="Figure 1" width="360" height="270" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>You will find Elltube in your Internet sub-menu of either your Main or Applications menu. When the Elltube application opens you will see the Main window (see Figure1). There isn&#8217;t much to this application from the GUI perspective &#8211; but it serves the purpose well.</p>
<p>The first thing you need to do is find a video you want to convert on Youtube. Let&#8217;s convert a live version of Rush&#8217;s La Villa Strangiato. Find the URl and then copy and paste into the</p>
<div id="attachment_15234" class="wp-caption alignright" style="width: 395px"><a rel="attachment wp-att-15234" href="http://www.ghacks.net/2009/08/11/convert-youtube-videos-to-audio-in-linux/elltube_details/"><img class="size-full wp-image-15234 " src="http://www.ghacks.net/wp-content/uploads/2009/08/elltube_details.png" alt="Figure 2" width="385" height="270" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Youtube URL area. When you do this the details of the file will appear in the main window (see Figure 2). Now what you have to do is to select MP3 (audio only) from the Format drop-down and select a Save to location for the download and conversion. When the details are done, click the Download button and the process will begin.</p>
<p>When the conversion process is complete the &#8220;Video found!&#8221; message will change to let you know it is finished. When it has completed you will have your mp3 file in the Save to folder. You are ready to rock!</p>
<p><strong>Final thoughts</strong></p>
<p>Elltube makes the downloading and conversion of Youtube videos as simple as it gets. The ease at which this process is done makes the installation well worth it.</p>

	Tags: <a href="http://www.ghacks.net/tag/mp3-conversion/" title="mp3 conversion" rel="tag">mp3 conversion</a>, <a href="http://www.ghacks.net/tag/video-to-music-conversin/" title="video to music conversin" rel="tag">video to music conversin</a>, <a href="http://www.ghacks.net/tag/youtube-conversion/" title="youtube conversion" rel="tag">youtube conversion</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/31/convert-various-media-formats-to-vorbis-in-linux/" title="Convert various media formats to Vorbis in Linux (August 31, 2009)">Convert various media formats to Vorbis in Linux</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/11/convert-youtube-videos-to-audio-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Download 1000 Free MP3</title>
		<link>http://www.ghacks.net/2009/07/27/download-1000-free-mp3/</link>
		<comments>http://www.ghacks.net/2009/07/27/download-1000-free-mp3/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 20:55:34 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[free m4a]]></category>
		<category><![CDATA[free-mp3]]></category>
		<category><![CDATA[free-music]]></category>
		<category><![CDATA[m4a download]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mp3 download]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[reverbnation]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=14827</guid>
		<description><![CDATA[Microsoft and Reverbnation are currently running a promotion that is offering 1000 songs for free download. The songs are available in mp3 and m4a format and can be downloaded directly from one of the websites the promotion is running on. This includes the Windows Myspace page and a special Windows directory at Reverbnation.
You find a [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft and Reverbnation are currently running a promotion that is offering 1000 songs for free download. The songs are available in mp3 and m4a format and can be downloaded directly from one of the websites the promotion is running on. This includes the Windows Myspace <a href="http://www.myspace.com/windows">page</a> and a special Windows directory at <a href="http://www.reverbnation.com/windows">Reverbnation</a>.</p>
<p>You find a good mixture of established artists in the list including songs by Bif Naked, Underoath or Warren G but the majority of songs comes from artists that most visitors probably never heard of. This does not necessarily mean that this is bad music. It is actually a good way of discovering new artists that are not that in the focus of mass media.</p>
<p><span id="more-14827"></span>The downloaded songs have been encoded with 192 Kbit and it is likely that all songs are encoded in this bitrate. Music can be sorted by letter or genre which helps to find the right music genre or artist.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/07/music-500x309.jpg" alt="music" title="music" width="500" height="309" class="alignnone size-medium wp-image-14828" /></p>
<p>There is no word yet on the duration of this promotion. Thanks goes to jagslive for sending us the tip.</p>

	Tags: <a href="http://www.ghacks.net/tag/free-m4a/" title="free m4a" rel="tag">free m4a</a>, <a href="http://www.ghacks.net/tag/free-mp3/" title="free-mp3" rel="tag">free-mp3</a>, <a href="http://www.ghacks.net/tag/free-music/" title="free-music" rel="tag">free-music</a>, <a href="http://www.ghacks.net/tag/m4a-download/" title="m4a download" rel="tag">m4a download</a>, <a href="http://www.ghacks.net/tag/mp3/" title="mp3" rel="tag">mp3</a>, <a href="http://www.ghacks.net/tag/mp3-download/" title="mp3 download" rel="tag">mp3 download</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/reverbnation/" title="reverbnation" rel="tag">reverbnation</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/01/04/what-type-of-music-am-i-listening-to/" title="What Type of Music Am I listening to ? (January 4, 2008)">What Type of Music Am I listening to ?</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/04/07/using-streamripper-to-save-internet-radio-tracks/" title="Using Streamripper to save Internet Radio tracks (April 7, 2008)">Using Streamripper to save Internet Radio tracks</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/05/03/ssmunch-audio-search-engine/" title="SSMunch Audio Search Engine (May 3, 2008)">SSMunch Audio Search Engine</a> (4)</li>
	<li><a href="http://www.ghacks.net/2007/02/18/1by1-lightweight-mp3-player/" title="1By1 Lightweight MP3 Player (February 18, 2007)">1By1 Lightweight MP3 Player</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/08/03/winamp-auto-tagger/" title="Winamp Auto Tagger (August 3, 2008)">Winamp Auto Tagger</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/07/27/download-1000-free-mp3/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Say &#8220;Cheese&#8221; with your webcam on Linux</title>
		<link>http://www.ghacks.net/2009/05/31/say-cheese-with-your-webcam-on-linux/</link>
		<comments>http://www.ghacks.net/2009/05/31/say-cheese-with-your-webcam-on-linux/#comments</comments>
		<pubDate>Sun, 31 May 2009 21:59:44 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Notebooks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[cheese]]></category>
		<category><![CDATA[photo booth software]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[web cam]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13208</guid>
		<description><![CDATA[So you went ahead and purchased that System 76 laptop or you decided to finally install Linux on your laptop. You now have a Linux based laptop with a webcam. But how do you take advantage of this hardware? You want to be able to use that web cam to upload photos to facebook (or [...]]]></description>
			<content:encoded><![CDATA[<p>So you went ahead and purchased that <a title="System 76" href="http://www.system76.com" target="_blank">System 76</a> laptop or you decided to finally install Linux on your laptop. You now have a Linux based laptop with a webcam. But how do you take advantage of this hardware? You want to be able to use that web cam to upload photos to <a href="http://www.ghacks.net/2009/10/17/facebook-login/">facebook</a> (or the like), but are not sure exactly how to use your hardware. It&#8217;s simple with a handy little tool called <a title="Cheese" href="http://projects.gnome.org/cheese/" target="_blank">Cheese</a>.</p>
<p>Cheese is not one of those applications that is going to make or break your desktop experience. But it certainly will enhance it. You can take standard pictures and even add effects to those pictures And Cheese doesn&#8217;t just do pics, it can do videos as well.</p>
<p><span id="more-13208"></span></p>
<p><strong>Getting and installing</strong></p>
<p>Even though Cheese is a part of the GNOME desktop, it isn&#8217;t always installed by default. To install Cheese open up your Add/Remove Software utility, search for &#8220;cheese&#8221; (no quotes), select the results, and click Apply. To start Cheese look in the Graphics submenu of the Applications menu.</p>
<div id="attachment_13207" class="wp-caption alignleft" style="width: 296px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/cheese.png"><img class="size-medium wp-image-13207" src="http://www.ghacks.net/wp-content/uploads/2009/05/cheese-477x500.png" alt="Figure 1" width="286" height="300" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>When you fire Cheese up it will instantly start seeing you. Figure 1 shows me stalking a penguin through the eyes of Cheese. You will also see two photos I have already taken of myself.</p>
<p>To snap a photo of yourself place yourself in the position (or goofy face) you want and press the Take A Photo button.</p>
<p>When the photo is snapped it will appear in the lower pane of the application.</p>
<p>Now those photos you have taken have not been saved. You must actually save them before you can use them. To save a photo right click the photo and select &#8220;Save As&#8221;. By default photos are saved in the <strong>~/Pictures/Webcam</strong> directory and can only be saved in .jpg format.</p>
<p>From that same right menu you can choose to send a picture to a removeable device, import the photo into F-Spot, open the photo, or send the photo to the trash. There is one other option &#8220;Set as Account Photo&#8221;, which is supposed to set a photo to your About me and your login photo. I have yet to get this to work.</p>
<p><strong>Effects</strong></p>
<p>You can even add effects to a photo. You actually add the effects before the photo is taken, and you can add more than one effect  if you like. To add effects click the Effects button to list all of the possible effects.</p>
<div id="attachment_13210" class="wp-caption alignright" style="width: 296px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/effects.png"><img class="size-medium wp-image-13210" src="http://www.ghacks.net/wp-content/uploads/2009/05/effects-477x500.png" alt="Figure 2" width="286" height="300" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>As you click on an effect it will be highlighted. Click on as many effects as you like, but know that the more effects you add the slower Cheese will get (especially when adding effects like Vertigo and Warp.)</p>
<p>After you select the effects you want click the Effects button again and you will be returned to the normal screen, only now your photo will be &#8220;enhanced&#8221; by the effects you have chosen.</p>
<p>You can see the right photo of me was with the Vertigo and the Warp effects running.</p>
<p><strong>Countdown</strong></p>
<p>You will notice, in the Cheese main menu, a Countdown entry. If this entry is checked there will be a delay in the photo taking (so you can make yourself as photogenic as possible.) If you would prefer instant results uncheck that entry and photos will be snapped as soon as you hit the Take a Photo button.</p>
<p><strong>Final thoughts</strong></p>
<p>Cheese is not going to make you a more productive worker. In fact, it&#8217;s just fun enough that it might make you a less productive worker. But when you need that interface to your trusty webcam, just say &#8220;Cheese&#8221; and you&#8217;ll be ready every time.</p>

	Tags: <a href="http://www.ghacks.net/tag/cheese/" title="cheese" rel="tag">cheese</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/photo-booth-software/" title="photo booth software" rel="tag">photo booth software</a>, <a href="http://www.ghacks.net/tag/photos/" title="photos" rel="tag">photos</a>, <a href="http://www.ghacks.net/tag/web-cam/" title="web cam" rel="tag">web cam</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/10/23/xnview-add-ons-and-format-plugins/" title="XnView Add-ons and Format Plugins (October 23, 2008)">XnView Add-ons and Format Plugins</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/12/06/widgets-for-linux-gdesklets/" title="Widgets for Linux: gDesklets (December 6, 2006)">Widgets for Linux: gDesklets</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/31/say-cheese-with-your-webcam-on-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Songbird in Linux</title>
		<link>http://www.ghacks.net/2009/05/05/songbird-in-linux/</link>
		<comments>http://www.ghacks.net/2009/05/05/songbird-in-linux/#comments</comments>
		<pubDate>Tue, 05 May 2009 18:45:38 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[media players]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12599</guid>
		<description><![CDATA[If you remember my last media entry, The best Linux media players, you&#8217;ll remember I left out one very important entry &#8211; Songbird. At the time I really hadn&#8217;t given this relatively new entry to the media players a try. But recent &#8220;upgrades&#8221; to Rhythmbox and Banshee which left either 1) much to be desired [...]]]></description>
			<content:encoded><![CDATA[<p>If you remember my last media entry, <a title="Best Linux media players" href="http://www.ghacks.net/2009/04/18/the-best-linux-media-players/" target="_blank">The best Linux media players</a>, you&#8217;ll remember I left out one very important entry &#8211; <a title="Songbird" href="http://getsongbird.com/" target="_blank">Songbird</a>. At the time I really hadn&#8217;t given this relatively new entry to the media players a try. But recent &#8220;upgrades&#8221; to Rhythmbox and Banshee which left either 1) much to be desired or 2) the application unusable made me take a look at Songbird.</p>
<p>I was looking at a player to connect to a DAAP server to centralize my home music collection. Songbird was the ticket. With that in mind I thought it might be good to illustrate how to use this player on Linux. Since most users here are Windows users, you are used to pointing and clicking an application into existence. With some Linux applications, this isn&#8217;t quite the case. Unlike most Linux applications, Songbird has yet to reach the repositories of the main distributions. Because of this you will have to download the application from the Songbird website and use the downloaded file.</p>
<p><span id="more-12599"></span>Since Songbird is based on <a href="http://www.ghacks.net/tag/firefox/">Firefox</a>, it is used very similarly. The first thing you need to do is download the necessary file. You will find a link to the download from the main Songbird page. Once you have the file you will have to open up terminal window and change to the directory it was downloaded to. For simplicity sake let&#8217;s assume the file was downloaded to <strong>~/Download/firefox/</strong>.</p>
<p>From within the terminal window issue the command:</p>
<p>cd ~/Download/firefox</p>
<p>Now move the file <strong>Songbird_XXX.tar.gz</strong></p>
<p>Where XXX is the release and architecture of your file name.</p>
<p>Now change to your home directory with the command <em>cd. </em>Now you are ready to unpack the file. Run the command:</p>
<p><em>tar xvfz Songbird_XXX.tar.gz</em></p>
<p>which will result in a new directory <strong>~/Songbird<em>. </em></strong></p>
<div id="attachment_12602" class="wp-caption alignleft" style="width: 346px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/app_launcher.png"><img class="size-full wp-image-12602" src="http://www.ghacks.net/wp-content/uploads/2009/05/app_launcher.png" alt="Figure 1" width="336" height="294" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>Within this new directory is everything you need run the application, which is done with the command <em>~/Songbird/songbird</em>. It would be nice if you could create a link from the ~/Songbird/songbird to <em>/usr/bin</em> but this will not work. Instead what you need to do is create either a desktop or panel application launcher in order to open up Songbird. In GNOME you can create a panel launcher by right clicking the panel and selecting &#8220;Add to panel&#8221;.</p>
<p>The next step is to enter the details for the launcher. Here is what you&#8217;ll need:</p>
<ul>
<li>Type: Application</li>
<li>Name: Songbird (This can actually be anything you want)</li>
<li>Command: /home/USERNAME/Songbird/songbird NOTE: Where USERNAME is the actual user name. You must use the explicit path to the Songbird executable.</li>
<li>Comment: Songbird Media Player (This can be anything you want)</li>
<li>Icon: This will be located in /home/USERNAME/Songbird/chrome/icons/default/ Where USERNAME is the actual username. The icon name is default.xpm</li>
</ul>
<div id="attachment_12605" class="wp-caption alignright" style="width: 365px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/kde_menu_edit.png"><img class="size-full wp-image-12605" src="http://www.ghacks.net/wp-content/uploads/2009/05/kde_menu_edit.png" alt="Figure 2" width="355" height="251" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>For KDE 4 you actually have to add the Songbird entry to the menu. A launcher widget is planned for 4.2 but has yet to find its way into the repositories. To add Songbird to the menu  right click the Start Menu icon and select Menu Editor from the resulting menu.  In the window that opens you will want to add this menu entry to the Multimedia sub menu. Highlight the Multimedia entry and then click New Item. In the resulting General tab fill out the entries like you see in Figure 2. The only difference will be to make sure you use the explicit path to your Songbird executable. After you have filled everything out click the Save button. Now you will find Songbird in your KDE menu.</p>
<p><strong>Final Thoughts</strong></p>
<p>Songbird is really one of the more user-friendly audio/video management tools for any platform. If you are looking for a replacement for iTunes, that will allow you to work in any OS, Songbird should fit the bill.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/media-players/" title="media players" rel="tag">media players</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/12/06/widgets-for-linux-gdesklets/" title="Widgets for Linux: gDesklets (December 6, 2006)">Widgets for Linux: gDesklets</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (19)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/05/songbird-in-linux/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Connecting Linux to a Bubba 2</title>
		<link>http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/</link>
		<comments>http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/#comments</comments>
		<pubDate>Sun, 03 May 2009 14:08:02 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Bubba 2]]></category>
		<category><![CDATA[DAAP]]></category>
		<category><![CDATA[file-sharing]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12550</guid>
		<description><![CDATA[If you don&#8217;t know, the Bubba 2 is a piece of hardware, driven by the Linux operating system, created by ecXito. The Bubba 2 can stream media, serve files, share printers, and more. How? The Bubba 2 uses Samba to share out services and files. Because it uses Samba, connecting to the Bubba 2 is [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t know, the Bubba 2 is a piece of hardware, driven by the Linux operating system, created by <a title="eXcito" href="http://www.excito.com" target="_blank">ecXito</a>. The Bubba 2 can stream media, serve files, share printers, and more. How? The Bubba 2 uses Samba to share out services and files. Because it uses Samba, connecting to the Bubba 2 is simple &#8211; that&#8217;s what Samba does best. But when you have a Linux machine you want to connect to the Bubba 2 you won&#8217;t find anything helpful in the manuals.</p>
<p>In fact even getting to the web-based administration screen isn&#8217;t easy from the Linux point of view. The instructions say point your browser to http://bubba and log in. When using a browser on Linux this will take you to search results for &#8220;bubba&#8221;. And the only mention of an IP address in the instructions is 192.168.10.1. Since my local network uses 192.168.1.x I couldn&#8217;t see the address. So what could I do? Let&#8217;s take a look.</p>
<p><span id="more-12550"></span></p>
<div id="attachment_12552" class="wp-caption alignleft" style="width: 283px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/wireshark.png"><img class="size-full wp-image-12552" src="http://www.ghacks.net/wp-content/uploads/2009/05/wireshark.png" alt="Figure 1" width="273" height="205" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>Once you have the Bubba 2 plugged in (the instructions are quite clear and simple for this step) your first task is to locate the IP address for the machine. For this I employed <a title="Wireshark" href="http://www.wireshark.org/" target="_blank">Wireshark</a>. As you can see, in Figure 1, there is some external traffic (some of which is from <a href="http://www.ghacks.net/2009/10/17/facebook-login/">Facebook</a> &#8211; must look into that) but the IP address of interest is the .16 address. Since there is a lot of traffic coming from that address it is a safe bet that address is attached to the Bubba 2.</p>
<p>So I point my browser to 192.168.1.16 and voila!, the Bubba 2 network admin screen is up. Wireshark has done its job for the day.</p>
<p>Since the Bubba 2 can stream music there has to be a way to place music into the <strong>/home/storage/music</strong> folder. Any music in this folder will be served up via DAAP. Problem is, how to get it there? It took me a bit of time, but I found a solution.</p>
<p>The first thing to do is to log into the web admin tool. By default the user/password is admin/admin. You can change this to meet your needs of course. Log in as your admin and click on the Fileserver section. Here you can upload all the music you need. Problem is, you can only load one file at a time (you can&#8217;t load directories.) With over 15,000 music files to copy this wasn&#8217;t an option. My next attempt found me using FTP to transfer directories to the Bubba 2. This worked to a point. What I now had was a standard user with a directory full of music which could not be streamed. This lead me to my next problem: I couldn&#8217;t move the directories from the users ~/ directory to <strong>/home/storage/music</strong> because of permissions issues.</p>
<p>The work around came about with the help of an external USB hard drive. This is the same drive that contains my entire music collection. By connecting this drive to the Bubba 2 I was then able to copy the entire contents of this drive to the <strong>/home/storage/music</strong> directory which was then ready for streaming.</p>
<p><strong>Streaming to Linux</strong></p>
<div id="attachment_12554" class="wp-caption alignright" style="width: 231px"><a href="http://www.ghacks.net/wp-content/uploads/2009/05/rhythmbox.png"><img class="size-full wp-image-12554" src="http://www.ghacks.net/wp-content/uploads/2009/05/rhythmbox.png" alt="Figure 2" width="221" height="173" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>The easiest method of listening to the music on the Bubba 2 is with a DAAP-enalbed piece of software. Out of the box Rhythmbox was able to connect to the stream. To do this you right click in an empty area of the left nav where a new menu will open (see Figure 2). In this new menu you will see an entry &#8220;Connect to DAAP share&#8221;. Select that and enter the IP address of your Bubba 2.</p>
<p>Shortly after you do this, your Shared library will populate with music from your Bubba 2. Listen away.</p>
<p><strong>Final Thoughts</strong></p>
<p>The Bubba 2 isn&#8217;t limited to only music streaming. You can share out printers and email as well. But when you&#8217;re having to connect from a Linux box, you might have to go through a few more steps than you would with either Windows or Mac. Even with these extra steps, it&#8217;s worth it. The Bubba 2 is an outstanding piece of hardware that makes sharing to small networks a snap.</p>

	Tags: <a href="http://www.ghacks.net/tag/bubba-2/" title="Bubba 2" rel="tag">Bubba 2</a>, <a href="http://www.ghacks.net/tag/daap/" title="DAAP" rel="tag">DAAP</a>, <a href="http://www.ghacks.net/tag/file-sharing/" title="file-sharing" rel="tag">file-sharing</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/samba/" title="samba" rel="tag">samba</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/06/get-to-know-linux-understanding-smbconf/" title="Get To Know Linux: Understanding smb.conf (February 6, 2009)">Get To Know Linux: Understanding smb.conf</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/" title="Set up your new Ubuntu Server as a Samba Server (September 4, 2009)">Set up your new Ubuntu Server as a Samba Server</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/04/19/auto-mounting-a-samba-share-in-linux/" title="Auto mounting a Samba share in Linux (April 19, 2009)">Auto mounting a Samba share in Linux</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/07/28/you-are-sharing-files/" title="You Are Sharing Files (July 28, 2008)">You Are Sharing Files</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/03/connecting-linux-to-a-bubba-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tune into streaming servers with Streamtuner</title>
		<link>http://www.ghacks.net/2009/04/22/tune-into-streaming-servers-with-streamtuner/</link>
		<comments>http://www.ghacks.net/2009/04/22/tune-into-streaming-servers-with-streamtuner/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 22:26:01 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[live365]]></category>
		<category><![CDATA[shoutcast]]></category>
		<category><![CDATA[streaming music]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12244</guid>
		<description><![CDATA[Streamtuner is one of those Linux applications that would most likely go unnoticed without mention. That is a shame considering how easy it makes finding and tuning into various music streams without having to touch the command or even google your favorite types of music.
With Streamtuner you will find plenty of music genres at your [...]]]></description>
			<content:encoded><![CDATA[<p>Streamtuner is one of those Linux applications that would most likely go unnoticed without mention. That is a shame considering how easy it makes finding and tuning into various music streams without having to touch the command or even google your favorite types of music.</p>
<p>With Streamtuner you will find plenty of music genres at your fingertips waiting for you to stream them to your speakers. But just how easy is Streamtune? You will be surprised just how easy. And Streamtuner isn&#8217;t limited to Shoutcast. You can stream:</p>
<ul>
<li>Live365</li>
<li>Xiph.org</li>
<li>basic.ch</li>
<li>local streams</li>
</ul>
<p>and many more.</p>
<p><span id="more-12244"></span><strong>Getting and installing</strong></p>
<p>Streamtuner should be included in your distributions&#8217; repositories so you can open up your Add/Remove Software utility, search for Streamtuner, select Streamtune, and apply the changes.</p>
<p>Once stream tuner is installed you will most likely find it located in your Audio sub menu of your main menu. If you can not locate it, you can start it by issuing the command <em>streamtuner</em> from the command line.</p>
<p><strong>How it works</strong></p>
<div id="attachment_12243" class="wp-caption alignleft" style="width: 375px"><a href="http://www.ghacks.net/wp-content/uploads/2009/04/streamtuner.png"><img class="size-full wp-image-12243" src="http://www.ghacks.net/wp-content/uploads/2009/04/streamtuner.png" alt="Figure 1" width="365" height="252" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>Streamtuner is quite easy to use. Once open (see Figure 1) you navigate through the various streams, select the stream you want, and click the Tune in button. You can even record a stream (defaulting to mp3 format) by clicking the Record button.</p>
<p><strong>Options</strong></p>
<div id="attachment_12245" class="wp-caption alignright" style="width: 344px"><a href="http://www.ghacks.net/wp-content/uploads/2009/04/streamtuner_pref.png"><img class="size-full wp-image-12245" src="http://www.ghacks.net/wp-content/uploads/2009/04/streamtuner_pref.png" alt="Figure 2" width="334" height="199" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Streamtuner will default to whatever application you have set up to play the particular stream. By default, my installation optioned XMMS to play streams. You can, however, configure Streamtuner to use any application that will play the stream.</p>
<p>To configure Streamtuner to use a different application click on the Preferences entry in the Edit menu which will open the Preferences window (see Figure 2). In this window you will see the various types of Actions for Streamtuner. To change a command to handle this action double click on the particular action, delete the command used, and replace the command. You do have to know the exact command to run the application you want to use. Make sure you do keep the &#8221; %q&#8221; suffix on the command (otherwise the application will open but not to the particular stream.)</p>
<div id="attachment_12246" class="wp-caption alignleft" style="width: 344px"><a href="http://www.ghacks.net/wp-content/uploads/2009/04/streamtuner_load.png"><img class="size-full wp-image-12246" src="http://www.ghacks.net/wp-content/uploads/2009/04/streamtuner_load.png" alt="Figure 3" width="334" height="199" /></a><p class="wp-caption-text">Figure 3</p></div>
<p>From this same Preferences window you can define how many streams for each server type are loaded by clicking on the particular server plugin. By default each will load 100 available streams. You can up that by simply clicking the checkbox by the &#8220;Load at most&#8221; entry and upping the amount (see Figure 3).</p>
<p><strong>Search for music</strong></p>
<p>You can search for a particular genre of music, artist, song, etc within Streamtuner. To do this either click the Find entry in the Edit menu or hit the Ctrl-f key combination. This will bring up a find dialog box. Enter your search string and click Find. The resuls will appear in the main window where you can then select from the various streams. In order to do another search you first have to click the Reload button and then run your next search.This search method will only search the server type you currently in. So if you want to go from searching Shoutcast to searching Live365 you will have to click on the server tab and then run your search.</p>
<p><strong>Final Thoughts</strong></p>
<p>If you are looking for a means to listen to streaming music on a Linux desktop, search no further than Streamtune. It&#8217;s easy to use, reliable, and offers quite a large amount of music genres and stations to stream.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/live365/" title="live365" rel="tag">live365</a>, <a href="http://www.ghacks.net/tag/shoutcast/" title="shoutcast" rel="tag">shoutcast</a>, <a href="http://www.ghacks.net/tag/streaming-music/" title="streaming music" rel="tag">streaming music</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/12/06/widgets-for-linux-gdesklets/" title="Widgets for Linux: gDesklets (December 6, 2006)">Widgets for Linux: gDesklets</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (19)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/22/tune-into-streaming-servers-with-streamtuner/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Send Videos to Your Mobile Phone with Vuclip</title>
		<link>http://www.ghacks.net/2009/04/21/send-videos-to-your-mobile-phone-with-vuclip/</link>
		<comments>http://www.ghacks.net/2009/04/21/send-videos-to-your-mobile-phone-with-vuclip/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 15:55:46 +0000</pubDate>
		<dc:creator>Cheryl</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[mobile phones]]></category>
		<category><![CDATA[transcoding]]></category>
		<category><![CDATA[video sharing]]></category>
		<category><![CDATA[vuclip]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12235</guid>
		<description><![CDATA[Almost everyone has a mobile phone today and phones themselves have gone beyond just devices to use to talk to people. Today&#8217;s phones come ready with a whole bunch of bells and whistles for their owners to play with. One of these includes support for video.
One of the best resources for an owner of a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12233" src="http://www.ghacks.net/wp-content/uploads/2009/04/vuclip-thumbnail.jpg" alt="vuclip-thumbnail" width="150" height="34" />Almost everyone has a mobile phone today and phones themselves have gone beyond just devices to use to talk to people. Today&#8217;s phones come ready with a whole bunch of bells and whistles for their owners to play with. One of these includes support for video.</p>
<p>One of the best resources for an owner of a video-enabled phone is <a href="http://www.vuclip.com/" target="_blank">Vuclip</a>. Formerly called blueapple.mobi, this site is like YouTube for mobile phones. Users can stream video clips from different video-sharing sites directly to the phone via the site&#8217;s search function or just browsing different categories.</p>
<p><span id="more-12235"></span>As a bonus, Vuclip lets you save videos directly to your phone without any format or codec conflicts. When you see a video you like, just enter your name and phone number and click the &#8217;send to phone&#8217; button. Vuclip will transcode the file to the necessary phone format and send it to your phone so you are saved the hassle of converting the file format yourself. Registered users have access to additional features like creating cliplists and video alerts among others.</p>
<p><img class="alignnone size-full wp-image-12234" src="http://www.ghacks.net/wp-content/uploads/2009/04/vuclip-main.jpg" alt="vuclip-main" width="511" height="308" /></p>
<p>Vuclip claims to produce videos that are compatible with 2,000 different phones from various brands. In addition, the Vuclip service is available for more than 130 countries. The only downside is that although the service is free, users might still have to pay for accessing the internet from their phones as well as for data transfer. Of course this depends on a user&#8217;s service provider and the type of billing plan.</p>
<p>What do you think of Vuclip? Would you use this site and its services? What features would you like to see the site offer? Let me know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/mobile-phones/" title="mobile phones" rel="tag">mobile phones</a>, <a href="http://www.ghacks.net/tag/transcoding/" title="transcoding" rel="tag">transcoding</a>, <a href="http://www.ghacks.net/tag/video-sharing/" title="video sharing" rel="tag">video sharing</a>, <a href="http://www.ghacks.net/tag/vuclip/" title="vuclip" rel="tag">vuclip</a>, <a href="http://www.ghacks.net/tag/youtube/" title="youtube" rel="tag">youtube</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/24/youtube-enhance-youtube-experience/" title="Youtube: Enhance Youtube Experience (April 24, 2009)">Youtube: Enhance Youtube Experience</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/07/28/youtube-videos-downloader-tubequeue/" title="Youtube Videos Downloader TubeQueue (July 28, 2009)">Youtube Videos Downloader TubeQueue</a> (14)</li>
	<li><a href="http://www.ghacks.net/2009/09/01/youtube-video-search-is-a-barebone-youtube-downloader/" title="Youtube Video Search Is A Barebone Youtube Downloader (September 1, 2009)">Youtube Video Search Is A Barebone Youtube Downloader</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/03/26/youtube-video-awards-2006-winners/" title="Youtube Video Awards 2006 Winners (March 26, 2007)">Youtube Video Awards 2006 Winners</a> (0)</li>
	<li><a href="http://www.ghacks.net/2007/03/10/youtube-removed-videos-and-turkey-lifts-ban/" title="Youtube removed videos and Turkey lifts ban (March 10, 2007)">Youtube removed videos and Turkey lifts ban</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/21/send-videos-to-your-mobile-phone-with-vuclip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The best Linux media players</title>
		<link>http://www.ghacks.net/2009/04/18/the-best-linux-media-players/</link>
		<comments>http://www.ghacks.net/2009/04/18/the-best-linux-media-players/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 18:25:46 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=12138</guid>
		<description><![CDATA[Recently I have had a lot of people asking how to play various media files in Linux. Since most users are migrating over from either Mac or Windows, they are either used to one single application handling their media files or at least knowing exactly what apps handle each media type. When they migrate over [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/rhythmbox.png" alt="rhythmbox" title="rhythmbox" width="120" height="120" class="alignleft size-full wp-image-12168" />Recently I have had a lot of people asking how to play various media files in Linux. Since most users are migrating over from either Mac or Windows, they are either used to one single application handling their media files or at least knowing exactly what apps handle each media type. When they migrate over all of a sudden there is no Windows Media Player or iTunes. And then comes the bombardment of different applications to choose from! All of this combined makes for some difficult usage. </p>
<p><span id="more-12138"></span>And so&#8230;I thought it would be smart to write about the best tools to play certain media types. Understand that these are the best in my opinion. You might hear differently from every other user.</p>
<p>With that in mind, let&#8217;s take a look at the best audio and video viewing tools available.</p>
<p><strong>Audio</strong></p>
<p><strong><a title="XMMS" href="http://www.xmms.org/" target="_blank">XMMS</a>. </strong>Call me a purist but for straight up audio you can not beat XMMS. No you will not be able to manage your iPod with this tool. But for pure music enjoyment, nothing beats it. And if you were a Winamp user you are in luck because it works the same way. There is one hiccup with using XMMS. If you plan on playing MP3 files, like everyone does, you&#8217;ll have to uninstall the XMMS installed on your distribution (if one was in fact installed), and make sure you install the player xmms-mp3 instead. Once installed you can enjoy: mp3, acc, ape, flac, icecase/shoutcast, ogg, shn, speex, tta, wav, wavpack, wma. XMMS is also themeable for all you desktop hipters ;-).</p>
<p><strong>Rhythmbox</strong></p>
<p>Of all the music managers, my favorite is Rhythmox. Rhythmbox was inspired by iTunes so, as you can imagine, it integrates well with iPods and other such devices. And although you can not use Rhythmbox with the iTunes store, you can download music from both <a title="Magnatune" href="http://www.magnatune.com/" target="_blank">Magnatune</a> and <a title="Jamendo" href="http://www.jamendo.com/" target="_blank">Jamendo</a>. Rythmbox also supports DAAP sharing which allows you to connect to a centralized server. Rhythmbox uses Gstreamer so it supports a wide range of audio formats.</p>
<p><a title="Banshee" href="http://banshee-project.org/" target="_blank"><strong>Banshee</strong></a></p>
<p>Banshee is another favorite that manages to one-up Rhythmbox by being the first Linux media manager to integrate with the Android-based G1 phone. Banshee offers all of the features of Rhythmbox minus the ability to download music from a &#8220;store&#8221;. Banshee does, however, include last.fm stream support. The list of audio files Banshee supports is smaller than that of XMMS mp3, acc, ogg, and wav.</p>
<p><strong>Video</strong></p>
<p><a title="MPlayer" href="http://www.mplayerhq.hu/design7/news.html" target="_blank"><strong>Mplayer</strong></a></p>
<p>Mplayer is not usually the default video player in Linux nor is it the easiest to install or get running. But when you do get it installed and running it works flawlessly. There are some distributions (such as <a title="Elive Compiz" href="http://www.elivecd.org/Download/e17-compiz" target="_blank">Elive Compiz</a>) that install MPlayer<strong> </strong>as the default movie player which plays video files and DVDs perfectly.</p>
<p><a title="VLC" href="http://www.videolan.org/vlc/" target="_blank"><strong>VLC</strong></a></p>
<p>VLC is typically the favorite &#8220;universal&#8221; media player. This little gem really can play it all. And the beauty of VLC is that it&#8217;s cross platform, so if you know VLC in Windows or Mac, you will know it in Linux. VLC supports MPEG-1, MPEG-2, MPEG-4, DivX, mp3, ogg, as well as DVDs, VCDs, and streaming. VLC is not nearly the installation nightmare of most other video players. If your distribution does not default to VLC, you might want to give it a try before you resign yourself to the idea that Linux and video do not make good bedfellows.</p>
<p><a title="XINE" href="http://www.xine-project.org/home" target="_blank"><strong>XINE</strong></a></p>
<p>When all else fails, XINE. XINE is one of the more well done, reliable, versatile of the media players. XINE plays CDs, DVDs, VCDs,? and decodes multimedia files like AVI, MOV, WMV, and MP3. You can also install support for mov and mp4 media as well as real player files. XINE is that media player I install when my current distro doesn&#8217;t play well with VLC or Mplayer.</p>
<p><strong>Final Thoughts</strong></p>
<p>Viewing media files doesn&#8217;t have to be difficult, even in the Linux operating system. Although this list isn&#8217;t exhaustive, it is the best of the best IMHO. Any of the above players should work well for you.</p>

	Tags: <a href="http://www.ghacks.net/tag/audio/" title="audio" rel="tag">audio</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/media/" title="media" rel="tag">media</a>, <a href="http://www.ghacks.net/tag/video/" title="video" rel="tag">video</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/02/13/windows-vista-codec-pack/" title="Windows Vista Codec (February 13, 2007)">Windows Vista Codec</a> (12)</li>
	<li><a href="http://www.ghacks.net/2009/08/15/windows-media-player-import-for-winamp/" title="Windows Media Player Import for Winamp (August 15, 2009)">Windows Media Player Import for Winamp</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/01/11/use-orb-to-stream-media-on-any-device-with-internet-access/" title="Use Orb to stream media on any device with internet access (January 11, 2007)">Use Orb to stream media on any device with internet access</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/12/taksi-open-source-alternative-to-fraps/" title="Taksi Open Source Alternative to Fraps (December 12, 2006)">Taksi Open Source Alternative to Fraps</a> (4)</li>
	<li><a href="http://www.ghacks.net/2006/12/10/showmedo-free-video-tutorial-website/" title="ShowMeDo Free Video Tutorial Website (December 10, 2006)">ShowMeDo Free Video Tutorial Website</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/18/the-best-linux-media-players/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WinLAME 2009 Beta Released</title>
		<link>http://www.ghacks.net/2009/04/17/winlame-2009-released/</link>
		<comments>http://www.ghacks.net/2009/04/17/winlame-2009-released/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 20:05:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[audio encoder]]></category>
		<category><![CDATA[audio-cd]]></category>
		<category><![CDATA[lame]]></category>
		<category><![CDATA[mp3 ripper]]></category>
		<category><![CDATA[music encoder]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[rip audio cd]]></category>
		<category><![CDATA[rip cd]]></category>
		<category><![CDATA[winlame]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/17/winlame-2009-released/</guid>
		<description><![CDATA[If you are looking for an easy to use music encoder you might want to give the latest version of winLame a try. Beta 1 of the 2009 release has just been made available on the official homepage of the project adding several improvements to previous versions of the lame frontend for the Windows operating [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/winlame.jpg" alt="winlame" title="winlame" width="56" height="56" class="alignleft size-full wp-image-12108" />If you are looking for an easy to use music encoder you might want to give the latest version of winLame a try. Beta 1 of the 2009 release has just been made available on the official homepage of the project adding several improvements to previous versions of the lame frontend for the Windows operating system.</p>
<p><span id="more-12112"></span>The program supports a wide variety of music formats and can also rip audio CDs (with the option to pull information from Freebd) easily. Some of the more popular formats that are supported by <a href="http://winlame.sourceforge.net/index.php">winLame</a> include mp3, ogg, acc, wma and flac. The process is divided into four windows starting with the selection of the music on the local computer system. A file browser or drag and drop can be used to add audio files from the computer system. The option to include CD tracks is also available in this first screen.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/prodigy.jpg" alt="prodigy" title="prodigy" width="456" height="379" class="alignnone size-full wp-image-12109" /></p>
<p>The second screen contains the output settings and parameters including the selection of the output module, the location where the files will be stored in and if a playlist should be created automatically.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/lame_output.jpg" alt="lame output" title="lame output" width="456" height="361" class="alignnone size-full wp-image-12110" /></p>
<p>The third step lists several presets that can be used to encode the music ranging from high quality hifi to best quality archiving or portable usage. Custom settings can be configured as well in this screen.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/music_presets.jpg" alt="music presets" title="music presets" width="456" height="361" class="alignnone size-full wp-image-12111" />   </p>
<p>The final step will display encoding information and the progress. The wide variety of audio formats coupled with encoding presets make winLame a viable alternative for anyone looking for a solid audio encoder for the Windows operating system.</p>

	Tags: <a href="http://www.ghacks.net/tag/audio-encoder/" title="audio encoder" rel="tag">audio encoder</a>, <a href="http://www.ghacks.net/tag/audio-cd/" title="audio-cd" rel="tag">audio-cd</a>, <a href="http://www.ghacks.net/tag/lame/" title="lame" rel="tag">lame</a>, <a href="http://www.ghacks.net/tag/mp3-ripper/" title="mp3 ripper" rel="tag">mp3 ripper</a>, <a href="http://www.ghacks.net/tag/music-encoder/" title="music encoder" rel="tag">music encoder</a>, <a href="http://www.ghacks.net/tag/open-source/" title="Open Source" rel="tag">Open Source</a>, <a href="http://www.ghacks.net/tag/rip-audio-cd/" title="rip audio cd" rel="tag">rip audio cd</a>, <a href="http://www.ghacks.net/tag/rip-cd/" title="rip cd" rel="tag">rip cd</a>, <a href="http://www.ghacks.net/tag/winlame/" title="winlame" rel="tag">winlame</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/16/cd-to-mp3-ripper-and-encoder-bonkenc/" title="CD To MP3 Ripper And Encoder BonkEnc (June 16, 2009)">CD To MP3 Ripper And Encoder BonkEnc</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/10/21/xkcd-comic-wallpaper-changer/" title="Xkcd Comic Wallpaper Changer (October 21, 2009)">Xkcd Comic Wallpaper Changer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/07/03/wireless-network-scanner-inssider/" title="Wireless Network Scanner inSSIDer (July 3, 2009)">Wireless Network Scanner inSSIDer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/01/10/winlibre-your-open-source-software-library/" title="WinLibre, your open source software library (January 10, 2008)">WinLibre, your open source software library</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/11/22/windows-tabbed-browsing/" title="Windows Tabbed Browsing (November 22, 2008)">Windows Tabbed Browsing</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/17/winlame-2009-released/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Billy a simple but awesome music player</title>
		<link>http://www.ghacks.net/2009/04/05/billy-a-simple-but-awesome-music-player/</link>
		<comments>http://www.ghacks.net/2009/04/05/billy-a-simple-but-awesome-music-player/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 19:21:09 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[billy]]></category>
		<category><![CDATA[music player]]></category>
		<category><![CDATA[simple]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/05/billy-a-simple-but-awesome-music-player/</guid>
		<description><![CDATA[We had a look at how you use your medial player not long ago and I&#8217;ve taken a look at some of the ones you mentioned  I particularly liked Billy (thanks for the tip Xaro), a no-frills (but also no complications) music player, which does exactly what I want it to do. Play my music [...]]]></description>
			<content:encoded><![CDATA[<p>We had a look at <a href="http://www.ghacks.net/2009/03/16/how-do-you-use-your-media-player/" target="_blank">how you use your medial player</a> not long ago and I&#8217;ve taken a look at some of the ones you mentioned  I particularly liked <a title="music player" href="http://www.sheepfriends.com/?page=billy" target="_blank">Billy</a> (thanks for the tip Xaro), a no-frills (but also no complications) music player, which does exactly what I want it to do. Play my music without downloading a heap of metadata for it and without taking a chunk out of my RAM.</p>
<p>The download is a tiny 540Kb, and when running with 15 albums added, it takes away less than 5,000K of memory. For the half a megabyte download you do get more than you think, with full global hotkey support for 13 operations, the ability to record internet radio, Lastfm history submission, this is not as shabby or as simple as you might think.</p>
<p>You can also add your media folders and set up some format rules, the ability to launch multiple instances, etc, but despite all these advanced features the best thing about Billy is that it is small, and extremely usable. You won&#8217;t be building a fully tagged and organized music database, but if you just want to do some work with set&amp;forget music, tucked away in your system tray, Billy is for you.</p>
<p><span id="more-11697"></span></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/billy.gif" alt="billy" width="305" height="357" class="alignleft size-full wp-image-11696" /></p>

	Tags: <a href="http://www.ghacks.net/tag/billy/" title="billy" rel="tag">billy</a>, <a href="http://www.ghacks.net/tag/music-player/" title="music player" rel="tag">music player</a>, <a href="http://www.ghacks.net/tag/simple/" title="simple" rel="tag">simple</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/20/xbmc-media-center-final/" title="XBMC Media Center Final (November 20, 2008)">XBMC Media Center Final</a> (13)</li>
	<li><a href="http://www.ghacks.net/2007/09/15/winamp-55-lite-vs-xmplay-memory-management/" title="Winamp 5.5 lite vs. XMPlay Memory Management (September 15, 2007)">Winamp 5.5 lite vs. XMPlay Memory Management</a> (13)</li>
	<li><a href="http://www.ghacks.net/2008/01/29/why-i-wont-be-using-qtrax/" title="Why I wont be using Qtrax (January 29, 2008)">Why I wont be using Qtrax</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/07/04/trout-is-a-lightweight-free-music-player/" title="Trout Is A Lightweight Free Music Player (July 4, 2009)">Trout Is A Lightweight Free Music Player</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/05/billy-a-simple-but-awesome-music-player/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>
