This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -* - coding: utf-8 -*- | |
import argparse | |
import inspect | |
import eyed3 | |
import eyed3.id3 | |
def convertID3Encoding(audiofile, backup = False): | |
tag = audiofile.tag | |
if not tag: |