File size: 285 Bytes
7595a19
 
 
9aed6c2
 
 
5f7dd90
1
2
3
4
5
6
7
import subprocess

def masterAudio(inputPath,outputPath):
    try:
        master = subprocess.run(["node", "masteringModule/main.js", "--input", inputPath, "--output", outputPath])
    except subprocess.CalledProcessError as err:
        print("Error running Mastering Module: ", err)