Ignore:
Timestamp:
Jan 4, 2009 9:28:10 PM (15 years ago)
Author:
bennylp
Message:

-

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/tests/pjsua/mod_pesq.py

    r2238 r2415  
    2626 
    2727# PESQ configs 
    28 PESQ = "tools/pesq.exe"                 # PESQ executable path 
     28PESQ = "tools/pesq"                     # PESQ executable path 
    2929PESQ_DEFAULT_THRESHOLD = 3.4            # Default minimum acceptable PESQ MOS value 
    3030 
     
    126126        fullcmd = PESQ + " " + pesq_sample_rate_opt + " " + input_filename + " " + output_filename 
    127127        endpt.trace("Popen " + fullcmd) 
    128         pesq_proc = subprocess.Popen(fullcmd, stdout=subprocess.PIPE, universal_newlines=True) 
     128        pesq_proc = subprocess.Popen(fullcmd, shell=True, stdout=subprocess.PIPE, universal_newlines=True) 
    129129        pesq_out  = pesq_proc.communicate() 
    130130 
Note: See TracChangeset for help on using the changeset viewer.