Estadísticas
0 Preguntas
160 Respuestas
0 Problemas
2 Soluciones
CLASIFICACIÓN
254
of 278.012
REPUTACIÓN
338
CONTRIBUCIONES
0 Preguntas
160 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
34
CLASIFICACIÓN
of 18.807
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
68.085
of 129.197
CONTRIBUCIONES
0 Problemas
2 Soluciones
PUNTUACIÓN
30
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Content Feed
ValidateAudioPlugin Error "Input series must be a numeric vector" in plugin
Hi Pedro, This error is thrown from the first line of your process method. To reproduce: v = myVocoder process(plugin,randn(2...
alrededor de 1 mes hace | 1
Is it posible to set 2 inputs in audio plugin?
Hi David, It is possible to design plugins with more than one input. Here is a simple example: classdef myPlugin < audioPlugin...
alrededor de 1 mes hace | 1
| aceptada
Text to speech Matlab Linux
Hi christopher, You can use the text2speech function (Audio Toolbox). You will need an internet connection, and an active s...
alrededor de 1 mes hace | 0
Running code on Raspberry Pi Zero 2W
Hi Dharmesh, Refer to the Raspberry Pi Support from MATLAB Coder. There is a video and code on that page about Prototyping Audi...
alrededor de 2 meses hace | 0
getting error while generating a audioPlugin
Hi Fransi, Can you try generating the plugin into a path that does not contain any spaces in its name?
alrededor de 2 meses hace | 0
Graphic Audio Equalizer Example
You might find this page helpful. Graphic Equalization
alrededor de 2 meses hace | 0
Storing 200GB audio spectrograms in a tall table, is this possible?
Hi David, Please find below a possible solution that uses Audio Toolbox functionality. It uses a sample dataset as an example. ...
3 meses hace | 1
| aceptada
How to use trainNetwork with transform datastore with multiple outputs?
Hi Noam, Check out this example: Transfer Learning with Pretrained Audio Networks in Deep Network Designer The example uses...
4 meses hace | 0
| aceptada
Split the channels using 'From Multimedia File'
Hi Hamda, The scope has an 'Input processing' parameter. You probably have it set as: Elements as channels (sample based) - ...
4 meses hace | 0
| aceptada
Running generated C-code returns error "Could not open library: libmwhostlibaudio.dylib"
Hi Jio, The audio device blocks have a dependency on a dll that ships with MATLAB. If you want to execute your generated code, ...
5 meses hace | 0
| aceptada
How to get the name of each file in the folder
If you have access to Audio Toolbox, using an audioDatastore might simplify this. Here is an example (make sure the function myC...
5 meses hace | 0
Error in Matlab Coder: "Property 'pBuffer.Cache' is undefined on some execution paths but is used inside the called function."
He Bernd, I suspect coder is not sure this while loop will ever be entered. This should work (I added a call to write outside t...
6 meses hace | 1
| aceptada
How to use few files from audioDatastore after reading the whole wav files?
Hi Krishna, You can use subset for this. Something like: ads = subset(ads,ads.Labels==1 || ads.Labels==2)
6 meses hace | 0
| aceptada
Matlab Audio Filter with changing Frequency
Hi Hans, Take a look at dsp.VariableBandwidthFIRFilter or dsp.VariableBandwidthIIRFIlter. They both support bandpass tunable fi...
6 meses hace | 0
creating the chorus effect without using a loop
Damien, Audio Toolbox has a Chorus object that might be helpful. See audiopluginexample.Chorus here. It is used in this example...
7 meses hace | 1
What "Window" value or size mean when using the audioFeatureExtractor function
Feature extraction operates along windows of audioIn: You first take the first 1024 samples of audioIn and process them, then yo...
7 meses hace | 1
| aceptada
Timestamp of Pitch in Audio file
The pitch function has a second output argument that returns the location of the corresponding pitch values in f0. [f0, loc]...
7 meses hace | 0
| aceptada
How to classify Speech feature using local datset
There are many classification examples you can go through as a staritng point. Here are two: Acoustics-Based Machine Fault Reco...
8 meses hace | 0
Audio Pitch Manipulation Through Time
you can use shiftPitch for this: %Read in an audio file and listen to it. [audioIn,fs] = audioread('Counting-16-44p1-mono-15se...
8 meses hace | 0
Voice Audio Data and Pitch Extraction
You can use the pitch function to get pitch values along with the time stamps [x,fs] = audioread("SingingAMajor-16-mono-18secs....
8 meses hace | 0
| aceptada
segmentation of 66s signal in 1s each
The buffer function can do this for you: fs = 16e3; x = randn(66*fs,1); y = buffer(x,fs);
8 meses hace | 0
how can i load multiple/all audio files(.wav) in matlab ? all files have different names.
I recommend using audioDatastore for such tasks: % specify your folder folder = fullfile(matlabroot,'toolbox','audio','samples...
8 meses hace | 0
Code generation error while using the Audio Toolbox
Hi Alberto, I see two issues here: 1) First, you have hit a limitation of dsp.FilterCascade. It does not support variable-size...
8 meses hace | 1
| aceptada
AudioBasedAnomalyDetectionForMachineHealthMonitoringExample.mlx
Hi Monique, Sorry about this error. Here is the correct link to get the zip file.
8 meses hace | 0
playing a nonstop audio file
You can use dsp.AudioFileReader with PlayCount set to Inf: afr = dsp.AudioFileReader('speech_dft.mp3','PlayCount',Inf); adw = ...
9 meses hace | 0
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...
10 meses hace | 0
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...
10 meses hace | 0
| aceptada
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....
10 meses hace | 1
looping in all audio files
audioDatastore can simplify this type of task. ads = audioDatastore(yourFolder); % Read all files, one by one, using a while...
10 meses hace | 0
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...
10 meses hace | 0
| aceptada