How to save audio in .mat file
26 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi I'm a beginner in matlab and i want to save audio in .mat file how can i do that?
0 comentarios
Respuestas (1)
KSSV
el 20 de Abr. de 2017
y = rand(10000,1) ; % some random signal
Fs = 1100 ; % som frequency
save demo.mat ; % save the data into .mat file
clear y Fs % remove the variables
load demo.mat ;
filename = 'handel.wav';
audiowrite(filename,y,Fs);
[y,Fs] = audioread('handel.wav');
sound(y,Fs);
% clear sound
5 comentarios
Shreyan Basu Ray
el 5 de Oct. de 2021
@Soulaimene Jaoua change the extension from .wav to .mp3 by simply renaming the extension and then create the .mat file
Ver también
Categorías
Más información sobre Audio and Video Data en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!