Changeset 2417
- Timestamp:
- Jan 5, 2009 3:31:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/tests/pjsua/mod_pesq.py
r2415 r2417 13 13 import time 14 14 import imp 15 import os 15 16 import sys 16 17 import re … … 124 125 125 126 # Execute PESQ 126 fullcmd = PESQ+ " " + pesq_sample_rate_opt + " " + input_filename + " " + output_filename127 fullcmd = os.path.normpath(PESQ) + " " + pesq_sample_rate_opt + " " + input_filename + " " + output_filename 127 128 endpt.trace("Popen " + fullcmd) 128 129 pesq_proc = subprocess.Popen(fullcmd, shell=True, stdout=subprocess.PIPE, universal_newlines=True)
Note: See TracChangeset
for help on using the changeset viewer.