フィルターのクリア

how to separation channel on audio with FLAC format ?

4 ビュー (過去 30 日間)
Sisi Misi
Sisi Misi 2021 年 8 月 28 日
回答済み: Image Analyst 2021 年 8 月 28 日
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

回答 (1 件)

Image Analyst
Image Analyst 2021 年 8 月 28 日
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.

カテゴリ

Help Center および File ExchangeAudio I/O and Waveform Generation についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by