The Formulas

The key technique behind simple pitch shifting is that of playing the audio file either more slowly (to lower the pitch) or faster (to raise the pitch). This is just like spinning an old record at a speed different than the nominal RPM value.

In the digital world we can always simulate the effect of changing an analog playing speed by using fractional resampling; for a refresher on this technique please refer to Lecture 3.3.2 on Coursera. Resampling, however, has two problems:

  • the pitch of speech is changed but so is the overall speed, which we do not want;

  • the ratio of output to input samples for the operation is not one, so it cannot be implemented in real time.

To overcome these limitations, we can use granular synthesis: we split the input signal into chunks of a given length (the grains) and we perform resampling on each grain independently to produce a sequence of equal-length output grains.

Grain rate vs length

In order to implement granular synthesis in real time we need to take into account the concepts of grain length and grain stride. A grain should be long enough so that it contains enough pitched speech for resampling to work; but it should also be short enough so that it doesn't straddle too many different sounds in an utterance. Experimentally, the best results for speech are obtained using grains between 20 and 40ms.

The grain stride indicates the displacement in samples between successive grains and it is a function of grain length and of the overlap between successive grains. With no overlap, the grain stride is equal to the grain length; however, overlap between neighboring grains is essential to reduce the artifacts due to the segmentation. Overlapping output grains are blended together using a tapering window; the window is designed so that it performs linear interpolation between samples from overlapping grains.

Call ρ\rhothe amount of overlap (as a percentage) between neighboring grains. With ρ=0\rho = 0there is no overlap whereas with ρ=1\rho = 1all the samples in a grain overlap with another grain. The relationship between grain length LLand grain stride SSis L=(1+ρ)SL = (1+\rho)\,S. This is illustrated in the following figure for varying degrees of overlap and a stride ofS=100S=100samples; grains are represented using the shape of the appropriate tapering window:

Note that the stride is constant for any amount of overlap and that each grain starts at the same instants independently of overlap; this is the key observation that will allow us to implement granular synthesis in real time.

The grains' content

We can express the content of the kk-th output grain as

gk[m]=x(kS+αm),0m<Lg_k[m] = x(kS + \alpha m), \qquad 0 \leq m < L

wherex(t)x(t)is the interpolated, continuous-time version of the input signal andα\alphais the sampling rate change factor (with α<1\alpha < 1for subsampling, i.e. to lower the pitch, and α>1\alpha > 1for upsampling, i.e. to raise the pitch). Note that the kk-th grain starts at n=kSn=kSand is built using input data from n=kSn=kSas well.

In practice we will obviously perform local interpolation rather than full interpolation to continuous time, as explained in Lecture 3.3.2 on Coursera. Let t=kS+αmt=kS+\alpha mand set T=TT = \lfloor T \rfloorand τ=tT\tau = t - T; with this, the interpolation can be approximated as

gk[m](1τ)x[T]+τx[T+1].g_k[m] \approx (1-\tau)\,x[T] + \tau\, x[T+1].

Causality

Note that when we lower the voice's pitch (i.e. we implement the "Darth Vader" voice transformer), since α<1\alpha < 1, the computation of the output grains is strictly causal, that is, at any point in time we only need to access past input samples. Indeed, when we oversample, only a fraction of the grain's data will be used to regenerate its content; if a grain's length is, say, 100, and we are lowering the frequency by α=2/3\alpha=2/3, we will only need 2/3 of the grain's original data to build the new grain.

By contrast when we raise the pitch we are using subsampling, that is, samples are being discarded to create an output grain and so, to fill the grain, we will need to "look ahead" and borrow data from beyond the original grain's end boundary. The algorithm therefore is noncausal but, crucially, we can exactly quantify the amount of lookahead and handle it via buffering.

For instance, if we are raising the frequency by α=3/2\alpha=3/2 and our grain length is, say, 100 samples, we will need a buffer of 50 "future" samples; this can be accomplished by accepting an additional processing delay of 50 samples. The difference between over- and under-sampling is clear when we look at the illustration in the notebook that shows the input sample index as a function of the output sample index:

We will see in the next sections that buffering is required anyway in order to implement overlapping windows, so that the extra buffering required by subsampling will just be an extension of the general setup.

The tapering window

The tapering window is as long as the grain and it is shaped so that the overlapping grains are linearly interpolated. The left sloping part of the window is WWsamples long, with W=LS=ρS.W=L-S = \rho S. The tapering weights are therefore expressed by the formula:

w[n]={n/W0n<W1Wn<Sw[n] = \begin{cases} n/W & 0 \leq n < W \\ 1 & W \leq n < S \end{cases}

The output signal

The full output signal can be expressed in closed form by looking at the following picture, which shows the periodic pattern of overlapping grains:

Any output index nncan be written as:

n=kS+m,k,mZ,0m<S;n = kS + m, \qquad k, m \in \mathbb{Z}, 0 \leq m < S;

kk is the index of the current grain and mm is the index of the sample within the current grain. Note that the sample at nn is also the sample with index S+mS+m with respect to the previous grain. With this, the output at nnis the sum of the sample number mm from the current grain plus the sample number S+mS+mfrom the previous grain; both samples are weighed by the linear tapering slopew[]w[\cdot]:

y[n]=(1w[m])gk1[S+m]+w[m]gk[m]y[n] = (1-w[m])\,g_{k-1}[S+m] + w[m]\,g_k[m]

Buffering

Consider once again the grain computation pattern, periodic with period SS; let's use the index mm to indicate the current position inside the current pattern; as mm goes from zero to SS we need to compute:

  • gk[m]g_k[m] for all values of mm

  • gk1[S+m]g_{k-1}[S+m] for 0m<W0 \leq m < W (the tail of the previous grain).

Which audio samples do we need to have access to at any given time? Without loss of generality, consider the grain for k=0k = 0as in the following figure:

We need to compute:

  • g0[m]=x(αm)g_0[m] = x(\alpha m) for 0m<S0 \leq m < S

  • g1[S+m]=x(αm+(α1)S)g_{-1}[S+m] = x(\alpha m + (\alpha - 1)\,S) for 0m<W0 \leq m < W

If α1\alpha \leq 1 both expressions are causal so that we can use a standard buffer to store past values. The size of the buffer is determined by "how far" in the past we need to reach; in the limit, for α\alpha close to zero, we need to access x(S)x(-S) from m=Wm=W when we compute the end of the tapering section, so that, in the worst case, the buffer must be as long as the grain size L=S+WL = S+W. The overall processing delay of the voice changer in this case is equal to the size of the DMA transfer.

If α>1\alpha > 1, on the other hand, we need to also access future samples; this is of course not possible but we can circumvent the problem by introducing a larger processing delay. This is achieved by moving the input data pointer in the buffer further ahead with respect to the output data pointer. The maximum displacement between the current time and the future sample that we need takes place for m=Wm = W (i.e., at the end of the tapering slope) for which:

[αm+(α1)Sm]m=W=(α1)(S+W)=(α1)L[\alpha m + (\alpha -1)\,S - m ]_{m=W} = (\alpha - 1)(S+W) = (\alpha - 1)\,L

By offsetting the input and output pointers by D=(α1)LD = (\alpha -1)\,L samples, we can raise the pitch of the voice by α\alpha at the price of a processing delay equal to DDsamples.

TASK 1: Determine the maximum range for α\alpha if the size of the audio buffer is equal to the grain size LL.

Solutions

Are you ready to see the answer? :)

Last updated