public static void main(String[] args) throws Exception { String strOutputFile = args[0].substring(0, args[0].length() - 4) + "_fdJavOld.wav"; String strPitchFile = args[0].substring(0, args[0].length() - 4) + ".ptc"; double[] pscales = { 1.2, 0.3 }; double[] tscales = { 1.5 }; double[] escales = { 1.0 }; double[] vscales = { 1.8, 0.4 }; FDPSOLAProcessorOld fd = new FDPSOLAProcessorOld(args[0], strPitchFile, strOutputFile, pscales, tscales, escales, vscales); fd.fdpsolaOnline(); } }
public static void main(String[] args) throws Exception { String strOutputFile = args[0].substring(0, args[0].length() - 4) + "_fdJavOld.wav"; String strPitchFile = args[0].substring(0, args[0].length() - 4) + ".ptc"; double[] pscales = { 1.2, 0.3 }; double[] tscales = { 1.5 }; double[] escales = { 1.0 }; double[] vscales = { 1.8, 0.4 }; FDPSOLAProcessorOld fd = new FDPSOLAProcessorOld(args[0], strPitchFile, strOutputFile, pscales, tscales, escales, vscales); fd.fdpsolaOnline(); } }