How can I upload my own data to the Cocktail Party Source Separation Using Deep Learning Networks instance?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
studentmatlaber
am 25 Mai 2022
Kommentiert: studentmatlaber
am 27 Mai 2022
Hello everyone, I am sharing the link of the example. I want to upload my own audio files. How can I write this?
downloadFolder = matlab.internal.examples.downloadSupportFile("audio","CocktailPartySourceSeparation.zip");
dataFolder = tempdir;
unzip(downloadFolder,dataFolder)
dataset = fullfile(dataFolder,"CocktailPartySourceSeparation");
[mSpeech,Fs] = audioread(fullfile(dataset,"MaleSpeech-16-4-mono-20secs.wav"));
sound(mSpeech,Fs)
0 Kommentare
Akzeptierte Antwort
David Willingham
am 26 Mai 2022
Hi,
The first 4 lines can be ignored. Simply input your own file into the audioread command.
[mSpeech,Fs] = audioread("myaudiofile.wav"));
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Signal Processing Toolbox 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!