audioread>readaudio errors preventing auto review + classification functions #219
Unanswered
PenguinPeeps
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hey @PenguinPeeps, did you select the correct audio folder before trying to run these tools? It looks like audioread can't find the file path. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm hoping I can get some thoughts on this error thread below. I get this same error when I try to run an unsupervised and unsupervised classification, as well as when I try to batch reject by a score threshold. I've tried moving around some files to see if I can identify the issue, but the error is persistent regardless.
Error using audioread>readaudio
The filename specified was not found in the MATLAB path.
Error in audioread (line 160)
[y, Fs] = readaudio (filename, range, datatype);
Error in squeakData/AudioSamples (line 100)
obj.StoredSamples = audioread(obj.audiodata.Filename, [obj.AudioStartSample, obj.AudioStopSample]);
Error in CreateFocusSpectrogram (line 35)
audio = audioReader.AudioSamples(box(1), box(1) + box(3));
Error in Batch_Reject_by_Threshold_Callback (line 96)
[I,wind,noverlap,nfft,rate,box,
,,,,pow] = CreateFocusSpectrogram(Calls(i,:), handles, true, [], audioReader);Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in DeepSqueak (line 29)
gui_mainfcn(gui_State, varargin{:});
Error in matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)DeepSqueak('Batch_Reject_by_Threshold_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating Menu Callback.
Error using audioread>readaudio
The filename specified was not found in the MATLAB path.
Error in audioread (line 160)
[y, Fs] = readaudio (filename, range, datatype);
Error in squeakData/AudioSamples (line 100)
obj.StoredSamples = audioread(obj.audiodata.Filename, [obj.AudioStartSample, obj.AudioStopSample]);
Error in CreateFocusSpectrogram (line 35)
audio = audioReader.AudioSamples(box(1), box(1) + box(3));
Error in Batch_Reject_by_Threshold_Callback (line 96)
[I,wind,noverlap,nfft,rate,box,
,,,,pow] = CreateFocusSpectrogram(Calls(i,:), handles, true, [], audioReader);Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in DeepSqueak (line 29)
gui_mainfcn(gui_State, varargin{:});
Error in matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)DeepSqueak('Batch_Reject_by_Threshold_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating Menu Callback.
Beta Was this translation helpful? Give feedback.
All reactions