Changeset 2415
- Timestamp:
- Jan 4, 2009 9:28:10 PM (16 years ago)
- Location:
- pjproject/trunk/tests/pjsua
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/tests/pjsua/mod_pesq.py
r2238 r2415 26 26 27 27 # PESQ configs 28 PESQ = "tools/pesq .exe" # PESQ executable path28 PESQ = "tools/pesq" # PESQ executable path 29 29 PESQ_DEFAULT_THRESHOLD = 3.4 # Default minimum acceptable PESQ MOS value 30 30 … … 126 126 fullcmd = PESQ + " " + pesq_sample_rate_opt + " " + input_filename + " " + output_filename 127 127 endpt.trace("Popen " + fullcmd) 128 pesq_proc = subprocess.Popen(fullcmd, s tdout=subprocess.PIPE, universal_newlines=True)128 pesq_proc = subprocess.Popen(fullcmd, shell=True, stdout=subprocess.PIPE, universal_newlines=True) 129 129 pesq_out = pesq_proc.communicate() 130 130 -
pjproject/trunk/tests/pjsua/tools
- Property svn:ignore
-
old new 1 p *.exe1 pe*
-
- Property svn:ignore
Note: See TracChangeset
for help on using the changeset viewer.