HidekiKawahara / legacy_STRAIGHT

A vocoder framework which had been widely used in research community since 1999.
Apache License 2.0
176 stars 43 forks source link
speech-analysis speech-synthesis vocoder

Legacy STRAIGHT

The legacy-STRAIGHT is a collection of speech analysis, modification and resynthesis tools.

Installation

Set MATLAB path to "src" directory.

Quick start

Paste the following code to MATLAB command window. It generates copy-synthesized output to the variable "syntheszed_signal".

[x, fs] = audioread('vaiueo2d.wav'); 
f0raw = MulticueF0v14(x,fs); 
ap = exstraightAPind(x,fs,f0raw);
n3sgram=exstraightspec(x,f0raw,fs);
syntheszed_signal = exstraightsynth(f0raw,n3sgram,ap,fs);

For running this using GNU Octave, please load signal package.

pkg load signal

Release note

Acknowledgment

The legacy-STRAIGHT was supported by many coauthors, contributors, and funding agencies.


Hideki Kawahara, July 16, 2018 (start date)