View Full Version : iTunes being a ***** - not recognising tags+repz
Blinger
07-03-2012, 10:06 PM
Hi guys.
My iTunes is being a *****/****/prostitute and not accepting my ID3 tags. I used a python script that I made in Linux to automatically rename about 200 songs ID3 tags which were missing. Windows show them fine, but iTunes is being a **** and not accepting the new tags! I've tried removing the songs and readding them but nothing happens. How can I fix this for all the songs?
Look at the image below :)
http://i.imgur.com/32mRY.png
Thread moved by Chris (Forum Super Moderator): From "Music", as it is better suited here!
Recursion
07-03-2012, 10:22 PM
I suspect your Python script added malformed IDv3 tags...
Blinger
07-03-2012, 10:31 PM
import getopt, string, re, sys, os, glob
from ID3 import *
path = './'
for infile in glob.glob( os.path.join(path, '*.mp3') ):
print "current file is: " + infile
print ' '
name = infile.split('./')
name = name[1]
# Get the first argument and add .mp3
id3info = ID3(name)
# Print the id3 information
print id3info
# Print a line breaker
print "---------"
name = name.split('-',3)
# Convert the title to the name
id3info['TITLE'] = name[1]
# Convert the Artist to the name
id3info['ARTIST'] = name[0]
# Write the id3 data
id3info.write()
# Print the data again
print id3info
pretty sure that was my code.. is there a decent batch renamer for windows than? My files are all named like this: Cheap Sober - The Hunt For Cash.mp3
Recursion
07-03-2012, 10:48 PM
import getopt, string, re, sys, os, glob
from ID3 import *
path = './'
for infile in glob.glob( os.path.join(path, '*.mp3') ):
print "current file is: " + infile
print ' '
name = infile.split('./')
name = name[1]
# Get the first argument and add .mp3
id3info = ID3(name)
# Print the id3 information
print id3info
# Print a line breaker
print "---------"
name = name.split('-',3)
# Convert the title to the name
id3info['TITLE'] = name[1]
# Convert the Artist to the name
id3info['ARTIST'] = name[0]
# Write the id3 data
id3info.write()
# Print the data again
print id3info
pretty sure that was my code.. is there a decent batch renamer for windows than? My files are all named like this: Cheap Sober - The Hunt For Cash.mp3
http://www.mp3tag.de/en/ works every single time for me.
Blinger
07-03-2012, 11:17 PM
Ah that's money. Cheers bud
Want to hide these adverts? Register an account for free!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.