<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: PodNova code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Mon, 13 Oct 2008 19:46:08 GMT</pubDate>
    <description>DZone Snippets: PodNova code</description>
    <item>
      <title>Python id3 tag from containing folder</title>
      <link>http://snippets.dzone.com/posts/show/3509</link>
      <description>// Total noob python script for renaming the 'album' tag in an untagged mp3 file.  I plug it into podnova (using advanced -&gt; run command) as it downloads my podcasts so that they get sorted correctly when I copy them onto my ipod.&lt;br /&gt;&lt;br /&gt;PodNova organizes podcasts by folder.  the iPod organizes podcasts by album tag.  If you use GtkPod to copy podcasts from PodNova, this can help keep mp3 podcasts categorized properly.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;#!/usr/bin/python&lt;br /&gt;import sys&lt;br /&gt;&lt;br /&gt;# requires ID3 module, easily googled&lt;br /&gt;from ID3 import *&lt;br /&gt;for arg in sys.argv:&lt;br /&gt;    fullfilename = arg&lt;br /&gt;&lt;br /&gt;# This only works for mp3 files, I would love suggestions for mp4 tags&lt;br /&gt;id3info = ID3(fullfilename)&lt;br /&gt;&lt;br /&gt;# Print command useful for logging.&lt;br /&gt;print id3info&lt;br /&gt;&lt;br /&gt;# Check if album info exists&lt;br /&gt;if not id3info.has_key('ALBUM'):&lt;br /&gt;    print 'appending album tag'&lt;br /&gt;    # truncate to just containing directory:&lt;br /&gt;    folder = fullfilename[1:rfind(fullfilename,'/')]&lt;br /&gt;    # define album based on podcast's directory&lt;br /&gt;    album = (folder[rfind(folder,'/'):]).strip('/')&lt;br /&gt;    id3info.album = album&lt;br /&gt;    if id3info.album == album:&lt;br /&gt;        print 'success!'&lt;br /&gt;else:&lt;br /&gt;    print 'nothing to change'&lt;br /&gt;    &lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Tue, 13 Feb 2007 12:55:04 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/3509</guid>
      <author>dannyq (danny)</author>
    </item>
  </channel>
</rss>
