This commit is contained in:
Loic Delattre 2023-03-24 08:56:48 +01:00
parent f4088cb03f
commit c157ef5bb7
1 changed files with 11 additions and 0 deletions

11
speech_analysis.m Normal file
View File

@ -0,0 +1,11 @@
clear all
close all
clc
[y, fs] = audioread("sound/modulator22.wav");
plot(0:1/fs:(length(y)-1)/fs,y);
xlabel("Time (s)");
ylabel("Amplitude");
title("Sound Amplitude Over Time");
audiowrite("sound/output.wav", y, fs/2);