Chris Pomeroy
2017-08-10 e4e90adb4f162ef354c5b0a3052765aaf1239c9e
aaxConvert.py
@@ -22,7 +22,7 @@
def mungetrack(track):
    #Making sure the Track is correct
    # Making sure the Track is correct
    c = track.strip('Chapter ')
    c = c.zfill(2)
    return c
@@ -40,7 +40,7 @@
def getmetadatatags(key):
    #get specific data
    # get specific data
    tag = metadata['format']['tags'][key]
    return tag
@@ -65,6 +65,10 @@
                print output.strip()
        rc = process.poll()
        return rc
    else:
        process = subprocess.Popen(shlex.split(command), stderr=subprocess.PIPE, stdout=subprocess.PIPE)
        stderr, stdout = process.communicate()
    return