marytts.signalproc.effects.HMMF0AddEffect Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2007 DFKI GmbH.
* All Rights Reserved. Use is subject to license terms.
*
* This file is part of MARY TTS.
*
* MARY TTS is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
*/
package marytts.signalproc.effects;
import marytts.util.data.DoubleDataSource;
import marytts.util.math.MathUtils;
/**
* @author Oytun Türk
*/
public class HMMF0AddEffect extends BaseAudioEffect {
public float f0Add;
public static float NO_MODIFICATION = 0.0f;
public static float DEFAULT_F0_ADD = 50.0f;
public static float MAX_F0_ADD = 300.0f;
public static float MIN_F0_ADD = -300.0f;
public HMMF0AddEffect() {
super(16000);
setHMMEffect(true);
setExampleParameters("f0Add" + chParamEquals + Float.toString(DEFAULT_F0_ADD) + chParamSeparator);
}
public void parseParameters(String param) {
super.parseParameters(param);
f0Add = expectFloatParameter("f0Add");
if (f0Add == NULL_FLOAT_PARAM)
f0Add = DEFAULT_F0_ADD;
f0Add = MathUtils.CheckLimits(f0Add, MIN_F0_ADD, MAX_F0_ADD);
}
// Actual processing is done within the HMM synthesizer so do nothing here
public DoubleDataSource process(DoubleDataSource input) {
return input;
}
public String getHelpText() {
String strHelp = "F0 mean shifting effect for HMM voices:" + strLineBreak
+ "Shifts the mean F0 value by Hz for HMM voices." + strLineBreak + "Parameter:" + strLineBreak
+ " " + " Definition : F0 shift of mean value in Hz for synthesized speech output" + strLineBreak
+ " Range : [" + String.valueOf(MIN_F0_ADD) + "," + String.valueOf(MAX_F0_ADD) + "]" + strLineBreak
+ "Example:" + strLineBreak + getExampleParameters();
return strHelp;
}
public String getName() {
return "F0Add";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy