本文整理了Java中marytts.util.io.FileUtils.copy()
方法的一些代码示例,展示了FileUtils.copy()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtils.copy()
方法的具体详情如下:
包路径:marytts.util.io.FileUtils
类名称:FileUtils
方法名:copy
暂无
代码示例来源:origin: marytts/marytts
/**
* Sampling Rate Conversion doing with SOX.
*
* @param outpath
* @param targetSamplingRate
* @throws IOException
*/
private void samplingRateConverter(String waveFile, int targetSamplingRate) throws IOException {
Runtime rtime = Runtime.getRuntime();
String soxCommandLine = soxPath + " " + waveFile + " -r " + targetSamplingRate + " tempOut.wav";
Process process = rtime.exec(soxCommandLine);
try {
process.waitFor();
} catch (InterruptedException e) {
e.printStackTrace();
}
File outFile = new File("tempOut.wav");
if (!outFile.renameTo(new File(waveFile)))
FileUtils.copy(outFile.getAbsolutePath(), waveFile);
}
代码示例来源:origin: marytts/marytts
public static void copyFolderRecursive(String sourceFolder, String targetFolder, boolean bForceDeleteTarget)
throws IOException {
String fileSeparator = System.getProperty("file.separator");
if (exists(sourceFolder)) {
if (exists(targetFolder) && bForceDeleteTarget)
delete(targetFolder);
createDirectory(targetFolder);
if (exists(targetFolder)) {
String[] fileList = new File(sourceFolder).list();
if (fileList != null) {
for (int i = 0; i < fileList.length; i++) {
if (!fileList[i].startsWith(".")) {
String source = StringUtils.checkLastSlash(sourceFolder) + fileList[i];
if (new File(source).isDirectory()) {
String newTargetFolder = StringUtils.checkLastSlash(targetFolder) + fileList[i];
copyFolderRecursive(source, newTargetFolder, bForceDeleteTarget);
} else {
String targetFile = StringUtils.checkLastSlash(targetFolder) + fileList[i];
copy(source, targetFile);
}
}
}
}
} else
System.out.println("Could not create target folder!");
} else
System.out.println("Source folder does not exist!");
}
代码示例来源:origin: marytts/marytts
/**
* Sampling Rate Conversion doing with SOX.
*
* @param outpath
* @param targetSamplingRate
* @throws IOException
*/
private void samplingRateConverter(String waveFile, int targetSamplingRate) throws IOException {
Runtime rtime = Runtime.getRuntime();
String soxCommandLine = soxPath + " " + waveFile + " -r " + targetSamplingRate + " tempOut.wav";
Process process = rtime.exec(soxCommandLine);
try {
process.waitFor();
} catch (InterruptedException e) {
e.printStackTrace();
}
File outFile = new File("tempOut.wav");
if (!outFile.renameTo(new File(waveFile)))
FileUtils.copy(outFile.getAbsolutePath(), waveFile);
}
代码示例来源:origin: marytts/marytts
public static void copyFolderRecursive(String sourceFolder, String targetFolder, boolean bForceDeleteTarget)
throws IOException {
String fileSeparator = System.getProperty("file.separator");
if (exists(sourceFolder)) {
if (exists(targetFolder) && bForceDeleteTarget)
delete(targetFolder);
createDirectory(targetFolder);
if (exists(targetFolder)) {
String[] fileList = new File(sourceFolder).list();
if (fileList != null) {
for (int i = 0; i < fileList.length; i++) {
if (!fileList[i].startsWith(".")) {
String source = StringUtils.checkLastSlash(sourceFolder) + fileList[i];
if (new File(source).isDirectory()) {
String newTargetFolder = StringUtils.checkLastSlash(targetFolder) + fileList[i];
copyFolderRecursive(source, newTargetFolder, bForceDeleteTarget);
} else {
String targetFile = StringUtils.checkLastSlash(targetFolder) + fileList[i];
copy(source, targetFile);
}
}
}
}
} else
System.out.println("Could not create target folder!");
} else
System.out.println("Source folder does not exist!");
}
代码示例来源:origin: marytts/marytts
private void trimSilences(File wavFile) throws UnsupportedAudioFileException, IOException {
// We hard-code the values here. Use marytts.tools.voiceimport.EndpointDetector if you want to tune them.
int energyBufferLength = 20;
double speechStartLikelihood = 0.1;
double speechEndLikelihood = 0.1;
double shiftFromMinimumEnergyCenter = 0.0;
int numClusters = 4;
double minimumStartSilenceInSeconds = 0.5;
double minimumEndSilenceInSeconds = 0.5;
File tmpFile = new File("tmpAudio.wav");
AudioConverterUtils.removeEndpoints(wavFile.getAbsolutePath(), tmpFile.getAbsolutePath(), energyBufferLength,
speechStartLikelihood, speechEndLikelihood, shiftFromMinimumEnergyCenter, numClusters,
minimumStartSilenceInSeconds, minimumEndSilenceInSeconds);
if (!tmpFile.renameTo(wavFile))
FileUtils.copy(tmpFile.getAbsolutePath(), wavFile.getAbsolutePath());
}
}
代码示例来源:origin: marytts/marytts
private void trimSilences(File wavFile) throws UnsupportedAudioFileException, IOException {
// We hard-code the values here. Use marytts.tools.voiceimport.EndpointDetector if you want to tune them.
int energyBufferLength = 20;
double speechStartLikelihood = 0.1;
double speechEndLikelihood = 0.1;
double shiftFromMinimumEnergyCenter = 0.0;
int numClusters = 4;
double minimumStartSilenceInSeconds = 0.5;
double minimumEndSilenceInSeconds = 0.5;
File tmpFile = new File("tmpAudio.wav");
AudioConverterUtils.removeEndpoints(wavFile.getAbsolutePath(), tmpFile.getAbsolutePath(), energyBufferLength,
speechStartLikelihood, speechEndLikelihood, shiftFromMinimumEnergyCenter, numClusters,
minimumStartSilenceInSeconds, minimumEndSilenceInSeconds);
if (!tmpFile.renameTo(wavFile))
FileUtils.copy(tmpFile.getAbsolutePath(), wavFile.getAbsolutePath());
}
}
代码示例来源:origin: marytts/marytts
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
代码示例来源:origin: marytts/marytts
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
if (FileUtils.exists(tmpFileIn)) {
try {
FileUtils.copy(tmpFileIn, tmpFileOut);
} catch (IOException e) {
代码示例来源:origin: marytts/marytts
public static void copyFolder(String sourceFolder, String targetFolder, boolean bForceDeleteTarget) throws IOException {
if (exists(sourceFolder)) {
if (exists(targetFolder) && bForceDeleteTarget)
delete(targetFolder);
createDirectory(targetFolder);
if (exists(targetFolder)) {
String[] fileList = FileUtils.getFileList(sourceFolder, "*.*");
if (fileList != null) {
for (int i = 0; i < fileList.length; i++) {
String targetFile = StringUtils.checkLastSlash(targetFolder)
+ StringUtils.getFileName(fileList[i], false);
copy(fileList[i], targetFile);
}
}
} else
System.out.println("Could not create target folder!");
} else
System.out.println("Source folder does not exist!");
}
代码示例来源:origin: marytts/marytts
public static void copyFolder(String sourceFolder, String targetFolder, boolean bForceDeleteTarget) throws IOException {
if (exists(sourceFolder)) {
if (exists(targetFolder) && bForceDeleteTarget)
delete(targetFolder);
createDirectory(targetFolder);
if (exists(targetFolder)) {
String[] fileList = FileUtils.getFileList(sourceFolder, "*.*");
if (fileList != null) {
for (int i = 0; i < fileList.length; i++) {
String targetFile = StringUtils.checkLastSlash(targetFolder)
+ StringUtils.getFileName(fileList[i], false);
copy(fileList[i], targetFile);
}
}
} else
System.out.println("Could not create target folder!");
} else
System.out.println("Source folder does not exist!");
}
代码示例来源:origin: marytts/marytts
FileUtils.copy(targetWavFile, targetWavFile + ".wav");
inputAudioTgt = AudioSystem.getAudioInputStream(new File(targetWavFile + ".wav"));
} catch (UnsupportedAudioFileException e) {
代码示例来源:origin: marytts/marytts
FileUtils.copy(targetWavFile, targetWavFile + ".wav");
inputAudioTgt = AudioSystem.getAudioInputStream(new File(targetWavFile + ".wav"));
} catch (UnsupportedAudioFileException e) {
代码示例来源:origin: marytts/marytts
} else
FileUtils.copy(firstPassOutputWavFile, outputItem.audioFile);
代码示例来源:origin: marytts/marytts
} else
FileUtils.copy(firstPassOutputWavFile, outputItem.audioFile);
代码示例来源:origin: marytts/marytts
} else
FileUtils.copy(firstPassOutputWavFile, outputItem.audioFile);
代码示例来源:origin: marytts/marytts
} else
FileUtils.copy(firstPassOutputWavFile, outputItem.audioFile);
代码示例来源:origin: de.dfki.mary/marytts-builder
String path = gvInFile.getParent();
FileUtils.copy(gvInFile.getAbsolutePath(), path + "/tmp");
gvInFile = new File(path + "/tmp");
代码示例来源:origin: de.dfki.mary/marytts-builder
String path = pdfInFile.getParent();
FileUtils.copy(pdfInFile.getAbsolutePath(), path + "/tmp");
pdfInFile = new File(path + "/tmp");
代码示例来源:origin: de.dfki.mary/marytts-builder
for (int i = 0; i < 10; i++) {
basename = StringUtils.getFileName(feaFiles[i]);
FileUtils.copy(voiceDir + "hts/data/labels/full/" + basename + ".lab", voiceDir + "hts/data/labels/gen/gen_"
+ basename + ".lab");
代码示例来源:origin: de.dfki.mary/marytts-builder
FileUtils.copy(sourceScript, logF0ShellScript);
(new File(logF0ShellScript)).setExecutable(true);
FileUtils.copy(sourceScript, logF0TCLScript);
(new File(logF0TCLScript)).setExecutable(true);
FileUtils.copy(sourceScript, strShellScript);
(new File(strShellScript)).setExecutable(true);
FileUtils.copy(sourceScript, strTCLScript);
(new File(strTCLScript)).setExecutable(true);
FileUtils.copy(sourceScript, mgcShellScript);
(new File(mgcShellScript)).setExecutable(true);
FileUtils.copy(sourceScript, filterFile);
内容来源于网络,如有侵权,请联系作者删除!