How to add .wav files?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to load the .wav files inside the file. How can I do it? https://www.mathworks.com/help/audio/ref/audiodatastore.html I'm using here, but I couldn't do it, I would be very happy if you could help me. I can't use fullfile().
ADS = audioDatastore('D:\BİTİRME PROJESİ\TIMIT\data\TRAIN\DR1\FCJF0','FileExtensions','.wav')
1 Kommentar
Cris LaPierre
am 16 Feb. 2022
Your syntax looks correct, so we need more details from you about what isn't working. Are you getting error messages? If so, please share the full message (all the red text). Otherwise, please give more details about why you couldn't do it, and why you couldn't use fullfile.
What happens if you move your wav files to a different location? Does if work if the files are on your desktop for example?
Antworten (1)
yanqi liu
am 16 Feb. 2022
yes,sir,may be use
ADS = audioDatastore('D:/BİTİRME PROJESİ/TIMIT/data/TRAIN/DR1','FileExtensions','.wav','IncludeSubfolders',true)
2 Kommentare
Walter Roberson
am 16 Feb. 2022
On Windows, you can use / or \ in file names (though I am not certain if you can use \\?/ or \??\ paths https://stackoverflow.com/questions/25090101/is-there-a-difference-between-and-paths )
IncludeSubfolders can make a meaningful difference, though.
Preeti Kuamari
am 27 Apr. 2022
bring TRAIN folder in the current directory where you are working in matlab and then this might help.
ads = audioDatastore('TRAIN','IncludeSubfolders',true,'LabelSource','foldernames','FileExtensions','.wav');
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB 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!