frame
Functions
-
int main(int argc, char *argv[])
frame [ option ] [ infile ]
-l int
frame length
-p int
frame period
-n int
framing type
0
the beginning of data is the center of the first frame1
the beginning of data is the start of the first frame
-z
perform mean subtraction in a frame
infile str
double-type data sequence
stdout
double-type framed data sequence
If the input is
is even, the output is is frame period and . If-n 1
is specified, the output isThe below example extracts LPC coefficients with 25-ms length window and 5-ms shift.
frame -l 400 -p 80 < data.d | window -l 400 | lpc -l 400 > data.lpc
- Parameters:
argc – [in] Number of arguments.
argv – [in] Argument vector.
- Returns:
0 on success, 1 on failure.
See also