how to separation channel on audio with FLAC format ?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi everyone
I wanna ask about, how to separation channel on audio with FLAC format ?
I have audio in FLAC format
This audio is 2 channels, and I want to separate the channels
And how to compare the results
is there a program to separate the channel?
thank you
0 Commenti
Risposte (1)
Image Analyst
il 28 Ago 2021
From the help for audioread():
load handel.mat
filename = 'handel.flac';
audiowrite(filename,y,Fs);
% Read only the first 2 seconds.
samples = [1,2*Fs];
clear y Fs
[y,Fs] = audioread(filename,samples);
% Play the samples.
sound(y,Fs);
Adapt as needed.
0 Commenti
Vedere anche
Categorie
Scopri di più su Audio I/O and Waveform Generation in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!