I need to apply blackmanharris window on an audio file (for framing with 50% overlap) and dft each frame?

2 views (last 30 days)
%audio file reading.
[input,Fs] = audioread('1.mp3');
% determine the number of rows/frames.
w_length=128;
m = length(input);
numFrames = floor((m-1)/w_length)+1;
% allocate memory to the frame matrix.
frameData = zeros(numFrames,w_length);
%Creating a blackmanHarris Window.
window_1=blackmanharris(numFrames,'periodic');
Kindly provide the assistance from here on-wards

Answers (0)

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!