How to save audio in .mat file

29 Ansichten (letzte 30 Tage)
DSB
DSB am 20 Apr. 2017
Hi I'm a beginner in matlab and i want to save audio in .mat file how can i do that?

Antworten (1)

KSSV
KSSV am 20 Apr. 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 Kommentare
Soulaimene Jaoua
Soulaimene Jaoua am 15 Feb. 2021
how can I save it as MP3 file
Shreyan Basu Ray
Shreyan Basu Ray am 5 Okt. 2021
@Soulaimene Jaoua change the extension from .wav to .mp3 by simply renaming the extension and then create the .mat file

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Audio I/O and Waveform Generation finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by