<?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; wav</title> <atom:link href="http://www.ghacks.net/tag/wav/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>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> </channel> </rss>
