Ignore:
Timestamp:
Jan 5, 2009 3:31:25 PM (15 years ago)
Author:
bennylp
Message:

-

File:
1 edited

Legend:

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

    r2415 r2417  
    1313import time 
    1414import imp 
     15import os 
    1516import sys 
    1617import re 
     
    124125 
    125126        # Execute PESQ 
    126         fullcmd = PESQ + " " + pesq_sample_rate_opt + " " + input_filename + " " + output_filename 
     127        fullcmd = os.path.normpath(PESQ) + " " + pesq_sample_rate_opt + " " + input_filename + " " + output_filename 
    127128        endpt.trace("Popen " + fullcmd) 
    128129        pesq_proc = subprocess.Popen(fullcmd, shell=True, stdout=subprocess.PIPE, universal_newlines=True) 
Note: See TracChangeset for help on using the changeset viewer.