stftlab4.m
Go to the documentation of this file.
1 function y = stftlab4(x, w, N, H, t)
2 % Analysis/synthesis of a sound using the peaks
3 % of the short-time fourier transform
4 % x: input sound, w: analysis window (odd size), N: FFT size, H: hop size,
5 % t: threshold in negative dB, y: output sound
6 M = length(w); % analysis window size
7 N2 = N/2+1; % size of positive spectrum
9 hM = (M-1)/2; % half analysis window size
10 pin = 1+hM; % initialize sound pointer at the middle of analysis window
12 fftbuffer = zeros(N,1); % initialize buffer for FFT
13 yw = zeros(M,1); % initialize output sound frame
14 y = zeros(soundlength,1); % initialize output array
15 w = w/sum(w); % normalize analysis window
16 sw = hanning(M); % synthesis window
17 sw = sw./sum(sw);
18 while pin<pend
19 %-----analysis-----%
20 xw = x(pin-hM:pin+hM).*w(1:M)'; % window the input sound
21 fftbuffer(:) = 0; % reset buffer
22 fftbuffer(1:(M+1)/2) = xw((M+1)/2:M); % zero-phase fftbuffer
23 fftbuffer(N-(M-1)/2+1:N) = xw(1:(M-1)/2);
24 X = fft(fftbuffer); % compute the FFT
25 mX = 20*log10(abs(X(1:N2))); % magnitude spectrum of positive frequencies
26 pX = unwrap(angle(X(1:N2))); % unwrapped phase spectrum
27 ploc = 1+find((mX(2:N2-1)>t).*(mX(2:N2-1)>mX(3:N2)).*(mX(2:N2-1)>mX(1:N2-2))); % peaks
28 [nploc,npmag,npphase] = peakinterp(mX,pX,ploc); % refine peak values. i use new parameters
29 %so that i can plot the new values at the figures existed
30 pmag = mX(ploc); % finding the magnitude of the obtained locations (peaks)
31 pphase = pX(ploc); % finding the phase of the obtained locations (peaks)
32 
33 % plotting the peak values on top of the magnitude and phase spectra at the
34 % magnitude and phase frame
35 
36 subplot(211);
37 plot(mX);
38 hold on
39 plot(ploc,pmag,'m*'); %m is for magenta color
40 plot(nploc,npmag,'c*'); %plot the new magnitude spectra
41 title('magnitude and peak values');
42 hold off
43 subplot(212);
44 plot(pX);
45 hold on
46 plot(ploc,pphase,'m*');
47 plot(nploc,npphase,'c*');
48 title('phase and peak values');
49 hold off
50 
51 end
Definition: start.py:1
initialize buffer for FFT yw
Definition: stftlab4.m:13
function y
Definition: stftlab4.m:1
magnitude spectrum pX
Definition: stft_peak.m:24
half analysis window size pin
Definition: stftlab4.m:10
title('Sinusoid at 1/4 the Spampling Rate')
N, 1 zeros()
plot(ejex, abs(X3),'*')
function ploc
Interpolated time axis hold on
FFT size for synthesis(even) H
#define sample
FFT of current buffer mX
Definition: stft_peak.m:23
About Git write you should know how to use GIT properly Luckily Git comes with excellent documentation git help man git shows you the available git< command > help man git< command > shows information about the subcommand< command > The most comprehensive manual is the website Git Reference visit they are quite exhaustive You do not need a special username or password All you need is to provide a ssh public key to the Git server admin What follows now is a basic introduction to Git and some FFmpeg specific guidelines Read it at least if you are granted commit privileges to the FFmpeg project you are expected to be familiar with these rules I if not You can get git from etc no matter how small Every one of them has been saved from looking like a fool by this many times It s very easy for stray debug output or cosmetic modifications to slip please avoid problems through this extra level of scrutiny For cosmetics only commits you should e g by running git config global user name My Name git config global user email my email which is either set in your personal configuration file through git config core editor or set by one of the following environment VISUAL or EDITOR Log messages should be concise but descriptive Explain why you made a what you did will be obvious from the changes themselves most of the time Saying just bug fix or is bad Remember that people of varying skill levels look at and educate themselves while reading through your code Don t include filenames in log Git provides that information Possibly make the commit message have a descriptive first an empty line and then a full description The first line will be used to name the patch by git format patch Renaming moving copying files or contents of making those normal commits mv cp path file otherpath otherfile git add[-A] git commit Do not rename or copy files of which you are not the maintainer without discussing it on the mailing list first Reverting broken commits git revert< commit > git revert will generate a revert commit This will not make the faulty commit disappear from the history git reset< commit > git reset will uncommit the changes till< commit > rewriting the current branch history git commit amend allows to amend the last commit details quickly git rebase i origin master will replay local commits over the main repository allowing to merge or remove some of them in the process Note that the reset
Definition: git-howto.txt:153
#define M(a, b)
Definition: vp3dsp.c:43
function t
Definition: stftlab4.m:1
pphase
Definition: stft_peak.m:27
window constants for m
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
Definition: log.c:77
end end
analysis window size N2
Definition: stftlab4.m:7
Plot spectral magnitude
function H
Definition: stftlab4.m:1
function w
Definition: stftlab4.m:1
frame
Definition: stft.m:14
Discrete Time axis x
#define zero
Definition: regdef.h:64
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame This method is called when a frame is wanted on an output For an input
phase spectrum(unwrapped) ploc
overlapping window(triangular window to avoid too much overlapping) ovidx
int size
if it could not because there are no more it should return AVERROR_EOF The typical implementation of request_frame for a filter with several inputs will look like that
clear max peak[Mmag2, Mloc2]
Definition: extra/TWM.m:16
use a maximum of peaks[f0, f0error]
Sampled sinusoid X
initialize sound pointer at the middle of analysis window pend
Definition: stftlab4.m:11
last sample to start a frame fftbuffer
Definition: stftlab4.m:12
size of positive spectrum soundlength
Definition: stftlab4.m:8
sound(x3, Fs)
subplot(3, 1, 1)
synthesis window for stochastic i
function pmag
fftbuffer, N fft()
function N
Definition: stftlab4.m:1
FFmpeg Automated Testing Environment ************************************Table of Contents *****************FFmpeg Automated Testing Environment Introduction Using FATE from your FFmpeg source directory Submitting the results to the FFmpeg result aggregation server FATE makefile targets and variables Makefile targets Makefile variables Examples Introduction **************FATE is an extended regression suite on the client side and a means for results aggregation and presentation on the server side The first part of this document explains how you can use FATE from your FFmpeg source directory to test your ffmpeg binary The second part describes how you can run FATE to submit the results to FFmpeg s FATE server In any way you can have a look at the publicly viewable FATE results by visiting this as it can be seen if some test on some platform broke with their recent contribution This usually happens on the platforms the developers could not test on The second part of this document describes how you can run FATE to submit your results to FFmpeg s FATE server If you want to submit your results be sure to check that your combination of OS and compiler is not already listed on the above mentioned website In the third part you can find a comprehensive listing of FATE makefile targets and variables Using FATE from your FFmpeg source directory **********************************************If you want to run FATE on your machine you need to have the samples in place You can get the samples via the build target fate rsync Use this command from the top level source this will cause FATE to fail NOTE To use a custom wrapper to run the pass target exec to configure or set the TARGET_EXEC Make variable Submitting the results to the FFmpeg result aggregation server ****************************************************************To submit your results to the server you should run fate through the shell script tests fate sh from the FFmpeg sources This script needs to be invoked with a configuration file as its first argument tests fate sh path to fate_config A configuration file template with comments describing the individual configuration variables can be found at doc fate_config sh template Create a configuration that suits your based on the configuration template The slot configuration variable can be any string that is not yet but it is suggested that you name it adhering to the following pattern< arch >< os >< compiler >< compiler version > The configuration file itself will be sourced in a shell therefore all shell features may be used This enables you to setup the environment as you need it for your build For your first test runs the fate_recv variable should be empty or commented out This will run everything as normal except that it will omit the submission of the results to the server The following files should be present in $workdir as specified in the configuration it may help to try out the ssh command with one or more v options You should get detailed output concerning your SSH configuration and the authentication process The only thing left is to automate the execution of the fate sh script and the synchronisation of the samples directory FATE makefile targets and variables *************************************Makefile can be set to
Definition: fate.txt:142
1:W2 xw()
static double c[64]
the buffer and buffer reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFilterBuffer structures They must not be accessed but through references stored in AVFilterBufferRef structures Several references can point to the same buffer
these buffered frames must be flushed immediately if a new input produces new output(Example:frame rate-doubling filter:filter_frame must(1) flush the second copy of the previous frame, if it is still there,(2) push the first copy of the incoming frame,(3) keep the second copy for later.) If the input frame is not enough to produce output
The official guide to swscale for confused that is
Definition: swscale.txt:2
const char int length
Definition: avisynth_c.h:668
for(j=16;j >0;--j)
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame This method is called when a frame is wanted on an output For an it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return values
length of input sound array hM
Definition: stftlab4.m:9
normalize analysis window sw
Definition: stftlab4.m:16