<?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>SavvyAdmin.com &#187; MP3</title>
	<atom:link href="http://savvyadmin.com/tag/mp3/feed/" rel="self" type="application/rss+xml" />
	<link>http://savvyadmin.com</link>
	<description>For savvy admins everywhere...</description>
	<lastBuildDate>Sun, 20 Jun 2010 21:53:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Strip All Unwanted MP3 ID3 Tags</title>
		<link>http://savvyadmin.com/strip-all-unwanted-mp3-id3-tags/</link>
		<comments>http://savvyadmin.com/strip-all-unwanted-mp3-id3-tags/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 21:53:13 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[eyeD3]]></category>
		<category><![CDATA[ID3]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://savvyadmin.com/?p=721</guid>
		<description><![CDATA[A while back, I wanted to find a tool that would go through my entire collection of MP3&#8242;s and remove all the extra ID3 tags I didn&#8217;t want. For example, when I purchase music from Amazon, Rhapsody, and other online music stores, there are a number of tags in the files that track things like [...]


Related posts:<ol><li><a href='http://savvyadmin.com/rhythmbox-id3-tag-issues/' rel='bookmark' title='Permanent Link: Rhythmbox ID3 Tag Issues'>Rhythmbox ID3 Tag Issues</a></li>
<li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A while back, I wanted to find a tool that would go through my entire collection of MP3&#8242;s and remove all the extra ID3 tags I didn&#8217;t want.  For example, when I purchase music from Amazon, Rhapsody, and other online music stores, there are a number of tags in the files that track things like the purchase date and sales transaction ID&#8217;s.  I also like to get rid of annoying comments and other hidden tags that most editors won&#8217;t even show you.</p>
<p>In my search for a tool, I came across this <a href="http://darkstarshout.blogspot.com/2009/01/new-years-resolution-massive-music-tag.html" target="_blank">very useful post</a> outlining a similar project.  In the authors quest to do the same thing, he came up with a shell script that searches for all MP3 files, and removes tags that are not in his list of &#8220;good&#8221; tags.  I usually don&#8217;t like to rehash the work someone else has done, but since I use his script so often, I thought it would be useful to repost it with only minor modifications.</p>
<p><strong>Prerequisite:  Install eyeD3</strong></p>
<p>The script requires the <a href="http://eyed3.nicfit.net/" target="_blank">eyeD3 tag editor</a> to parse and manipulate the tag data.  So be sure to install eyeD3, which should be available in your favorite Linux repository.</p>
<blockquote><p><code><strong>sudo apt-get install eyed3</strong></code></p></blockquote>
<p><strong>Save and Modify Script</strong></p>
<p>Save the following script as <code><a href="/downloads/strip-tags.sh">strip-tags.sh</a></code> somewhere in your executable path.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;"># Script name: strip-tags.sh</span>
<span style="color: #666666; font-style: italic;"># Original Author: Ian of DarkStarShout Blog</span>
<span style="color: #666666; font-style: italic;"># Site: http://darkstarshout.blogspot.com/</span>
<span style="color: #666666; font-style: italic;"># Options slightly modified to liking of SavvyAdmin.com</span>
&nbsp;
<span style="color: #007800;">oktags</span>=<span style="color: #ff0000;">&quot;TALB APIC TCON TPE1 TPE2 TPE3 TIT2 TRCK TYER TCOM TPOS&quot;</span>
&nbsp;
<span style="color: #007800;">indexfile</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">mktemp</span><span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#Determine tags present:</span>
<span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-iname</span> <span style="color: #ff0000;">&quot;*.mp3&quot;</span> <span style="color: #660033;">-exec</span> eyeD3 <span style="color: #660033;">--no-color</span> <span style="color: #660033;">-v</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \; <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #007800;">$indexfile</span>
<span style="color: #007800;">tagspresent</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-u</span> <span style="color: #007800;">$indexfile</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> -F\<span style="color: #7a0874; font-weight: bold;">&#41;</span>: <span style="color: #ff0000;">'/^&lt;.*$/ {print $1}'</span> \
<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">uniq</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> -F\<span style="color: #7a0874; font-weight: bold;">&#41;</span>\<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #ff0000;">'{print $1}'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> -F\<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #ff0000;">'{print $(NF)}'</span> \
<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'BEGIN {ORS=&quot; &quot;} {print $0}'</span><span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #007800;">$indexfile</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#Determine tags to strip:</span>
<span style="color: #007800;">tostrip</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-n</span> <span style="color: #007800;">$tagspresent</span> <span style="color: #007800;">$oktags</span> <span style="color: #007800;">$oktags</span> \
<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'BEGIN {RS=&quot; &quot;; ORS=&quot;\n&quot;} {print $0}'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">uniq</span> <span style="color: #660033;">-u</span> \
<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'BEGIN {ORS=&quot; &quot;} {print $0}'</span><span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#Confirm action:</span>
<span style="color: #7a0874; font-weight: bold;">echo</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> The following tags have been found <span style="color: #000000; font-weight: bold;">in</span> the mp3s:
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$tagspresent</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> These tags are to be stripped:
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$tostrip</span>
<span style="color: #7a0874; font-weight: bold;">echo</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-n</span> Press enter to confirm, or Ctrl+C to cancel...
<span style="color: #c20cb9; font-weight: bold;">read</span> dummy
&nbsp;
<span style="color: #666666; font-style: italic;">#Strip 'em</span>
<span style="color: #007800;">stripstring</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$tostrip</span> \
<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'BEGIN {FS=&quot;\n&quot;; RS=&quot; &quot;} {print &quot;--set-text-frame=&quot; $1 &quot;: &quot;}'</span><span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># First pass copies any v1.x tags to v2.3 and strips unwanted tag data.</span>
<span style="color: #666666; font-style: italic;"># Second pass removes v1.x tags, since I don't like to use them.</span>
<span style="color: #666666; font-style: italic;"># Without --no-tagging-time-frame, a new unwanted tag is added.  :-)</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-iname</span> <span style="color: #ff0000;">&quot;*.mp3&quot;</span> \
<span style="color: #660033;">-exec</span> eyeD3 --to-v2.3 <span style="color: #660033;">--no-tagging-time-frame</span> <span style="color: #007800;">$stripstring</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \; \
<span style="color: #660033;">-exec</span> eyeD3 <span style="color: #660033;">--remove-v1</span> <span style="color: #660033;">--no-tagging-time-frame</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \; 
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Script complete!&quot;</span></pre></div></div>

<p>To run the script, just execute it from the top level parent directory.</p>
<blockquote><p><code><strong>cd ~/Music/<br />
strip-tags.sh</strong></code></p></blockquote>
<p>I really didn&#8217;t change a whole lot from the original, only making slight tweaks to eyeD3 options.  For example, I removed colors from the eyeD3 output when creating the first list of tags, and added a line to remove v1.x ID3 tags since I don&#8217;t like to keep them around.</p>
<p>Be sure to edit the list of good tags identified by the &#8220;okaytags&#8221; variable.  My preferred list includes the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">oktags</span>=<span style="color: #ff0000;">&quot;TALB APIC TCON TPE1 TPE2 TPE3 TIT2 TRCK TYER TCOM TPOS&quot;</span></pre></div></div>

<blockquote><p><code><strong>TALB</strong> - Album/Movie/Show title<br />
<strong>APIC</strong> - Attached picture (Album Art)<br />
<strong>TCON</strong> - Content type (Genre)<br />
<strong>TPE1</strong> - Lead performer(s)/Soloist(s)<br />
<strong>TPE2</strong> - Band/orchestra/accompaniment<br />
<strong>TPE3</strong> - Conductor/performer refinement<br />
<strong>TIT2</strong> - Title/songname/content description<br />
<strong>TRCK</strong> - Track number/Position in set<br />
<strong>TYER</strong> - Year<br />
<strong>TCOM</strong> - Composer<br />
<strong>TPOS</strong> - Part of a set<br />
</code></p></blockquote>
<p>Enjoy!</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F&amp;partner=sociable" title="Print"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F&amp;t=Strip%20All%20Unwanted%20MP3%20ID3%20Tags" title="Facebook"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Strip%20All%20Unwanted%20MP3%20ID3%20Tags%20-%20http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F" title="Twitter"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F&amp;title=Strip%20All%20Unwanted%20MP3%20ID3%20Tags&amp;notes=A%20while%20back%2C%20I%20wanted%20to%20find%20a%20tool%20that%20would%20go%20through%20my%20entire%20collection%20of%20MP3%27s%20and%20remove%20all%20the%20extra%20ID3%20tags%20I%20didn%27t%20want.%20%20For%20example%2C%20when%20I%20purchase%20music%20from%20Amazon%2C%20Rhapsody%2C%20and%20other%20online%20music%20stores%2C%20there%20are%20a%20number%20of" title="del.icio.us"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://savvyadmin.com/feed/" title="RSS"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F&amp;title=Strip%20All%20Unwanted%20MP3%20ID3%20Tags&amp;bodytext=A%20while%20back%2C%20I%20wanted%20to%20find%20a%20tool%20that%20would%20go%20through%20my%20entire%20collection%20of%20MP3%27s%20and%20remove%20all%20the%20extra%20ID3%20tags%20I%20didn%27t%20want.%20%20For%20example%2C%20when%20I%20purchase%20music%20from%20Amazon%2C%20Rhapsody%2C%20and%20other%20online%20music%20stores%2C%20there%20are%20a%20number%20of" title="Digg"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Strip%20All%20Unwanted%20MP3%20ID3%20Tags&amp;body=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F" title="email"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F&amp;title=Strip%20All%20Unwanted%20MP3%20ID3%20Tags&amp;source=SavvyAdmin.com+For+savvy+admins+everywhere...&amp;summary=A%20while%20back%2C%20I%20wanted%20to%20find%20a%20tool%20that%20would%20go%20through%20my%20entire%20collection%20of%20MP3%27s%20and%20remove%20all%20the%20extra%20ID3%20tags%20I%20didn%27t%20want.%20%20For%20example%2C%20when%20I%20purchase%20music%20from%20Amazon%2C%20Rhapsody%2C%20and%20other%20online%20music%20stores%2C%20there%20are%20a%20number%20of" title="LinkedIn"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F" title="Identi.ca"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F&amp;title=Strip%20All%20Unwanted%20MP3%20ID3%20Tags&amp;annotation=A%20while%20back%2C%20I%20wanted%20to%20find%20a%20tool%20that%20would%20go%20through%20my%20entire%20collection%20of%20MP3%27s%20and%20remove%20all%20the%20extra%20ID3%20tags%20I%20didn%27t%20want.%20%20For%20example%2C%20when%20I%20purchase%20music%20from%20Amazon%2C%20Rhapsody%2C%20and%20other%20online%20music%20stores%2C%20there%20are%20a%20number%20of" title="Google Bookmarks"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsavvyadmin.com%2Fstrip-all-unwanted-mp3-id3-tags%2F&amp;title=Strip%20All%20Unwanted%20MP3%20ID3%20Tags" title="StumbleUpon"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://savvyadmin.com/rhythmbox-id3-tag-issues/' rel='bookmark' title='Permanent Link: Rhythmbox ID3 Tag Issues'>Rhythmbox ID3 Tag Issues</a></li>
<li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/strip-all-unwanted-mp3-id3-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Audio Conversion with SoundConverter</title>
		<link>http://savvyadmin.com/audio-conversion-with-soundconverter/</link>
		<comments>http://savvyadmin.com/audio-conversion-with-soundconverter/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 08:21:13 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[FLAC]]></category>
		<category><![CDATA[ID3]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[OGG]]></category>
		<category><![CDATA[SoundConverter]]></category>

		<guid isPermaLink="false">http://www.savvyadmin.com/?p=72</guid>
		<description><![CDATA[If you would like to convert your digital audio files to any number of available formats, SoundConverter is exactly what you&#8217;ve been looking for.  Not only can you convert audio files in batch, but the application also maintains tag data and has a number of intuitive output options as well.  The following is an excerpt [...]


Related posts:<ol><li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/rhythmbox-id3-tag-issues/' rel='bookmark' title='Permanent Link: Rhythmbox ID3 Tag Issues'>Rhythmbox ID3 Tag Issues</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you would like to convert your digital audio files to any number of available formats, <a title="SoundConverter" href="http://soundconverter.berlios.de/" target="_blank">SoundConverter</a> is exactly what you&#8217;ve been looking for.  Not only can you convert audio files in batch, but the application also maintains tag data and has a number of intuitive output options as well.  The following is an excerpt taken from the projects home page.</p>
<p><em>&#8220;The sound conversion application for the GNOME environment. It reads anything the GStreamer library can read (Ogg Vorbis, AAC, MP3, FLAC, WAV, AVI, MPEG, MOV, M4A, AC3, DTS, ALAC, MPC, Shorten, APE, SID, etc&#8230;), and writes WAV, FLAC, MP3, and Ogg Vorbis files.&#8221;</em></p>
<p>Installing SoundConverter is a snap as most distributions have a binary package available, or you can build the latest version from source code.  At the time of writing this aricle, Ubuntu 8.04 repositories have made available version 1.0.1, although the project is currently advertising 1.3.1.  Yikes.  A little out of date, but it still works extremely well.</p>
<p><strong>Installing SoundConverter in Ubuntu/Debian</strong><em><a title="SoundConverter APT Shortcut" href="apt:soundconverter"><br />
</a></em></p>
<blockquote><p><code><strong>sudo apt-get install soundconverter</strong></code></p></blockquote>
<p>If you take a look at the preferences, you&#8217;ll also be pleasantly surprised to find a fine set of available options to control the quality of your newly converted files.  Whether you are converting single files or entire collections, this SoundConverter is at your service.</p>
<p style="text-align: center;"><a href="http://www.savvyadmin.com/wp-content/uploads/2008/07/soundconverter-main.png"><img class="size-medium wp-image-73 alignnone" title="soundconverter-main" src="http://www.savvyadmin.com/wp-content/uploads/2008/07/soundconverter-main-284x300.png" alt="SoundConverter Main Interface" width="284" height="300" /></a> <a href="http://www.savvyadmin.com/wp-content/uploads/2008/07/soundconverter-prefs.png"><img class="size-medium wp-image-74 alignnone" title="soundconverter-prefs" src="http://www.savvyadmin.com/wp-content/uploads/2008/07/soundconverter-prefs-238x300.png" alt="SoundConverter Preferences" width="238" height="300" /></a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F&amp;partner=sociable" title="Print"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F&amp;t=Audio%20Conversion%20with%20SoundConverter" title="Facebook"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Audio%20Conversion%20with%20SoundConverter%20-%20http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F" title="Twitter"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F&amp;title=Audio%20Conversion%20with%20SoundConverter&amp;notes=If%20you%20would%20like%20to%20convert%20your%20digital%20audio%20files%20to%20any%20number%20of%20available%20formats%2C%20SoundConverter%20is%20exactly%20what%20you%27ve%20been%20looking%20for.%C2%A0%20Not%20only%20can%20you%20convert%20audio%20files%20in%20batch%2C%20but%20the%20application%20also%20maintains%20tag%20data%20and%20has%20a%20n" title="del.icio.us"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://savvyadmin.com/feed/" title="RSS"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F&amp;title=Audio%20Conversion%20with%20SoundConverter&amp;bodytext=If%20you%20would%20like%20to%20convert%20your%20digital%20audio%20files%20to%20any%20number%20of%20available%20formats%2C%20SoundConverter%20is%20exactly%20what%20you%27ve%20been%20looking%20for.%C2%A0%20Not%20only%20can%20you%20convert%20audio%20files%20in%20batch%2C%20but%20the%20application%20also%20maintains%20tag%20data%20and%20has%20a%20n" title="Digg"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Audio%20Conversion%20with%20SoundConverter&amp;body=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F" title="email"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F&amp;title=Audio%20Conversion%20with%20SoundConverter&amp;source=SavvyAdmin.com+For+savvy+admins+everywhere...&amp;summary=If%20you%20would%20like%20to%20convert%20your%20digital%20audio%20files%20to%20any%20number%20of%20available%20formats%2C%20SoundConverter%20is%20exactly%20what%20you%27ve%20been%20looking%20for.%C2%A0%20Not%20only%20can%20you%20convert%20audio%20files%20in%20batch%2C%20but%20the%20application%20also%20maintains%20tag%20data%20and%20has%20a%20n" title="LinkedIn"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F" title="Identi.ca"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F&amp;title=Audio%20Conversion%20with%20SoundConverter&amp;annotation=If%20you%20would%20like%20to%20convert%20your%20digital%20audio%20files%20to%20any%20number%20of%20available%20formats%2C%20SoundConverter%20is%20exactly%20what%20you%27ve%20been%20looking%20for.%C2%A0%20Not%20only%20can%20you%20convert%20audio%20files%20in%20batch%2C%20but%20the%20application%20also%20maintains%20tag%20data%20and%20has%20a%20n" title="Google Bookmarks"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsavvyadmin.com%2Faudio-conversion-with-soundconverter%2F&amp;title=Audio%20Conversion%20with%20SoundConverter" title="StumbleUpon"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/rhythmbox-id3-tag-issues/' rel='bookmark' title='Permanent Link: Rhythmbox ID3 Tag Issues'>Rhythmbox ID3 Tag Issues</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/audio-conversion-with-soundconverter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MP3 Tag Editing in Linux</title>
		<link>http://savvyadmin.com/mp3-tag-editing-in-linux/</link>
		<comments>http://savvyadmin.com/mp3-tag-editing-in-linux/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 05:36:19 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[EasyTag]]></category>
		<category><![CDATA[eyeD3]]></category>
		<category><![CDATA[ID3]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MP3]]></category>

		<guid isPermaLink="false">http://www.savvyadmin.com/?p=61</guid>
		<description><![CDATA[There&#8217;s a number of MP3 tag editors available for the Linux platform, but there are two I use exclusively. EasyTag by far is the easiest and probably the most popular graphical MP3 tag editors available, and I use it a great deal for a majority of my MP3 tagging and renaming functions. For quickly identifying, [...]


Related posts:<ol><li><a href='http://savvyadmin.com/rhythmbox-id3-tag-issues/' rel='bookmark' title='Permanent Link: Rhythmbox ID3 Tag Issues'>Rhythmbox ID3 Tag Issues</a></li>
<li><a href='http://savvyadmin.com/strip-all-unwanted-mp3-id3-tags/' rel='bookmark' title='Permanent Link: Strip All Unwanted MP3 ID3 Tags'>Strip All Unwanted MP3 ID3 Tags</a></li>
<li><a href='http://savvyadmin.com/amazon-mp3-downloader-for-linux/' rel='bookmark' title='Permanent Link: Amazon MP3 Downloader for Linux!'>Amazon MP3 Downloader for Linux!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a number of MP3 tag editors available for the Linux platform, but there are two I use exclusively.  <a title="EasyTag Editor" href="http://easytag.sourceforge.net/" target="_blank">EasyTag</a> by far is the easiest and probably the most popular graphical MP3 tag editors available, and I use it a great deal for a majority of my MP3 tagging and renaming functions.  For quickly identifying, converting and stripping unwanted tags, I use a python based command line application called <a title="eyeD3 Tag Editor" href="http://eyed3.nicfit.net/" target="_blank">eyeD3</a>.</p>
<p>In my experience, <a title="EasyTag Editor" href="http://easytag.sourceforge.net/" target="_blank">EasyTag</a> is the most versatile tag editor available.  Some often wonder why on first launch that all of their tracks are highlighted in red and why it keeps prompting them to save changes that they didn&#8217;t make.  This is because by default EasyTag writes both v1.1 and v2.4 tags to files it touches, and will attempt to automatically upgrade all v2.3 tags it has scanned.  This behavior can be adjusted from &#8220;Settings&#8230; Preferences&#8230; ID3 Tag Settings&#8221;.  If you have a player that is not compatible with 2.4 tags, then this is the place to change it back to v2.3.  Uncheck the &#8220;<em>Automatically convert old ID3v2 tag versions</em>&#8221; option if you would like to stop that behavior.  Personally, I also remove the option to save ID3v1.x tags.</p>
<p><center><a href="http://www.savvyadmin.com/wp-content/uploads/2008/07/easytag-preferences.png"><img class="size-medium wp-image-66 aligncenter" style="vertical-align: middle;" title="easytag-preferences" src="http://www.savvyadmin.com/wp-content/uploads/2008/07/easytag-preferences-300x215.png" alt="EasyTag Preferences Window" width="300" height="215" /></a></center></p>
<p style="text-align: left;">It&#8217;s easy to get a bit overwhelmed with all the options EasyTag has to offer, but the defaults are typically safe to use.  Here&#8217;s a couple screenshots of the main user interface.</p>
<p><center><a href="http://www.savvyadmin.com/wp-content/uploads/2008/07/easytag-main.png"><img class="alignnone size-medium wp-image-68" title="easytag-main" src="http://www.savvyadmin.com/wp-content/uploads/2008/07/easytag-main-300x214.png" alt="EasyTag Main Window" width="300" height="214" /></a> <a href="http://www.savvyadmin.com/wp-content/uploads/2008/07/easytag-album-art.png"><img class="alignnone size-medium wp-image-69" title="easytag-album-art" src="http://www.savvyadmin.com/wp-content/uploads/2008/07/easytag-album-art-300x214.png" alt="EasyTag Album Art" width="300" height="214" /></a></center></p>
<p>Other useful features include the ability to perform bulk file and directory renaming based on the tag data, or even set the tags based on the directory and file naming convention.  You can clear all tags (be careful), and automatically populate tags from CDDB sources such as freedb.org, musicbrainz.org, and gnudb.org.</p>
<p>There are also a slew of command line tag editors each with their own strengths and weaknesses.  The lack of 2.4 support plagues most of them, with the exception of <a title="eyeD3 Website" href="http://eyed3.nicfit.net/" target="_blank">eyeD3</a>.  This application is wicked cool.  Not only does it support v2.4 tags but it also provides a very clean display of current tags using color and bold text.  You can attach album art, add new or modify existing tags, and of course is easily scriptable.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F&amp;partner=sociable" title="Print"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F&amp;t=MP3%20Tag%20Editing%20in%20Linux" title="Facebook"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=MP3%20Tag%20Editing%20in%20Linux%20-%20http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F" title="Twitter"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F&amp;title=MP3%20Tag%20Editing%20in%20Linux&amp;notes=There%27s%20a%20number%20of%20MP3%20tag%20editors%20available%20for%20the%20Linux%20platform%2C%20but%20there%20are%20two%20I%20use%20exclusively.%20%20EasyTag%20by%20far%20is%20the%20easiest%20and%20probably%20the%20most%20popular%20graphical%20MP3%20tag%20editors%20available%2C%20and%20I%20use%20it%20a%20great%20deal%20for%20a%20majority%20of%20m" title="del.icio.us"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://savvyadmin.com/feed/" title="RSS"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F&amp;title=MP3%20Tag%20Editing%20in%20Linux&amp;bodytext=There%27s%20a%20number%20of%20MP3%20tag%20editors%20available%20for%20the%20Linux%20platform%2C%20but%20there%20are%20two%20I%20use%20exclusively.%20%20EasyTag%20by%20far%20is%20the%20easiest%20and%20probably%20the%20most%20popular%20graphical%20MP3%20tag%20editors%20available%2C%20and%20I%20use%20it%20a%20great%20deal%20for%20a%20majority%20of%20m" title="Digg"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=MP3%20Tag%20Editing%20in%20Linux&amp;body=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F" title="email"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F&amp;title=MP3%20Tag%20Editing%20in%20Linux&amp;source=SavvyAdmin.com+For+savvy+admins+everywhere...&amp;summary=There%27s%20a%20number%20of%20MP3%20tag%20editors%20available%20for%20the%20Linux%20platform%2C%20but%20there%20are%20two%20I%20use%20exclusively.%20%20EasyTag%20by%20far%20is%20the%20easiest%20and%20probably%20the%20most%20popular%20graphical%20MP3%20tag%20editors%20available%2C%20and%20I%20use%20it%20a%20great%20deal%20for%20a%20majority%20of%20m" title="LinkedIn"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F" title="Identi.ca"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F&amp;title=MP3%20Tag%20Editing%20in%20Linux&amp;annotation=There%27s%20a%20number%20of%20MP3%20tag%20editors%20available%20for%20the%20Linux%20platform%2C%20but%20there%20are%20two%20I%20use%20exclusively.%20%20EasyTag%20by%20far%20is%20the%20easiest%20and%20probably%20the%20most%20popular%20graphical%20MP3%20tag%20editors%20available%2C%20and%20I%20use%20it%20a%20great%20deal%20for%20a%20majority%20of%20m" title="Google Bookmarks"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsavvyadmin.com%2Fmp3-tag-editing-in-linux%2F&amp;title=MP3%20Tag%20Editing%20in%20Linux" title="StumbleUpon"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://savvyadmin.com/rhythmbox-id3-tag-issues/' rel='bookmark' title='Permanent Link: Rhythmbox ID3 Tag Issues'>Rhythmbox ID3 Tag Issues</a></li>
<li><a href='http://savvyadmin.com/strip-all-unwanted-mp3-id3-tags/' rel='bookmark' title='Permanent Link: Strip All Unwanted MP3 ID3 Tags'>Strip All Unwanted MP3 ID3 Tags</a></li>
<li><a href='http://savvyadmin.com/amazon-mp3-downloader-for-linux/' rel='bookmark' title='Permanent Link: Amazon MP3 Downloader for Linux!'>Amazon MP3 Downloader for Linux!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/mp3-tag-editing-in-linux/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Rhythmbox ID3 Tag Issues</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/</link>
		<comments>http://savvyadmin.com/rhythmbox-id3-tag-issues/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 18:33:44 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[eyeD3]]></category>
		<category><![CDATA[ID3]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Rythmbox]]></category>

		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60</guid>
		<description><![CDATA[So I recently noticed that Rhythmbox was behaving strangely when reading the ID3 tags of my MP3 collection purchased online via Amazon.com. No matter what ID3 tag editor I used to try to correct the issue, Rhythmbox appeared to be displaying tag information that didn&#8217;t seem to match any of the values they should be. [...]


Related posts:<ol><li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/strip-all-unwanted-mp3-id3-tags/' rel='bookmark' title='Permanent Link: Strip All Unwanted MP3 ID3 Tags'>Strip All Unwanted MP3 ID3 Tags</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So I recently noticed that <a title="Rhythmbox Website" href="http://www.gnome.org/projects/rhythmbox/" target="_blank">Rhythmbox</a> was behaving strangely when reading the ID3 tags of my MP3 collection purchased online via Amazon.com.  No matter what ID3 tag editor I used to try to correct the issue, Rhythmbox appeared to be displaying tag information that didn&#8217;t seem to match any of the values they should be.  Artist names would not appear as I set them.  Track numbers and genres would display as blank values.  &#8216;What gives?&#8217;, I thought.</p>
<p>So I decided to use &#8220;strings&#8221; to take a look inside the MP3&#8242;s and find out what&#8217;s going on.  It turns out my MP3&#8242;s were double tagged with v1 metadata and it was screwing up Rhythmbox&#8217;s organizational skills!  Boo!</p>
<p>Some brief background info on ID3 tagging is needed before we continue.  ID3 v1.x tags are located at the tail end of an MP3, whereas v2.x tags are located at the beginning of the file.  To view the raw tag data, open up a terminal window and use the strings command to parse the mp3 for text.</p>
<blockquote><pre>$ strings songname.mp3 | head
$ strings songname.mp3 | tail</pre>
</blockquote>
<p>Here&#8217;s an example of the output obtained from one of my problematic tracks.  I wanted the artist name to appear as &#8220;Bob Marley&#8221;, but Rhythmbox insisted on displaying &#8220;Bob Marley &amp; The Wailers&#8221;.</p>
<blockquote><pre>$ strings 01\ -\ Is\ This\ Love.mp3 | tail
J/q:
X0aZ
-g%U
TAGIs This Love
Bob Marley &amp; The Wailers
Legend
TAGIs This Love
Bob Marley
Legend
2002Amazon.com Song ID: 20254105</pre>
</blockquote>
<p>In this example, you can see I have two ID3v1.x tags at the end of the file.  Each tag starts with &#8220;TAG&#8221;, immediately followed by the track name, artist and album.  Rhythmbox was only reading the first one, but all of the tag editors I tried were working with the last one.</p>
<p><strong>Solution:</strong><br />
Simply remove all ID3v1.x tags twice, then re-write them if you wish.  An easy command line application for this job is &#8220;<a title="eyeD3 Website" href="http://eyed3.nicfit.net/" target="_blank">eyeD3</a>&#8220;.  Others may work as well, but of course your mileage may vary.</p>
<p><a title="Install eyeD3 Now!" href="apt:eyed3">Install eyeD3</a> from repositories if you use Debian/Ubuntu.</p>
<blockquote><pre>$ sudo apt-get install eyed3</pre>
</blockquote>
<p>Display the outer-most ID3v1.x tag</p>
<blockquote><pre>$ eyeD3 -1 01\ -\ Is\ This\ Love.mp3</pre>
</blockquote>
<p>Remove the outer-most ID3v1.x tag <strong>twice</strong>, or until they&#8217;re all gone.  I trimmed the output below for brevity.</p>
<blockquote><pre>$ eyeD3 --remove-v1 01\ -\ Is\ This\ Love.mp3 1>/dev/null
Removing ID3 v1.x tag: SUCCESS
$ eyeD3 --remove-v1 01\ -\ Is\ This\ Love.mp3 1>/dev/null
Removing ID3 v1.x tag: SUCCESS</pre>
</blockquote>
<p>Doing so immediately resolves the Rhythmbox tag display issue, as it reverts back to using the v2.x tags at the beginning of the file.</p>
<p><strong>Fixing the problem in bulk:</strong><br />
If you want to fix all of your MP3&#8242;s fast, you can use any of the following methods.  Remember, you must run them at least twice, or until all v1.x tags have been removed.  The commands listed below use <code>"<strong>1>/dev/null</strong>"</code> to remove all <a title="Standard Error/Out Explanation" href="http://bashcurescancer.com/standard_error_and_out.html" target="_blank">standard output</a>, but still allows standard error messages to be shown.  Interestingly, the SUCCESS messages eyeD3 uses are written to <a title="Standard Error/Out Explanation" href="http://bashcurescancer.com/standard_error_and_out.html" target="_blank">standard error</a>, so you&#8217;ll see those too.</p>
<p>If all your MP3&#8242;s are in the same directory:</p>
<blockquote><pre>$ for i in *.mp3 ; do eyeD3 --remove-v1 "$i" 1>/dev/null ; done</pre>
</blockquote>
<p>If all your MP3&#8242;s span multiple subdirectories:</p>
<blockquote><pre>$ find . -type f -name *.mp3 -exec eyeD3 --remove-v1 '{}' 1>/dev/null \;
</pre>
</blockquote>
<p>Alternatively, you can use a python script written by UlyssesR, originally contributed on the Ubuntu Forums <a title="Ulysses Comment on UbuntuForums.org" href="http://ubuntuforums.org/showpost.php?p=2108913&amp;postcount=11" target="_blank">here</a>.  The script has the advantage of only needing to be run once and it is relatively safe to use.  I actually used it on my entire collection before using eyeD3 in this manner with no problems.  I then reapplied my tags using <a title="EasyTag Editor" href="http://easytag.sourceforge.net/" target="_blank">EasyTag</a>.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F&amp;partner=sociable" title="Print"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F&amp;t=Rhythmbox%20ID3%20Tag%20Issues" title="Facebook"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Rhythmbox%20ID3%20Tag%20Issues%20-%20http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F" title="Twitter"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F&amp;title=Rhythmbox%20ID3%20Tag%20Issues&amp;notes=So%20I%20recently%20noticed%20that%20Rhythmbox%20was%20behaving%20strangely%20when%20reading%20the%20ID3%20tags%20of%20my%20MP3%20collection%20purchased%20online%20via%20Amazon.com.%20%20No%20matter%20what%20ID3%20tag%20editor%20I%20used%20to%20try%20to%20correct%20the%20issue%2C%20Rhythmbox%20appeared%20to%20be%20displaying%20tag%20inf" title="del.icio.us"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://savvyadmin.com/feed/" title="RSS"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F&amp;title=Rhythmbox%20ID3%20Tag%20Issues&amp;bodytext=So%20I%20recently%20noticed%20that%20Rhythmbox%20was%20behaving%20strangely%20when%20reading%20the%20ID3%20tags%20of%20my%20MP3%20collection%20purchased%20online%20via%20Amazon.com.%20%20No%20matter%20what%20ID3%20tag%20editor%20I%20used%20to%20try%20to%20correct%20the%20issue%2C%20Rhythmbox%20appeared%20to%20be%20displaying%20tag%20inf" title="Digg"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Rhythmbox%20ID3%20Tag%20Issues&amp;body=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F" title="email"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F&amp;title=Rhythmbox%20ID3%20Tag%20Issues&amp;source=SavvyAdmin.com+For+savvy+admins+everywhere...&amp;summary=So%20I%20recently%20noticed%20that%20Rhythmbox%20was%20behaving%20strangely%20when%20reading%20the%20ID3%20tags%20of%20my%20MP3%20collection%20purchased%20online%20via%20Amazon.com.%20%20No%20matter%20what%20ID3%20tag%20editor%20I%20used%20to%20try%20to%20correct%20the%20issue%2C%20Rhythmbox%20appeared%20to%20be%20displaying%20tag%20inf" title="LinkedIn"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F" title="Identi.ca"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F&amp;title=Rhythmbox%20ID3%20Tag%20Issues&amp;annotation=So%20I%20recently%20noticed%20that%20Rhythmbox%20was%20behaving%20strangely%20when%20reading%20the%20ID3%20tags%20of%20my%20MP3%20collection%20purchased%20online%20via%20Amazon.com.%20%20No%20matter%20what%20ID3%20tag%20editor%20I%20used%20to%20try%20to%20correct%20the%20issue%2C%20Rhythmbox%20appeared%20to%20be%20displaying%20tag%20inf" title="Google Bookmarks"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsavvyadmin.com%2Frhythmbox-id3-tag-issues%2F&amp;title=Rhythmbox%20ID3%20Tag%20Issues" title="StumbleUpon"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/strip-all-unwanted-mp3-id3-tags/' rel='bookmark' title='Permanent Link: Strip All Unwanted MP3 ID3 Tags'>Strip All Unwanted MP3 ID3 Tags</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/rhythmbox-id3-tag-issues/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Amazon MP3 Downloader for Linux!</title>
		<link>http://savvyadmin.com/amazon-mp3-downloader-for-linux/</link>
		<comments>http://savvyadmin.com/amazon-mp3-downloader-for-linux/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 02:54:47 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MP3]]></category>

		<guid isPermaLink="false">http://www.savvyadmin.com/2008/02/29/amazoncom-mp3-downloader-for-linux/</guid>
		<description><![CDATA[For those of you that have been waiting for Amazon.com to deliver on their promise, you will be happy to know they have just released a Linux version of the Amazon MP3 Downloader! This application is required when purchasing full mp3 albums on Amazon.com&#8217;s MP3 service, which are typically priced lower than buying all the [...]


Related posts:<ol><li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/batch-mp3-encoding-with-linux-and-lame/' rel='bookmark' title='Permanent Link: Batch MP3 Encoding with Linux and LAME'>Batch MP3 Encoding with Linux and LAME</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>For those of you that have been waiting for Amazon.com to deliver on their promise, you will be happy to know they have just released a Linux version of the <a title="Amazon MP3 Downloader" href="http://www.amazon.com/gp/dmusic/help/amd.html" target="_blank">Amazon MP3 Downloader</a>!  This application is required when purchasing full mp3 albums on Amazon.com&#8217;s MP3 service, which are typically priced lower than buying all the songs individually.  This is important because customers using Linux can enjoy the same cost benefits that up until now, were only available for Windows and Mac platforms.</p>
<p>The installer is currently advertised as available for Ubuntu 7.10, Debian 4 Etch, Fedora 8, and OpenSUSE 10.3, and I am very happy to report that it is a native application!  The installation process is very easy as they are packaged using the standard packaging formats for each platform, and using the application is extremely easy.</p>
<p>Here&#8217;s a screen shot of my very first purchase using the MP3 Downloader.</p>
<p><img src="https://www.savvyadmin.com/wp-content/uploads/2008/02/screenshot-amazon-mp3-downloader.png" alt="Amazon MP3 Downloader" /></p>
<p>All the songs are conveniently downloaded to a directory of your choice, and organized in directories named after the artist and album.</p>
<p>For many months, I had been writing emails asking that they please release a Linux version of the application, or simply provide an alternate method of purchasing full albums.  I am absolutely thrilled that they have listened to their customers, and urge that the Linux community send their messages of gratitude to Amazon.com.  Of course, the best way to do that is to return the favour by using their service on the platform of YOUR choice.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F&amp;partner=sociable" title="Print"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F&amp;t=Amazon%20MP3%20Downloader%20for%20Linux%21" title="Facebook"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Amazon%20MP3%20Downloader%20for%20Linux%21%20-%20http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F" title="Twitter"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F&amp;title=Amazon%20MP3%20Downloader%20for%20Linux%21&amp;notes=For%20those%20of%20you%20that%20have%20been%20waiting%20for%20Amazon.com%20to%20deliver%20on%20their%20promise%2C%20you%20will%20be%20happy%20to%20know%20they%20have%20just%20released%20a%20Linux%20version%20of%20the%20Amazon%20MP3%20Downloader%21%20%20This%20application%20is%20required%20when%20purchasing%20full%20mp3%20albums%20on%20Amazo" title="del.icio.us"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://savvyadmin.com/feed/" title="RSS"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F&amp;title=Amazon%20MP3%20Downloader%20for%20Linux%21&amp;bodytext=For%20those%20of%20you%20that%20have%20been%20waiting%20for%20Amazon.com%20to%20deliver%20on%20their%20promise%2C%20you%20will%20be%20happy%20to%20know%20they%20have%20just%20released%20a%20Linux%20version%20of%20the%20Amazon%20MP3%20Downloader%21%20%20This%20application%20is%20required%20when%20purchasing%20full%20mp3%20albums%20on%20Amazo" title="Digg"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Amazon%20MP3%20Downloader%20for%20Linux%21&amp;body=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F" title="email"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F&amp;title=Amazon%20MP3%20Downloader%20for%20Linux%21&amp;source=SavvyAdmin.com+For+savvy+admins+everywhere...&amp;summary=For%20those%20of%20you%20that%20have%20been%20waiting%20for%20Amazon.com%20to%20deliver%20on%20their%20promise%2C%20you%20will%20be%20happy%20to%20know%20they%20have%20just%20released%20a%20Linux%20version%20of%20the%20Amazon%20MP3%20Downloader%21%20%20This%20application%20is%20required%20when%20purchasing%20full%20mp3%20albums%20on%20Amazo" title="LinkedIn"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F" title="Identi.ca"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F&amp;title=Amazon%20MP3%20Downloader%20for%20Linux%21&amp;annotation=For%20those%20of%20you%20that%20have%20been%20waiting%20for%20Amazon.com%20to%20deliver%20on%20their%20promise%2C%20you%20will%20be%20happy%20to%20know%20they%20have%20just%20released%20a%20Linux%20version%20of%20the%20Amazon%20MP3%20Downloader%21%20%20This%20application%20is%20required%20when%20purchasing%20full%20mp3%20albums%20on%20Amazo" title="Google Bookmarks"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsavvyadmin.com%2Famazon-mp3-downloader-for-linux%2F&amp;title=Amazon%20MP3%20Downloader%20for%20Linux%21" title="StumbleUpon"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/batch-mp3-encoding-with-linux-and-lame/' rel='bookmark' title='Permanent Link: Batch MP3 Encoding with Linux and LAME'>Batch MP3 Encoding with Linux and LAME</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/amazon-mp3-downloader-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch MP3 Encoding with Linux and LAME</title>
		<link>http://savvyadmin.com/batch-mp3-encoding-with-linux-and-lame/</link>
		<comments>http://savvyadmin.com/batch-mp3-encoding-with-linux-and-lame/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 20:32:14 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[LAME]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.savvyadmin.com/2007/12/02/batch-mp3-encoding-with-linux-and-lame/</guid>
		<description><![CDATA[If you have a number of audio files that you would like to convert to mp3, but don&#8217;t want to hassle with graphical applications, there is a simple way to accomplish the task using Linux, LAME and a little shell scripting. By performing a basic &#8220;for loop&#8221; to invoke LAME, you can easily convert any [...]


Related posts:<ol><li><a href='http://savvyadmin.com/add-stereo-audio-tracks-to-mkv-files/' rel='bookmark' title='Permanent Link: Add Stereo Audio Tracks to MKV Files'>Add Stereo Audio Tracks to MKV Files</a></li>
<li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/amazon-mp3-downloader-for-linux/' rel='bookmark' title='Permanent Link: Amazon MP3 Downloader for Linux!'>Amazon MP3 Downloader for Linux!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you have a number of audio files that you would like to convert to mp3, but don&#8217;t want to hassle with graphical applications, there is a simple way to accomplish the task using Linux, LAME and a little shell scripting.  By performing a basic &#8220;for loop&#8221; to invoke LAME, you can easily convert any group of audio files using one line of shell code.</p>
<p>Here is an example of a &#8220;for loop&#8221; that runs the command &#8220;lame&#8221; against a set of files in your current working directory with the .wav file extension.</p>
<blockquote><pre>$ for f in *.wav ; do lame $f ; done</pre>
</blockquote>
<p>If your audio file names have spaces in them, then you will need to use quotation marks around &#8220;$f&#8221; variable.</p>
<blockquote><pre>$ for f in *.wav ; do lame "$f" ; done</pre>
</blockquote>
<p>I typically create my original audio files <em>without</em> the file name extension of <em>.wav</em> or <em>.au</em>.   This is because when you run lame against a file name, and do not omit the extension in the output option, the resulting file will have two extensions in the file name.  e.g. <em>filename.wav.mp3</em>.  Yes, I can use <em>sed</em> or <em>basename</em> in the for loop to prevent this, but to keep it simple, I just choose to not use the file extension to begin with.</p>
<p>If you are working with a group of files that have all been named using the convention of &#8220;Artist &#8211; Album &#8211; ## &#8211; Track Title&#8221;, (notice the spaces in the name), the following will work.</p>
<blockquote><pre>$ for f in Artist\ -\ Album* ; do lame "$f" ; done</pre>
</blockquote>
<p>Once the job is finished, you will be left with a directory full of your original audio files, and your newly created mp3&#8242;s.</p>
<p><strong>Extra Credit</strong></p>
<p>Okay, since we&#8217;re on the topic of shell scripting.  If you want to delete  all the original audio files (the ones without any file name extensions), and without first moving the new mp3&#8242;s to a different directory, one overly complicated example would be the following.</p>
<blockquote><pre>for f in *.mp3 ; do AUFILE=`basename "$f" .mp3` ; rm "$AUFILE"; done</pre>
</blockquote>
<p>This would have been easier if the original files could have been identified with .wav extensions, (rm *.wav), but since they had no file extensions to begin with, a wild card alone would not work.  Now folks, this is <em>just</em> an example, and there&#8217;s a million other ways you can go about this.  But in any case, I hope it helps you start exploring on your own!</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F&amp;partner=sociable" title="Print"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F&amp;t=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME" title="Facebook"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME%20-%20http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F" title="Twitter"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F&amp;title=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME&amp;notes=If%20you%20have%20a%20number%20of%20audio%20files%20that%20you%20would%20like%20to%20convert%20to%20mp3%2C%20but%20don%27t%20want%20to%20hassle%20with%20graphical%20applications%2C%20there%20is%20a%20simple%20way%20to%20accomplish%20the%20task%20using%20Linux%2C%20LAME%20and%20a%20little%20shell%20scripting.%20%20By%20performing%20a%20basic%20%22for%20" title="del.icio.us"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://savvyadmin.com/feed/" title="RSS"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F&amp;title=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME&amp;bodytext=If%20you%20have%20a%20number%20of%20audio%20files%20that%20you%20would%20like%20to%20convert%20to%20mp3%2C%20but%20don%27t%20want%20to%20hassle%20with%20graphical%20applications%2C%20there%20is%20a%20simple%20way%20to%20accomplish%20the%20task%20using%20Linux%2C%20LAME%20and%20a%20little%20shell%20scripting.%20%20By%20performing%20a%20basic%20%22for%20" title="Digg"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME&amp;body=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F" title="email"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F&amp;title=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME&amp;source=SavvyAdmin.com+For+savvy+admins+everywhere...&amp;summary=If%20you%20have%20a%20number%20of%20audio%20files%20that%20you%20would%20like%20to%20convert%20to%20mp3%2C%20but%20don%27t%20want%20to%20hassle%20with%20graphical%20applications%2C%20there%20is%20a%20simple%20way%20to%20accomplish%20the%20task%20using%20Linux%2C%20LAME%20and%20a%20little%20shell%20scripting.%20%20By%20performing%20a%20basic%20%22for%20" title="LinkedIn"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F" title="Identi.ca"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F&amp;title=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME&amp;annotation=If%20you%20have%20a%20number%20of%20audio%20files%20that%20you%20would%20like%20to%20convert%20to%20mp3%2C%20but%20don%27t%20want%20to%20hassle%20with%20graphical%20applications%2C%20there%20is%20a%20simple%20way%20to%20accomplish%20the%20task%20using%20Linux%2C%20LAME%20and%20a%20little%20shell%20scripting.%20%20By%20performing%20a%20basic%20%22for%20" title="Google Bookmarks"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsavvyadmin.com%2Fbatch-mp3-encoding-with-linux-and-lame%2F&amp;title=Batch%20MP3%20Encoding%20with%20Linux%20and%20LAME" title="StumbleUpon"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://savvyadmin.com/add-stereo-audio-tracks-to-mkv-files/' rel='bookmark' title='Permanent Link: Add Stereo Audio Tracks to MKV Files'>Add Stereo Audio Tracks to MKV Files</a></li>
<li><a href='http://savvyadmin.com/mp3-tag-editing-in-linux/' rel='bookmark' title='Permanent Link: MP3 Tag Editing in Linux'>MP3 Tag Editing in Linux</a></li>
<li><a href='http://savvyadmin.com/amazon-mp3-downloader-for-linux/' rel='bookmark' title='Permanent Link: Amazon MP3 Downloader for Linux!'>Amazon MP3 Downloader for Linux!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/batch-mp3-encoding-with-linux-and-lame/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Creative Zen V Plus in Ubuntu</title>
		<link>http://savvyadmin.com/creative-zen-v-plus-in-ubuntu/</link>
		<comments>http://savvyadmin.com/creative-zen-v-plus-in-ubuntu/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 04:36:03 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Creative Zen]]></category>
		<category><![CDATA[Gnomad2]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[MTP]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.savvyadmin.com/2007/06/14/creative-zen-v-plus-in-ubuntu/</guid>
		<description><![CDATA[Update: 04/22/2009 The following post is pretty outdated, and while it&#8217;s still relevant, I do not use Gnomad2 any more. I prefer other applications such as Banshee, Rythmbox, and Amarok. Banshee is by far my favorite because of it&#8217;s simplicity, clean interface and album art support. KDE users will probably prefer Amarok, and Rhythmbox is [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>Update: 04/22/2009</strong></p>
<p>The following post is pretty outdated, and while it&#8217;s still relevant, I do not use Gnomad2 any more.  I prefer other applications such as <a href="http://banshee-project.org/" target="_blank">Banshee</a>, <a href="http://projects.gnome.org/rhythmbox/" target="_blank">Rythmbox</a>, and <a href="http://amarok.kde.org/" target="_blank">Amarok</a>.  Banshee is by far my favorite because of it&#8217;s simplicity, clean interface and album art support.  KDE users will probably prefer Amarok, and Rhythmbox is by far the simplest.  All of these devices have MTP and iPod support, and are available in virtually every distribution repository.</p>
<p><strong>Original Post:</strong></p>
<p>If you would like to get your Creative Zen V Plus or related portable music player working in Ubuntu 7.04 and above, you&#8217;re in luck!</p>
<p>All you need is &#8220;Gnomad2&#8243; <strong><em>(please see updated notes at the top of this post)</em></strong> as the graphical front end to your players music and playlists, and several libraries that are installed as dependencies (i.e. libmtp5).  MTP stands for Microsoft Transfer Protocol, and libmtp5 is the key component to making this work.</p>
<p>As of this writing, the Creative Zen V Plus was not added to the libmtp5 udev rules file.  This means that you would need root privileges to run Gnomad2, unless you changed the default permissions.   No worries&#8230; correcting this is very easy to do.</p>
<p>1. First, install &#8220;Gnomad2&#8243;.  The required dependencies will be installed by default.</p>
<blockquote><p><code><strong>sudo apt-get install gnomad2</strong></code></p></blockquote>
<p>2. To allow access to the Zen player using your normal user account, you must specify which permissions the device should have applied to it.  These permissions can be set easily in a file supplied with the libmtp5 package.   Edit the file as shown below.</p>
<blockquote><p><code><strong>sudo gedit /etc/udev/rules.d/65-libmtp.rules</strong></code></p></blockquote>
<p>Simply add the following and save your changes:</p>
<blockquote><p><code># Creative Zen V Plus<br />
SYSFS{idVendor}=="041e", SYSFS{idProduct}=="4152", SYMLINK+="libmtp-%k", MODE="666"</code></p></blockquote>
<p>Note: You may need to verify that the &#8220;idProduct&#8221; variable matches your device Product ID.  To obtain this information perform an &#8220;lsusb&#8221; after plugging in the Zen player.  The output will look like the following:</p>
<blockquote><p><code><strong>sudo lsusb</strong><br />
Bus 005 Device 007: ID 041e:4152 Creative Technology, Ltd<br />
&lt;snipped for brevity&gt;</code></p></blockquote>
<p>In the above example, <em>&#8220;041e</em>&#8221; represend the Vendor ID (Creative), and the second number to the right, &#8220;<em>4152</em>&#8221; is your Product ID (Zen V Plus).  If your device is different, simply change the values accordingly.</p>
<p>3. Re-plug your Zen player and wait for it to fully initialize to it&#8217;s final on-screen display.  Start Gnomad2, and have some fun!</p>
<p>For more information on how to use Gnomad2, check out their website:   <a title="Gnomad2 Home Page" href="http://gnomad2.sourceforge.net/" target="_blank">http://gnomad2.sourceforge.net/</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F&amp;partner=sociable" title="Print"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F&amp;t=Creative%20Zen%20V%20Plus%20in%20Ubuntu" title="Facebook"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Creative%20Zen%20V%20Plus%20in%20Ubuntu%20-%20http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F" title="Twitter"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F&amp;title=Creative%20Zen%20V%20Plus%20in%20Ubuntu&amp;notes=Update%3A%2004%2F22%2F2009%0D%0A%0D%0AThe%20following%20post%20is%20pretty%20outdated%2C%20and%20while%20it%27s%20still%20relevant%2C%20I%20do%20not%20use%20Gnomad2%20any%20more.%20%20I%20prefer%20other%20applications%20such%20as%20Banshee%2C%20Rythmbox%2C%20and%20Amarok.%20%20Banshee%20is%20by%20far%20my%20favorite%20because%20of%20it%27s%20simplicity%2C%20" title="del.icio.us"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://savvyadmin.com/feed/" title="RSS"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F&amp;title=Creative%20Zen%20V%20Plus%20in%20Ubuntu&amp;bodytext=Update%3A%2004%2F22%2F2009%0D%0A%0D%0AThe%20following%20post%20is%20pretty%20outdated%2C%20and%20while%20it%27s%20still%20relevant%2C%20I%20do%20not%20use%20Gnomad2%20any%20more.%20%20I%20prefer%20other%20applications%20such%20as%20Banshee%2C%20Rythmbox%2C%20and%20Amarok.%20%20Banshee%20is%20by%20far%20my%20favorite%20because%20of%20it%27s%20simplicity%2C%20" title="Digg"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Creative%20Zen%20V%20Plus%20in%20Ubuntu&amp;body=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F" title="email"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F&amp;title=Creative%20Zen%20V%20Plus%20in%20Ubuntu&amp;source=SavvyAdmin.com+For+savvy+admins+everywhere...&amp;summary=Update%3A%2004%2F22%2F2009%0D%0A%0D%0AThe%20following%20post%20is%20pretty%20outdated%2C%20and%20while%20it%27s%20still%20relevant%2C%20I%20do%20not%20use%20Gnomad2%20any%20more.%20%20I%20prefer%20other%20applications%20such%20as%20Banshee%2C%20Rythmbox%2C%20and%20Amarok.%20%20Banshee%20is%20by%20far%20my%20favorite%20because%20of%20it%27s%20simplicity%2C%20" title="LinkedIn"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F" title="Identi.ca"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/identica.png" title="Identi.ca" alt="Identi.ca" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F&amp;title=Creative%20Zen%20V%20Plus%20in%20Ubuntu&amp;annotation=Update%3A%2004%2F22%2F2009%0D%0A%0D%0AThe%20following%20post%20is%20pretty%20outdated%2C%20and%20while%20it%27s%20still%20relevant%2C%20I%20do%20not%20use%20Gnomad2%20any%20more.%20%20I%20prefer%20other%20applications%20such%20as%20Banshee%2C%20Rythmbox%2C%20and%20Amarok.%20%20Banshee%20is%20by%20far%20my%20favorite%20because%20of%20it%27s%20simplicity%2C%20" title="Google Bookmarks"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsavvyadmin.com%2Fcreative-zen-v-plus-in-ubuntu%2F&amp;title=Creative%20Zen%20V%20Plus%20in%20Ubuntu" title="StumbleUpon"><img src="http://savvyadmin.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/creative-zen-v-plus-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
