9 lines
155 B
Python
Executable File
9 lines
155 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
import mutagen.apev2
|
|
for p in sys.argv:
|
|
try:
|
|
mutagen.apev2.delete(p)
|
|
except Exception, e:
|
|
print e
|