linear-predictive-speech-synth/lpss_play.m

9 lines
125 B
Matlab

%% lpss_play.m
%%
%% Load wav and play
close all;clear all;clc;
[y, Fs] = audioread('samples/ee.wav');
size(y)
sound(y, Fs)