Skip to content
Snippets Groups Projects
Commit ad618871 authored by YE Victor's avatar YE Victor
Browse files

Upload New File

parent 30903aec
Branches
No related tags found
No related merge requests found
clear; clc;
% On charge le son
[x, Fe] = audioread('piano_chord.wav');
% Paramètres
t_delay = 0.25;
g = 0.9;
K = 10;
% Application de l'effet delay filtré
y = effet_delay_filtre(x, t_delay, g, K, Fe);
% Lecture et sauvegarde
soundsc(y, Fe);
audiowrite('piano_delay_filtre.wav', y, Fe);
% Affichage
figure;
plot((1:length(y))/Fe, y);
xlabel('Temps (s)');
ylabel('Amplitude');
title('Signal piano avec effet de delay filtré (K=10)');
grid on;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment