Reading audio file using GUI pushbutton and saving them to a folder

조회 수: 2 (최근 30일)
abidalkareem
abidalkareem 2016년 4월 30일
편집: CS Researcher 2016년 4월 30일
Hi everyone,
I'm trying to read multiple audio files using a simple GUI pushbutton, and saving the selected files into a folder for later processing, I hope you can help me how to achieve that.
This is my current code, I know its messy
[filename, Ttrain]=uigetfile('*.wav', 'Select a wave file');
if isequal(filename,0) || isequal(filename,0)
return % or whatever other action if 'CANCEL'
else
nwavfile=fullfile(Ttrain, filename);
wavwrite(i,fs,nbits,nwavfile);
end
cd(Ttrain);
rawdata1=load([Ttrain filename]);
guidata(hObject, handles);

답변 (2개)

Walter Roberson
Walter Roberson 2016년 4월 30일
You should not be using wavwrite(), that is for writing files. You need to read the data and save() it .
Or you should consider just copyfile() to the destination folder.

CS Researcher
CS Researcher 2016년 4월 30일
편집: CS Researcher 2016년 4월 30일
You can start with this and then continue:
[filename, pathname] = uigetfile('*.wav', 'Select a wave file','MultiSelect','on');
% Check if the user selected one file or multiple
if iscell(filename)
nfiles = length(filename);
nwavfile = cell(1,nfiles);
for i = 1:nfiles
nwavfile{1,i} = fullfile(pathname, filesep, filename{1,i});
%Enter the command to save nwavfile{1,i} here
end
else
nwavfile{1,1} = fullfile(pathname, filesep, filename);
%Enter the command to save nwavfile here
end
handles.nwavfile = nwavfile;
guidata(hObject, handles);

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by