Internal soundgen function called by addFormants
.addFormants(
audio,
formants,
spectralEnvelope = NULL,
zFun = NULL,
action = c("add", "remove")[1],
vocalTract = NA,
formantDep = 1,
formantDepStoch = 1,
formantWidth = 1,
formantCeiling = 2,
lipRad = 6,
noseRad = 4,
mouthOpenThres = 0,
mouth = NA,
temperature = 0.025,
formDrift = 0.3,
formDisp = 0.2,
smoothing = list(),
windowLength_points = 800,
overlap = 75,
normalize = TRUE,
play = FALSE,
...
)
a list returned by readAudio
either a character string like "aaui" referring to default
presets for speaker "M1" or a list of formant times, frequencies,
amplitudes, and bandwidths (see ex. below). formants = NA
defaults
to schwa. Time stamps for formants and mouthOpening can be specified in ms
or an any other arbitrary scale. See getSpectralEnvelope
for
more details
(optional): as an alternative to specifying formant frequencies, we can provide the exact filter - a vector of non-negative numbers specifying the power in each frequency bin on a linear scale (interpolated to length equal to windowLength_points/2). A matrix specifying the filter for each STFT step is also accepted. The easiest way to create this matrix is to call soundgen:::getSpectralEnvelope or to use the spectrum of a recorded sound
(optional) an arbitrary function to apply to the spectrogram prior to iSTFT, where "z" is the spectrogram - a matrix of complex values (see examples)
'add' = add formants to the sound, 'remove' = remove formants (inverse filtering)
the length of vocal tract, cm. Used for calculating formant
dispersion (for adding extra formants) and formant transitions as the mouth
opens and closes. If NULL
or NA
, the length is estimated
based on specified formant frequencies, if any (anchor format)
scale factor of formant amplitude (1 = no change relative
to amplitudes in formants
)
the amplitude of additional stochastic formants added above the highest specified formant, dB (only if temperature > 0)
scale factor of formant bandwidth (1 = no change)
frequency to which stochastic formants are calculated, in multiples of the Nyquist frequency; increase up to ~10 for long vocal tracts to avoid losing energy in the upper part of the spectrum
the effect of lip radiation on source spectrum, dB/oct (the default of +6 dB/oct produces a high-frequency boost when the mouth is open)
the effect of radiation through the nose on source spectrum,
dB/oct (the alternative to lipRad
when the mouth is closed)
open the lips (switch from nose radiation to lip
radiation) when the mouth is open >mouthOpenThres
, 0 to 1
mouth opening (0 to 1, 0.5 = neutral, i.e. no modification) (anchor format)
hyperparameter for regulating the amount of stochasticity in sound generation
scaling factors for the effect of temperature on formant drift and dispersal, respectively
scaling factors for the effect of temperature on formant drift and dispersal, respectively
a list of parameters passed to
getSmoothContour
to control the interpolation and smoothing
of contours: interpol (approx / spline / loess), loessSpan, discontThres,
jumpThres
length of FFT window, points
FFT window overlap, %. For allowed values, see
istft
if TRUE, normalizes the output to range from -1 to +1
other plotting parameters passed to spectrogram