i have to generate a quality score for speech files using an executable called pesq_tool.exe. i wanna do this using python for a number of speechfiles. i could achieve the task for one set of speech files as follows
import os
os.system("C:\P ython27\pesq_to ol.exe +16000 or105.wav dg105.wav")
as write above the tool takes three arguments, the first one is fixed and the other two are speech files to be given as input....