<?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 &#124; Latest Tech News, Software And Tutorials &#187; ogg</title> <atom:link href="http://www.ghacks.net/tag/ogg/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 13:29:21 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Covert .mp3 to .wav and .ogg from command</title><link>http://www.ghacks.net/2010/02/05/covert-mp3-to-wav-and-ogg-from-command/</link> <comments>http://www.ghacks.net/2010/02/05/covert-mp3-to-wav-and-ogg-from-command/#comments</comments> <pubDate>Fri, 05 Feb 2010 13:18:28 +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[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[mp3 conversion]]></category> <category><![CDATA[mp3 encoding]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[ogg vorbis]]></category> <category><![CDATA[wav]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=22829</guid> <description><![CDATA[I have a ton of various music files on my machine that are in various states of migrating from .mp3 to different formats. The primary reason for this is because of the issue of licensing between Linux and the MP3 format. And although there are GUI tools to do nearly every job you need, there [...]]]></description> <content:encoded><![CDATA[<p>I have a ton of various music files on my machine that are in various states of migrating from .mp3 to different formats. The primary reason for this is because of the issue of licensing between Linux and the MP3 format. And although there are GUI tools to do nearly every job you need, there are times when the command line is still your friend. For instance, say you want to do batch jobs &#8211; the command line is good for this. Or say you want to (for whatever reason) secure shell into a remote machine and then convert your files. For whatever reason you need, it&#8217;s good to know that the tools are available for the job.</p><p>The tools I am talking about are <em><a
title="mpg123" href="http://www.mpg123.de/" target="_blank">mpg123</a> </em>and <em><a
title="mpg321" href="http://mpg321.sourceforge.net/" target="_blank">mpg321</a></em>. Although mpg321 claims to be a drop-in replacement for mpg123, I still prefer to use both tools (the former for converting .mp3 to .wav and the latter for converting .mp3 to .ogg). And in this article you will see how simple it is (using the command line) to convert these file types.</p><p><span
id="more-22829"></span><strong>Installation</strong></p><p>Since we will be using the command line for the conversion, we&#8217;ll install the tools from the command line. The distribution I am using for example is based on the recent, stable Debian. You will not need to add any repositories to your <strong>/etc/apt/sources.list</strong> file, because all of the tools are found on the standard repositories. To install these tools, follow these steps:</p><ol><li>Open up a terminal window.</li><li>If needed, <em>su</em> to root (if you use <em>sudo</em> in place of root, just add <em>sudo</em> to the beginning of the installation commands below).</li><li>Issue the command <em>apt-get install mpg123 mpg321 vorbis-tools</em></li></ol><p>That&#8217;s it. Now let&#8217;s take a look at how the tools are used.</p><p><strong>Convert .mp3 to .wav</strong></p><p>The first conversion is to .wav. Why use .wav? First and foremost, the .wav file is not compressed and is lossless, so the sound is better. The only downfall is that the files are much bigger. So, if you have a particular file and you want to retain as much quality as you can, .wav is the format to use. Of course, in this instance we are converting a lossy file type (.mp3) so there is already diminished sound quality. But why diminish it further? To make this conversion, the command looks like this:</p><p><em>mpg123 -w output_file.wav input_file.mp3</em></p><p>Where <em>output_file</em> is the name of the .wav file that will be converted from the mp3 file named <em>input_file. </em>So let&#8217;s say you want to convert the file Rush_Tom_Sawyer.mp3 to .wav. That command would look like:</p><p><em>mpg123 -w Rush_Tom_Sawyer.wav Rush_Tom_Sawyer.mp3</em></p><p><em></em><strong>Convert .mp3 to .ogg</strong></p><p>The .ogg format is the open source equivalent to .mp3 and is supported by many players. The .ogg format is a good format to use when creating &#8220;mix cd&#8217;s&#8221; (I&#8217;m old, I still want to say &#8220;mix tapes&#8221;), because you can fit more files per CD than if you were using the .wav format. But to convert the .mp3 to .ogg the command looks like:</p><p><em>mpg321 Input_File.mp3 -w raw &amp;&amp; oggenc raw -o Output_file.ogg</em></p><p>Let&#8217;s examine the same file we converted to .wav above. The command to convert to .ogg from .mp3 would look like:</p><p><em>mpg321 Rush_Tom_Sawyer.mp3 -w raw &amp;&amp; oggenc raw -o Rush_Tom_Sawyer.ogg</em></p><p><em><span
style="font-style: normal">Easy right?</span></em></p><p><em><span
style="font-style: normal"><strong>Final thoughts</strong></span></em></p><p><em><span
style="font-style: normal">Now you can get crafty and create batch scripts that will allow you to do batch conversions. Naturally many will think &#8220;Why would I go through that, when I can just download a handy GUI tool like Soundconverter to do the job? Why? Because it&#8217;s always smart to have the command line option around. One day you might need it. </span></em></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/02/05/covert-mp3-to-wav-and-ogg-from-command/feed/</wfw:commentRss> <slash:comments>40</slash:comments> </item> <item><title>Correct tag errors in your music collection with Easy Tag</title><link>http://www.ghacks.net/2010/01/09/correct-tag-errors-in-your-music-collection-with-easy-tag/</link> <comments>http://www.ghacks.net/2010/01/09/correct-tag-errors-in-your-music-collection-with-easy-tag/#comments</comments> <pubDate>Sat, 09 Jan 2010 17:43:35 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[Music and Video]]></category> <category><![CDATA[Music Industry]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[mp3-player]]></category> <category><![CDATA[music players]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[sound files]]></category> <category><![CDATA[tag editing]]></category> <category><![CDATA[tag editors]]></category> <category><![CDATA[wav]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=22170</guid> <description><![CDATA[I have a number of large music directories on numerous drives. The files in these directories have been added (over the years) from various sources. The biggest problem with my collections is the tags on the files aren&#8217;t all correct. Because of this, some music players won&#8217;t list the information for the file which means [...]]]></description> <content:encoded><![CDATA[<p>I have a number of large music directories on numerous drives. The files in these directories have been added (over the years) from various sources. The biggest problem with my collections is the tags on the files aren&#8217;t all correct. Because of this, some music players won&#8217;t list the information for the file which means (in some cases) the only way I know what a file is is to listen to that file. Some music players allow you to edit the tags on a file. Sometimes, however, that editing will only work for that music player. So what do you do when you want a more universally accepted tag editing system for your music? You open up Easy Tag.</p><p>Easy Tag is an open source application available for Linux and Windows that allows you edit tags for the following file types:</p><ul><li>MP3</li><li>MP2</li><li>MP4/AAC</li><li>FLAC</li><li>Ogg Vorbis</li><li>MusePack</li><li>Monkey&#8217;s Audio</li><li>WavPack</li></ul><p>And what&#8217;s best about Easy Tag is that you most likely won&#8217;t have to manually edit all of those files.</p><p><span
id="more-22170"></span><strong> </strong></p><p><strong>Simple installation</strong></p><p>You will find Easy Tag in your distribution repository, so you can fire up Synaptic, search for &#8220;easytag&#8221; (no quotes), select the package for installation, and click Apply to install.  Or, if you prefer command line, you could install with a command like <em>yum install easytag</em>. Once installed, you will find Easy Tag in your Audio (or Sound and Video) menu.</p><p><strong>How Easy Tag works for you</strong></p><div
id="attachment_22173" class="wp-caption alignleft" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/easytag.png"><img
class="size-medium wp-image-22173 " src="http://www.ghacks.net/wp-content/uploads/2010/01/easytag-500x350.png" alt="" width="300" height="210" /></a><p
class="wp-caption-text">Figure 1</p></div><p>There are two painless ways Easy Tag can be used: Automatic tag recognition and CDDB search. Althought it might be tempting to use the automatic tag recognition, the best, and most reliable method is using the CDDB choice. So when you fire up Easy Tag (and after it searches through your music library) you will see that it lists all of your music in the middle pane (see Figure 1).  What you see, in Figure 1, is a section of files with incorrect tags. You know a file has an incorrect tag if it is listed in red. Now let&#8217;s fix those tracks.</p><p>The best way to do this is to select an entire</p><div
id="attachment_22174" class="wp-caption alignright" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/rush_signals.png"><img
class="size-medium wp-image-22174 " src="http://www.ghacks.net/wp-content/uploads/2010/01/rush_signals-500x373.png" alt="" width="300" height="224" /></a><p
class="wp-caption-text">Figure 2</p></div><p>album of tracks. Although it looks like all of the tracks for the Rush album Signals are correct, there is something amiss. So I will highlight all of those tracks and right click the selections. From the right click menu select CDDB search. When the new window opens (see Figure 2) select the correct listing and then click Apply. It will seem as if nothing has happened, but something has. Click the Close button. Now you have to save the changes. Go the the File menu and select Save. A small window will appear for each change you are about to make (See figure 2). Click Yes for each change (unless you check the &#8220;Repeat action&#8230;&#8221; checkbox).</p><p>When the save is complete you can go back to the track listings and see that those files are no longer listed in red. Their tags are now correct.</p><div
id="attachment_22175" class="wp-caption alignleft" style="width: 309px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/easytag_prefs.png"><img
class="size-medium wp-image-22175 " src="http://www.ghacks.net/wp-content/uploads/2010/01/easytag_prefs-499x344.png" alt="" width="299" height="206" /></a><p
class="wp-caption-text">Figure 3</p></div><p>If your CDDB search comes up with no results, then you might have to reconfigure the server Easy Tag uses. To do this to go <strong>Settings &gt; Preferences</strong> and then click the CD Database tag (see Figure 3).  You can change the server settings for automatic and manual searches. When I changed mine to freedb.freedb.org, all of my troubles went away.</p><p><strong>Final thoughts</strong></p><p>Use Easy Tag to clean up your music collection tags. Not only does this make a tedious task simpler, it keeps your music collection clean so that music players can easily read and display the tags for your music files.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/01/09/correct-tag-errors-in-your-music-collection-with-easy-tag/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Organize and listen to your music with Aqualung</title><link>http://www.ghacks.net/2010/01/01/organize-and-listen-to-your-music-with-aqualung/</link> <comments>http://www.ghacks.net/2010/01/01/organize-and-listen-to-your-music-with-aqualung/#comments</comments> <pubDate>Fri, 01 Jan 2010 18:51:50 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[Music and Video]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[audio player]]></category> <category><![CDATA[burn cd]]></category> <category><![CDATA[extract cd]]></category> <category><![CDATA[flacc]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[music library]]></category> <category><![CDATA[music player]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[rip cd]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=21965</guid> <description><![CDATA[I&#8217;ve used a lot of music players over the years. Pretty much they all take the same tact on organizing your music &#8211; you have a library and you have playlists. Pretty cut and dry. But today I came across a music player, Aqualung, that went about things a bit differently. And not only does [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;ve used a lot of music players over the years. Pretty much they all take the same tact on organizing your music &#8211; you have a library and you have playlists. Pretty cut and dry. But today I came across a music player, <a
title="Aqualung" href="http://aqualung.factorial.hu/" target="_blank">Aqualung</a>, that went about things a bit differently. And not only does this application add to the ways in which you organize your music, it also offers a ton of other features you might not find in other music players.</p><p>In this tutorial I will first introduce you to Aqualung and then I will show you how this unique tool can help to organize your music.</p><p><span
id="more-21965"></span><strong>Features</strong></p><p>Aqualung offers a number of unique features:</p><ul><li>Audio CDs can be played back and ripped with on-the-fly conversion to WAV, FLAC, or OGG, or MP3.</li><li>Subscribing to RSS and Atom audio podcasts is supported (with automatic download.)</li><li>Almost all sample-based, uncompressed formats (e.g. WAV, AIFF, AU etc.) are supported.</li><li>OSS, ALSA, JACK, PulseAudio, sndio driver support.</li><li>Exporting to external formats from Playlist and Music Store.</li><li>Gap-free playback.</li><li>Convert sample rates.</li><li>Tabbed playlists.</li><li>Comment support.</li><li>Control running instance from command line.</li><li>RVA (relative volume adjustment) control.</li></ul><p>As you can see, there are features that make Aqualung more in line with serious listeners than your average player. But even though Aqualung has a bevy of features, don&#8217;t expect it to have the interface of, say, a Songbird, or an iTunes. Instead of such a UI, Aqualung keeps everything on the simple side. It&#8217;s easy to use, and quick to navigate.</p><p><strong>Installation</strong></p><p><strong><span
style="font-weight: normal">Aqualung can be found in just about any Linux package management system. You can fire up Synaptic, search for &#8220;aqualung&#8221; (no quotes), and have the application installed in no time.</span></strong></p><p><strong>Managing your music</strong></p><p><strong><span
style="font-weight: normal"><strong><span
style="font-weight: normal">Now comes the fun part. Aqualung can do the standard playlist just fine. But what Aqualung also does is Music Stores. A Music store is a database of music you have assigned a title. The philosophy behind the Music Store is that it allows you to have more than one music library from which you can listen to music or create playlists. Think of the Music Stores as Master Playlists. So let&#8217;s say you have more then one user that uses one machine. Each user can have a Music Store from which to populate play lists and so on. So how do you create a music store? Simple. Let&#8217;s walk through the process.</span></strong></span></strong></p><p><strong><strong>Music stores</strong></strong></p><div
id="attachment_21967" class="wp-caption alignleft" style="width: 309px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/aqualung_main.png"><img
class="size-medium wp-image-21967 " src="http://www.ghacks.net/wp-content/uploads/2010/01/aqualung_main-499x329.png" alt="" width="299" height="197" /></a><p
class="wp-caption-text">Figure 1</p></div><p>Aqualung works with two windows: The main window and the Music Store window (See Figure 1). If you right click on a blank spot in the Music Store window a menu will appear. From that new menu select Create Empty Store. When you do this, a new window will open where you configure your new store (see Figure 2).</p><div
id="attachment_21969" class="wp-caption alignright" style="width: 255px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/aqualung_empty_store1.png"><img
class="size-full wp-image-21969 " src="http://www.ghacks.net/wp-content/uploads/2010/01/aqualung_empty_store1.png" alt="" width="245" height="175" /></a><p
class="wp-caption-text">Figure2</p></div><p>The information you need to fill out for your new store is:</p><ul><li>Visible Name: The name you want to give your new store.</li><li>Filename: This store will create an xml file and you have to set the location where this file will be stored.</li><li>Comments: Any comments you wish to add to the store.</li></ul><p>Once you have filled out this information, click OK and your store will appear in the Music Store window. Now you have to add music to your new store. To do this right click the store listing and you will notice a number of possibilities. You can:</p><ul><li>Add the store to a playlist.</li><li>Build/Update store from file system.</li><li>Add new artists to store.</li></ul><p>and more.  Since there are no files in this music store it might be best to select Build/Update store from file system. When you select this entry a new window will open offering you two choices:</p><ul><li>Directory driven: Follows directory structure. Artists are added on an album basis.</li><li>Independent: Recursive search from the root directory. Artists are added on file basis.</li></ul><p>The best choice is Directory Driven. Using this will ensure a better organized store. This, of course, helps to have a fairly well organized file system. If your file system is organized in the iTunes fashion (where all files are randomly named and placed in directories like F00, F01, F02, etc) you might as well go with the second option.</p><div
id="attachment_21970" class="wp-caption alignleft" style="width: 159px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/aqualung_stores.png"><img
class="size-medium wp-image-21970 " src="http://www.ghacks.net/wp-content/uploads/2010/01/aqualung_stores-249x500.png" alt="" width="149" height="300" /></a><p
class="wp-caption-text">Figure 3</p></div><p>The difference between the two is better understood by looking at the sample shown in Figure 3. In Figure 3 you can see the top portion is a Music Store that was created using the Directory driven choice, whereas the bottom portion was created using the Independent choice.</p><p>Now, how do you use this? Simple You can go through any of the music stores and add music to a play list by either double clicking the song or right clicking the song and selecting add to play list.</p><p>You can also have multiple play lists open at once. To do this follow these steps:</p><ol><li>Go to the main window.</li><li>Right click on an empty spot.</li><li>Select New Tab.</li></ol><p>You now two tabs open where you can have two playlists.</p><p><strong>Final thoughts</strong></p><p>This tutorial really only scratches the surface of what you can do with Aqualung. In later articles we will deal with some of the other features that help to make this application unique in a world of same ol&#8217; same ol&#8217;.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/01/01/organize-and-listen-to-your-music-with-aqualung/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Spotify: Music legally on demand</title><link>http://www.ghacks.net/2009/02/21/spotify-music-legally-on-demand/</link> <comments>http://www.ghacks.net/2009/02/21/spotify-music-legally-on-demand/#comments</comments> <pubDate>Sat, 21 Feb 2009 13:21:19 +0000</pubDate> <dc:creator>Joe</dc:creator> <category><![CDATA[Mac]]></category> <category><![CDATA[Music and Video]]></category> <category><![CDATA[Online Services]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[last.fm]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[music]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[online radio]]></category> <category><![CDATA[pandora]]></category> <category><![CDATA[spotify]]></category> <category><![CDATA[stream]]></category> <category><![CDATA[streaming media]]></category> <category><![CDATA[streaming music]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=10687</guid> <description><![CDATA[gHacks suggested Spotify as an alternative to Pandora last year, and Spotify has recently gained a lot of attention in the British press. I thought it may be wise to discuss Spotify on here. Spotify is a service which allows users to stream many songs online free and legally. The service is ad-supported and currently [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.ghacks.net/2008/01/20/global-pandora-down/">gHacks suggested Spotify as an alternative to Pandora last year</a>, and Spotify has recently gained a lot of attention in the British press. I thought it may be wise to discuss Spotify on here.</p><p><a
href="http://www.spotify.com/int/">Spotify</a> is a service which allows users to stream many songs online free and legally. The service is ad-supported and currently available in Sweden, Norway, Finland, the UK, France and Spain. The adverts are only a minor annoyance; I find there is about 2 minutes of them per hour of music. A premium service is also available, where adverts can be removed for a cost.</p><p>The service requires a desktop client to play the music. Their client is currently only available on OS X and Windows. Using this software, users can search for music, compile playlists and listen to online radio. The music is streamed as an Ogg Vorbis at 160kbps, so it is very high quality! It also scrobbles the music to last.fm.</p><p><span
id="more-10687"></span>The advertising is tolerable. Generally, they last about 30-45 seconds and either advertise Spotify Premium or, currently, the Disasters Emergency Committee in the UK. Premium (ad-free) Spotify costs either 99p a day or £10 a month.</p><p>I am beginning to reconsider if I still have the need to download music. Most songs are available free on Spotify, with the exception of some of the newest releases on certain labels. My only problem with Spotify is that it isn&#8217;t portable, so I can&#8217;t use it on my iPod etc.</p><p>Spotify has a bigger collection of music than the &#8216;full tracks&#8217; available on last.fm.</p><p>It is currently only invitation only, but I will give the first 4 people to ask an invite each. Just leave a comment asking for one.</p><p><a
href="http://www.flickr.com/photos/webbysworld/3297489972/" title="Spotify by computerjoe, on Flickr"><img
src="http://farm4.static.flickr.com/3319/3297489972_e196388e67.jpg" width="500" height="308" alt="Spotify" /></a></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/02/21/spotify-music-legally-on-demand/feed/</wfw:commentRss> <slash:comments>28</slash:comments> </item> <item><title>How To Record Internet Radio With AIMP2</title><link>http://www.ghacks.net/2008/10/15/how-to-record-internet-radio-with-aimp2/</link> <comments>http://www.ghacks.net/2008/10/15/how-to-record-internet-radio-with-aimp2/#comments</comments> <pubDate>Wed, 15 Oct 2008 20:02:16 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Knowledge]]></category> <category><![CDATA[Music and Video]]></category> <category><![CDATA[aimp2]]></category> <category><![CDATA[flac]]></category> <category><![CDATA[internet-radio]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[music]]></category> <category><![CDATA[music player]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[radio]]></category> <category><![CDATA[record internet radio]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=7645</guid> <description><![CDATA[Regular readers already know that I recently switched from using XMPlay to AIMP2 which provides the better total package. One of the interesting functions of AIMP2 is to record Internet radio (yes XMPlay can do that as well). It took a while to find out how this function could be enabled in the player and [...]]]></description> <content:encoded><![CDATA[<p>Regular readers already know that I recently switched from using XMPlay to AIMP2 which provides the better total package. One of the interesting functions of AIMP2 is to record Internet radio (yes XMPlay can do that as well). It took a while to find out how this function could be enabled in the player and this article should act as a guideline to everyone who wants to use the music player to record Internet radio.</p><p>The first step is to find an Internet radio station. The <a
href="http://www.shoutcast.com/">Shoutcast</a> directory should provide something for every music taste on the planet. A simple click on Tune In should load the stream in AIMP2 if it is configured to play the playlist files of Internet radio. Since we have to configure one setting in the music player&#8217;s option anyway I show you how to make AIMP2 the default player for the playlist files first. Once that is done we are going to configure the options to save Internet radio in a proper format and select a directory on the hard drive.</p><p>Pressing [CTRL P] after starting AIMP2 will open the player&#8217;s options. Selecting the Associations entry under System will bring up the various compatible file types the player can play. If AIMP2 is your default player you can simple click on the Enable All button to associate all file types with AIMP2. The important file type for Internet radio is .pls which you find at the bottom.</p><p><span
id="more-7645"></span><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/aimp2_file_associations-499x355.jpg" alt="aimp2 file associations" title="aimp2 file associations" width="499" height="355" class="alignnone size-medium wp-image-7646" /></p><p>AIMP2 should now start playing the Internet radio whenever you click on a link that leads to an Internet radio playlist. Now head over to the Streaming menu under Player.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/aimp_record_internet_radio-499x355.jpg" alt="aimp record internet radio" title="aimp record internet radio" width="499" height="355" class="alignnone size-medium wp-image-7647" /></p><p>You have to pick a folder where the music from the Internet radio station will be saved in. A directory of the data will automatically be added in the root directory. The second option is about the format of the recorded music. The default is wave which takes up lots of space on the hard drive. A better option would be to select mp3 as the format. Either 192 or 256 Kbit should be good choices. Other choices are ogg or flac.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2008/10/aimp_record_radio.jpg" alt="aimp record radio" title="aimp record radio" width="349" height="170" class="alignnone size-medium wp-image-7648" /></p><p>Now that the settings have been made it is time to start the recording. The recording option is only available in the main client and not in the minimal client. You can start the recording by clicking on Radio Cap on the left side of the player. A blinking text indicates that the player is recoding the music.</p><p>Users who would like to record more than one station at a time might want to take a look at <a
href="http://www.ghacks.net/2008/04/07/using-streamripper-to-save-internet-radio-tracks/">Streamripper</a> instead.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/10/15/how-to-record-internet-radio-with-aimp2/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Stream Music contained in torrent files</title><link>http://www.ghacks.net/2008/01/08/stream-music-contained-in-torrent-files/</link> <comments>http://www.ghacks.net/2008/01/08/stream-music-contained-in-torrent-files/#comments</comments> <pubDate>Tue, 08 Jan 2008 15:47:59 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Music and Video]]></category> <category><![CDATA[P2p]]></category> <category><![CDATA[bitlet]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[music]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[stream torrents]]></category> <category><![CDATA[torrent]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2008/01/08/stream-music-contained-in-torrent-files/</guid> <description><![CDATA[If you do not want to download music from Bittorrent you now have an alternative that might suite you better. You can use the <a
href="http://www.bitlet.org/music/">Bitlet</a> Bittorrent Applet to stream the music contained in the torrent to your computer. The applet phrase hints that Java - not Javascript - is required to stream the music from torrent files to your computer.]]></description> <content:encoded><![CDATA[<p>If you do not want to download music from Bittorrent you now have an alternative that might suite you better. You can use the Bitlet Bittorrent Applet to stream the music contained in the torrent to your computer. The applet phrase hints that Java &#8211; not Javascript &#8211; is required to stream the music from torrent files to your computer.</p><p>Currently the formats mp3 and ogg are supported and the applet is finding and playing the music files automatically. All you need is the link to the torrent containing the music and a browser that has Java enabled. It works very well if the torrent has a lot of seeders but you can run into troubles with torrents that have only a few.</p><p>The first parts of the file are prioritized during the streaming to make sure that you can listen to the music as soon as possible. I personally think that this is an interesting concept that will surely find some users who will love it. It&#8217;s probably great if you want to preview a album or song before you download it.</p><p><span
id="more-2784"></span><img
src='http://www.ghacks.net/wp-content/uploads/2008/01/stream_torrent_music.jpg' alt='stream torrent music' /></p><p>via <a
href="http://torrentfreak.com/streaming-music-from-a-torrent-file-080108/">torrentfreak</a> and <a
href="http://blog.bitlet.org/">bitlet</a></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/01/08/stream-music-contained-in-torrent-files/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Winamp 5.5 lite vs. XMPlay Memory Management</title><link>http://www.ghacks.net/2007/09/15/winamp-55-lite-vs-xmplay-memory-management/</link> <comments>http://www.ghacks.net/2007/09/15/winamp-55-lite-vs-xmplay-memory-management/#comments</comments> <pubDate>Sat, 15 Sep 2007 06:46:05 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Music and Video]]></category> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tools]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[aac]]></category> <category><![CDATA[lite music player]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[mp3-player]]></category> <category><![CDATA[music player]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[winamp 5.5]]></category> <category><![CDATA[xmplay]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2007/09/15/winamp-55-lite-vs-xmplay-memory-management/</guid> <description><![CDATA[A new beta version of Winamp 5.5 has just been released as usual in a full, pro and lite version. Winamp lite is basically a music player supporting many different audio formats while the other Winamp editions support video playback, cd ripping and an integrated browser to browse sites like Shoutcast.]]></description> <content:encoded><![CDATA[<p>A new beta version of Winamp 5.5 has just been released as usual in a full, pro and lite version. Winamp lite is basically a music player supporting many different audio formats while the other Winamp editions support video playback, cd ripping and an integrated browser to browse sites like Shoutcast.</p><p>I never quite understood why someone would use Winamp to play videos because this functionality was introduced into Winamp when several other great software video players like VLC, Mplayer or BSPlayer were already in existence. I therefor decided to compare the lite version of Winamp 5.5 against my favorite music player XMPlay.</p><p>The Winamp executable has a file size of roughly 2.2 Megabytes while XMPlay one of 340 Kilobytes. The XMPlay folder has a size of 1.9 Megabytes after installation while Winamp&#8217;s folder one of 6.6 Megabytes. The first noticeable difference can be found if you open both players without a song and take a look at the Windows task manager.</p><p><span
id="more-2001"></span>XMPlay uses roughly 550 Kilobytes of memory in idle state while Winamp lite uses 1.37 Megabytes. I decided to load a seven Megabyte mp3 file into both players. XMPlay was using 2.52 Megabytes afterwards while Winamp 5.5 lite was using 3.88 Megabytes. The difference between both players rose from roughly 800 Kilobyte in idle state to 1.3 Megabytes in idle state with a 7 Megabyte file in the playlist.</p><p><img
src="http://www.ghacks.net/files/screens/2007/09/xmplay.jpg" alt="xmplay" /></p><p>I pressed the play button in both players and switched back to the task manager. Winamp 5.5 lite was now using 6.24 Megabytes of memory while XMPlay was using 3.84. The difference rose to 2.4 Megabytes.</p><p>Last but not least I decided to see how both players would do when playing Internet radio streams. XMplay was using 3.53 Megabytes while playing a 128 Kbit stream while Winamp used 7.66 Megabytes.</p><p><img
src="http://www.ghacks.net/files/screens/2007/09/winamp55.jpg" alt="winamp 5.5 lite" /></p><p>The conclusion is that XMPlay has a far better memory management than Winamp. The real important state is of course when playing music files in the music player and this is where XMPlay really excels. This means, if you really want a &#8220;lite&#8221; player you should switch to XMPlay instead of Winamp 5.5 lite.</p><p>Read More:</p><p><a
href="http://www.un4seen.com/">XMPlay Homepage</a><br
/> <a
href="http://forums.winamp.com/showthread.php?threadid=277166">Winamp 5.5 beta download</a></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2007/09/15/winamp-55-lite-vs-xmplay-memory-management/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>Record MP3 Streams with Screamer Radio</title><link>http://www.ghacks.net/2007/01/21/record-mp3-streams-with-screamer-radio/</link> <comments>http://www.ghacks.net/2007/01/21/record-mp3-streams-with-screamer-radio/#comments</comments> <pubDate>Sun, 21 Jan 2007 21:33:30 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Tools]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[freeware]]></category> <category><![CDATA[internet-radio]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[radio]]></category> <category><![CDATA[record-mp3]]></category> <category><![CDATA[record-streams]]></category> <category><![CDATA[screamer-radio]]></category> <category><![CDATA[song]]></category> <category><![CDATA[streams]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2007/01/21/record-mp3-streams-with-screamer-radio/</guid> <description><![CDATA[I recommended Phonostar some days ago to record mp3 streams of more than 4000 radio stations which had the big disadvantage that it would not add the real filename, title and artist but use a generic name for the saved mp3 stream. Screamer Radio on the other hand uses the meta data that is sent by some radio stations to add those information to the name of the saved mp3 file which makes it easier to get an overview over all downloads.]]></description> <content:encoded><![CDATA[<p>I recommended Phonostar some days ago to record mp3 streams of more than 4000 radio stations which had the big disadvantage that it would not add the real filename, title and artist but use a generic name for the saved mp3 stream. <a
target="_blank" title="screamer radio" href="http://www.screamer-radio.com/">Screamer Radio</a> on the other hand uses the meta data that is sent by some radio stations to add those information to the name of the saved mp3 file which makes it easier to get an overview over all downloads.</p><p>Screamer Radio supports Shoutcast and Icecast Mp3 Streaming as well as WMA and AAC streaming. A big list of <a
target="_blank" title="screamer radio stations" href="http://www.screamer-radio.com/directory/">supported radio stations</a> is available at the official screamer radio website. The preset tab holds a large list of radio stations which are directly accessible through screamer radio. Just choose a station and Screamer will automatically start the playback. Just hit REC if you want to start recording streams which will then be saved in the default location.</p><p><span
id="more-1121"></span>A great feature of Screamer Radio is that you can hit REC even in the middle of a song and it will still be saved completely if it was not the first song of that radio station. Screamer Radio uses a buffering technique to make this possible. Best of all it is free, does not use many system resources and can be run in system tray. The only feature that is missing is the ability to save more than one station at once.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2007/01/21/record-mp3-streams-with-screamer-radio/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Burn Audio CDs from exotic audio formats</title><link>http://www.ghacks.net/2006/11/14/burn-audio-cds-from-exotic-audio-formats/</link> <comments>http://www.ghacks.net/2006/11/14/burn-audio-cds-from-exotic-audio-formats/#comments</comments> <pubDate>Tue, 14 Nov 2006 09:46:53 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tools]]></category> <category><![CDATA[ape]]></category> <category><![CDATA[audio-cd]]></category> <category><![CDATA[burn]]></category> <category><![CDATA[burn-audio]]></category> <category><![CDATA[burn-audio-cd]]></category> <category><![CDATA[burrrn]]></category> <category><![CDATA[exotic-audio-formats]]></category> <category><![CDATA[flac]]></category> <category><![CDATA[fpl]]></category> <category><![CDATA[freeware]]></category> <category><![CDATA[m3u]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[mp4]]></category> <category><![CDATA[mpc]]></category> <category><![CDATA[music-cd]]></category> <category><![CDATA[ofr]]></category> <category><![CDATA[ogg]]></category> <category><![CDATA[pls]]></category> <category><![CDATA[wav]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2006/11/14/burn-audio-cds-from-exotic-audio-formats/</guid> <description><![CDATA[Most burning tools that support the creation of audio CDs support only the most common formats by default. Those formats are normally mp3, wav or wma. Some suits support other formats as well but I never found a burning suit that supported all of the formats that I needed. One way to solve this issue would be to use plugins that would increase the supported formats, one plugin pack for Nero can be downloaded here. (Click on Nero Audio-Plug-Ins..)]]></description> <content:encoded><![CDATA[<p>Most burning tools that support the creation of audio CDs support only the most common formats by default. Those formats are normally mp3, wav or wma. Some suits support other formats as well but I never found a burning suit that supported all of the formats that I needed. One way to solve this issue would be to use plugins that would increase the supported formats, one plugin pack for Nero can be downloaded <a
title="nero audio plugins" href="http://www.pctipp.ch/downloads/audiovideo/33044/nero_audio_plug_ins.html" target="_blank">here</a>. (Click on Nero Audio-Plug-Ins..)</p><p>If you do not have a software that supports plugins you could use the excellent freeware Burrn which supports many formats which are: wav, mp3, mpc, ogg, aac, mp4, ape, flac, ofr, wv, tta, m3u, pls and fpl playlists and cue sheets as well as embedded cuesheets for ape, wv and flac files. It reads the tags automatically and adds them to the burning process. Burrrn is really easy to use, it supports drag and drop and direct editing of song title and artist.</p><p><span
id="more-913"></span></p><p>You will have to choose a burner the first time it starts. Once this is done the main window opens and you may add new songs to the CD by dragging songs or cue sheets to the main window.  If you want a certain order for your files you have to drag them one at a time. Last but not least it offers a way to adjust the replaygain for all songs before the songs are burned to the audio cd.</p><p> </p><p> </p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2006/11/14/burn-audio-cds-from-exotic-audio-formats/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Access 1010 free music albums with Jamendo</title><link>http://www.ghacks.net/2006/05/02/access-1010-free-music-albums-with-jamendo/</link> <comments>http://www.ghacks.net/2006/05/02/access-1010-free-music-albums-with-jamendo/#comments</comments> <pubDate>Tue, 02 May 2006 20:08:42 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Cool]]></category> <category><![CDATA[Music and Video]]></category> <category><![CDATA[bittorent]]></category> <category><![CDATA[creative-commons]]></category> <category><![CDATA[free albums]]></category> <category><![CDATA[jamendo]]></category> <category><![CDATA[mp3]]></category> <category><![CDATA[music]]></category> <category><![CDATA[ogg]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2006/05/02/access-1010-free-music-albums-with-jamendo/</guid> <description><![CDATA[Jamendo is a community website that lets you discover a growing collection of currently 1010 free music albums released under Creative Commons using latest p2p technology.That´s right, you are free to download everything using bittorrent. But that´s not all Jamendo is about. They have a very active community that reviews albums, rates and tags them and offers personal recommendations.]]></description> <content:encoded><![CDATA[<p><a
target="_blank" href="http://www.jamendo.com/en/">Jamendo</a> is a community website that lets you discover a growing collection of currently 1010 free music albums released under Creative Commons using latest p2p technology.That´s right, you are free to download everything using bittorrent. But that´s not all Jamendo is about. They have a very active community that reviews albums, rates and tags them and offers personal recommendations.</p><p>Artists are paid using donations, if you like a album you are free to donate using paypal. This is a great new concept, I´d really like to see stats how this way of distributing albums compares to portals like itunes and the like. Do the artists get a better payment for instance ?</p><p><span
id="more-461"></span></p><p>You might know the tagged approach, right at the start page you have a list of common tags like rock, ska and metal. Clicking a tag leads to the category page that displays the albums sorted in that category. Every album offers a listen icon that you simply click and it opens in your favorite player. You find the bittorent link on the same page there, if you want to download the full album right away or after listening to the music for some time.</p><p>You can click on the album cover which leads to the albums page. You see all songs listed, can listen to every song there, write reviews, spread the album by placing links on your homepage. Some bands offer CD versions of their albums which you can purchase from their website.</p><p>What else ? Downloads are available in MP3 (~200 Kbps) and OGG format (~300 Kbps). Last but not least you find recommendations that sound similar to the album you are currently viewing / listening to.</p><p>My suggestion ? Support them, it´s a great concept and finally a portal that stands in contrast to all commercial portals.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2006/05/02/access-1010-free-music-albums-with-jamendo/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
