<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Rhythmbox ID3 Tag Issues</title>
	<atom:link href="http://savvyadmin.com/rhythmbox-id3-tag-issues/feed/" rel="self" type="application/rss+xml" />
	<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/</link>
	<description>For savvy admins everywhere...</description>
	<lastBuildDate>Sat, 04 Feb 2012 22:20:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Antares</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-1024</link>
		<dc:creator>Antares</dc:creator>
		<pubDate>Tue, 10 Jan 2012 05:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-1024</guid>
		<description>The id3.v1 problem can be fixed using id3v2 using the -s option

id3v2 -s 

Regards.</description>
		<content:encoded><![CDATA[<p>The id3.v1 problem can be fixed using id3v2 using the -s option</p>
<p>id3v2 -s </p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: happyfish</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-1011</link>
		<dc:creator>happyfish</dc:creator>
		<pubDate>Fri, 12 Aug 2011 03:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-1011</guid>
		<description>The only thing that&#039;s working for me to solve this problem- and I&#039;ve tried all night- is using a WINE run of SongBird Portable to edit the id3 tags...  I&#039;ve used several command line programs, VLC, Rhythmbox itself, puddlemp3...  Nothing else is working. :S  I have no idea why...</description>
		<content:encoded><![CDATA[<p>The only thing that&#8217;s working for me to solve this problem- and I&#8217;ve tried all night- is using a WINE run of SongBird Portable to edit the id3 tags&#8230;  I&#8217;ve used several command line programs, VLC, Rhythmbox itself, puddlemp3&#8230;  Nothing else is working. :S  I have no idea why&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-1004</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Sun, 05 Jun 2011 20:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-1004</guid>
		<description>Oooh... thanks.  I have had the APE tag issue with Rhythmbox before, but I&#039;ve never run into the multiple sets of ID3 tags before!  Man, what a waste of three hours trying to figure that out!  In my case they were APE + ID3v1 + ID3v2 + ID3v2... AHAHAAHA.</description>
		<content:encoded><![CDATA[<p>Oooh&#8230; thanks.  I have had the APE tag issue with Rhythmbox before, but I&#8217;ve never run into the multiple sets of ID3 tags before!  Man, what a waste of three hours trying to figure that out!  In my case they were APE + ID3v1 + ID3v2 + ID3v2&#8230; AHAHAAHA.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-951</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 04 Aug 2010 17:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-951</guid>
		<description>There are plenty of tag editors that will merge duplicate fields. Personally, I use windows-based mp3tag
http://www.mp3tag.de/en/

I am concerned that it seems to be rhythmbox that is causing these duplicates.</description>
		<content:encoded><![CDATA[<p>There are plenty of tag editors that will merge duplicate fields. Personally, I use windows-based mp3tag<br />
<a href="http://www.mp3tag.de/en/" rel="nofollow">http://www.mp3tag.de/en/</a></p>
<p>I am concerned that it seems to be rhythmbox that is causing these duplicates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane D</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-924</link>
		<dc:creator>Shane D</dc:creator>
		<pubDate>Wed, 24 Mar 2010 23:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-924</guid>
		<description>Great post! Here are a few additions:

To automagically re-add the v1 tags (based on the v2 tags):
eyeD3 --to-v1.1 SONG_FILE

Here&#039;s a script (fix_amazonmp3.sh) to do it all in one file:
#!/bin/bash
IFS=$&#039;\n&#039;
eyeD3 --remove-v1 $1
eyeD3 --remove-v1 $1
eyeD3 --to-v1.1 $1

To convert all mp3s at or below current directory using the above script:
find . -iname &#039;*.mp3&#039; -exec fix_amazonmp3.sh {} \;</description>
		<content:encoded><![CDATA[<p>Great post! Here are a few additions:</p>
<p>To automagically re-add the v1 tags (based on the v2 tags):<br />
eyeD3 &#8211;to-v1.1 SONG_FILE</p>
<p>Here&#8217;s a script (fix_amazonmp3.sh) to do it all in one file:<br />
#!/bin/bash<br />
IFS=$&#8217;\n&#8217;<br />
eyeD3 &#8211;remove-v1 $1<br />
eyeD3 &#8211;remove-v1 $1<br />
eyeD3 &#8211;to-v1.1 $1</p>
<p>To convert all mp3s at or below current directory using the above script:<br />
find . -iname &#8216;*.mp3&#8242; -exec fix_amazonmp3.sh {} \;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gmendoza</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-811</link>
		<dc:creator>gmendoza</dc:creator>
		<pubDate>Fri, 11 Dec 2009 15:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-811</guid>
		<description>Haha!!  I love that you cared enough about the topic to share that.  :-P</description>
		<content:encoded><![CDATA[<p>Haha!!  I love that you cared enough about the topic to share that.  :-P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea R</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-810</link>
		<dc:creator>Andrea R</dc:creator>
		<pubDate>Fri, 11 Dec 2009 15:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-810</guid>
		<description>Thanks! 
It&#039;s &quot;Bob Marley &amp; The Wailers&quot; or (just &quot;The Wailers&quot; until 1974) though, not &quot;Bob Marley&quot;, unless for a couple singles from 1962. :-D</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
It&#8217;s &#8220;Bob Marley &amp; The Wailers&#8221; or (just &#8220;The Wailers&#8221; until 1974) though, not &#8220;Bob Marley&#8221;, unless for a couple singles from 1962. :-D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raf82</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-304</link>
		<dc:creator>raf82</dc:creator>
		<pubDate>Mon, 22 Dec 2008 14:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-304</guid>
		<description>Very Useful post!
See also http://ubuntuforums.org/showthread.php?t=1013374 about removing APE tags which can lead to the same Rhythmbox behavior.</description>
		<content:encoded><![CDATA[<p>Very Useful post!<br />
See also <a href="http://ubuntuforums.org/showthread.php?t=1013374" rel="nofollow">http://ubuntuforums.org/showthread.php?t=1013374</a> about removing APE tags which can lead to the same Rhythmbox behavior.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russell</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-221</link>
		<dc:creator>Russell</dc:creator>
		<pubDate>Wed, 17 Sep 2008 21:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-221</guid>
		<description>Thanks a lot for this. i knew my mp3s had more than one ID3 tag but didn&#039;t know how to resolve it. Your solution in very helpful</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this. i knew my mp3s had more than one ID3 tag but didn&#8217;t know how to resolve it. Your solution in very helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mas7ro.p!no</title>
		<link>http://savvyadmin.com/rhythmbox-id3-tag-issues/comment-page-1/#comment-184</link>
		<dc:creator>mas7ro.p!no</dc:creator>
		<pubDate>Tue, 19 Aug 2008 11:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.savvyadmin.com/?p=60#comment-184</guid>
		<description>Thx mate, I really need this because I have the same issue, I write the tag with easytag but RB continues to display a wrong tag!

Thanks from Sicily :D</description>
		<content:encoded><![CDATA[<p>Thx mate, I really need this because I have the same issue, I write the tag with easytag but RB continues to display a wrong tag!</p>
<p>Thanks from Sicily :D</p>
]]></content:encoded>
	</item>
</channel>
</rss>

