Respondida
I have a folder full of audio files and i want read files one by one and compute some parameters and store the result in a matrix any one plese help
Hi Kalyan, For this sort of task, consider using audioDatastore. For example, here is the code to point to a number of audio...

alrededor de 1 año hace | 0

Respondida
Recreating Sine Wave from pitch detection
Hi Hans, Here is some code that approximates what you want. It uses: audioOscillator to create a frequency-varying sine wave s...

alrededor de 1 año hace | 0

| aceptada

Respondida
Generate VST Plug-in from Simulink Model
Hi Michael, This is not possible yet. Today, you can use Audio Toolbox to generate VST plug-ins from MATLAB code: https://www....

alrededor de 1 año hace | 1

Respondida
looping in all audio files
audioDatastore can simplify this type of task. ads = audioDatastore(yourFolder); % Read all files, one by one, using a while...

alrededor de 1 año hace | 0

Respondida
Unexpected output of octaveFilter
Hi Leonard, The first thing to check is that your input is a column vector. octaveFilter treats each column of data as an ind...

alrededor de 1 año hace | 0

| aceptada

Respondida
i want to use LSTM based audio network to work with Live audio
Hi Arslan, audioDeviceReader supports multi-mic devices. Use the ChannelMappingSource and ChannelMapping properties to map betw...

alrededor de 1 año hace | 0

Respondida
i want to use LSTM based audio network to work with Live audio
Hi Arslan, There is a function in that repo (streamingClassifier) that should get the job done in conjunction with an audio dev...

alrededor de 1 año hace | 0

Respondida
Cannot find files or folders matching: 'C:\Users\Computer Complex\AppData\Local\Temp\free-spoken-digit-dataset-master\recordings'.
This dataset does not ship with the product. The introduction/description of this example should have the info on where to downl...

alrededor de 1 año hace | 0

| aceptada

Respondida
How to record audio for infinite time?
Hi Harsha, You can record for as long as you want with audioDeviceReader: deviceReader = audioDeviceReader; while 1 % for ex...

alrededor de 1 año hace | 0

Respondida
I want to stop my simulink code after 10 seconds of running
This should work: sim(modelname, 15)

alrededor de 1 año hace | 0

Respondida
why does the wave player Block in Simulink do this when i loop a sound and how can i fix it?
Hi ALCA, the From Multimedia File block has a 'Samples per audio channel' parameter. This determines the size of the frame. If...

alrededor de 1 año hace | 0

| aceptada

Respondida
record and analyse real-time audio
Hi Oskar, When working with real-time audio, you should consider audioDeviceWriter, audioDeviceReader and audioPlayerRecorder. ...

alrededor de 1 año hace | 0

| aceptada

Respondida
Expected audioIn to be one of these types: single, double Instead its type was cell.
Hi FOG, In this call to extract,trainAudio is a cell array: featuresTrain = extract(aFE,trainAudio); extract does not support...

más de 1 año hace | 0

Respondida
How to use getaudiodata() in Simulink?
Hi Ahmet, To interact with a microphone device in Simulink, use the Audio Device Reader block: https://www.mathworks.com/help/...

más de 1 año hace | 0

Respondida
Pre-trained network on the raspberry pi
Hi Joenam, This example might be helpful to you: Speech Command Recognition Code Generation on Raspberry Pi

más de 1 año hace | 0

Respondida
Labeling raw audio dataset
Hi Abdelhakim, Signal Labeler is the APP to use to label your audio data: https://www.mathworks.com/help/signal/ug/using-sig...

más de 1 año hace | 0

| aceptada

Respondida
Rewind - Fast Forward Button (Audio Player)
Hi Nikos, dsp.AudioFileReader has a ReadRange property that controls the range of samples you want to read. Here is an idea: ...

más de 1 año hace | 0

Respondida
What is the default normalization in plot of stft function in Short-time Fourier transform
Hi Muhammad, I beleive the plot you get with STFT uses log, so 20*log10(abs(S)+eps) is plotted.

más de 1 año hace | 1

| aceptada

Respondida
Saving images quickly for huge datasets
Hi Joenam, A couple of things I noticed in your code: 1) You rely on melSpectrogram to generate a plot for you, which is fin...

más de 1 año hace | 1

Respondida
Trying to convert whole folder into spectrograms
Hi Justine, consider using an audioDatastore to do this. then you don't have to write the for loop. for example: % This audioDa...

más de 1 año hace | 0

| aceptada

Respondida
VGGishPreprocess not accepting input
Hi Joshua, First, sorry we had a local funtion name with the same name as a function we ship. We are fixing this. The functi...

más de 1 año hace | 1

| aceptada

Respondida
Need help with Volume Slider GUI
Hi Nikos, Consider using audioDeviceWriter to play the audio, and dsp.AudioFileReader to read from the audio file. You do not...

más de 1 año hace | 0

| aceptada

Respondida
Speech To Text SAPI Offine mode
Hi Nikos, You can try out wav2vec 2.0. You can find a MATLAB implementation here: https://github.com/matlab-deep-learning/wav2...

más de 1 año hace | 1

| aceptada

Respondida
Audio Files in a Triggered Subsystem?
Hi Benjamin, You can't use this audio block in a triggered subsystem. You can try an enabled subsystem though. Both From Multim...

más de 1 año hace | 0

Respondida
Howto explore large collection of audio files with custom parameters display beside time and frequency domain graphs ?
Hi Robert, audioDatastore will help you manage a large number files. The signal analyzer app will help you visualize files, a...

más de 1 año hace | 0

Respondida
Recorded Audio is Shorter than Expected
Hi Xiwen, I suspect the scope is taking a long time to set up the first time you call it. Consider adding this code outside...

más de 1 año hace | 0

| aceptada

Respondida
How to extract VGGish features from audio files shorter than 1s?
Hi Robert-Valentin, The VGGIsh network accepts auditory spectrograms that correspond to roughly one second of audio, so you do ...

más de 1 año hace | 1

Respondida
How can I change the database and pretrained generator ?
Hi Aseel, The example starts off by showcasing the pretrained network. The network was trained to produce drum-like sounds. If ...

más de 1 año hace | 0

Respondida
For a network with 1 inputs and 1 output, the datastore read function must return a cell array with 2 columns, but it returns an cell array with 1 columns.
Hi Gudimalla, The training process typically expects a pair from the datastore: For classification problems, it expects a mel s...

más de 1 año hace | 1

| aceptada

Respondida
what should be the constraint on window length in function melspectrogram?
Hi Krishna, This looks fine. Make sure that your input x is a column vector, not a row vector. The function treats each column ...

más de 1 año hace | 0

| aceptada

Cargar más