You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(125) |
Nov
(7) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(9) |
Jun
(150) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(15) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(183) |
2010 |
Jan
|
Feb
(1) |
Mar
(26) |
Apr
(23) |
May
(4) |
Jun
(8) |
Jul
(9) |
Aug
(19) |
Sep
(6) |
Oct
(27) |
Nov
(5) |
Dec
(135) |
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
(22) |
May
(8) |
Jun
(8) |
Jul
(2) |
Aug
(12) |
Sep
(3) |
Oct
(13) |
Nov
(31) |
Dec
(40) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(27) |
Jul
(6) |
Aug
(19) |
Sep
(14) |
Oct
(8) |
Nov
(10) |
Dec
(82) |
2013 |
Jan
(12) |
Feb
(14) |
Mar
(11) |
Apr
(4) |
May
(2) |
Jun
(2) |
Jul
|
Aug
(11) |
Sep
(16) |
Oct
(2) |
Nov
(23) |
Dec
(86) |
2014 |
Jan
(1) |
Feb
(18) |
Mar
(5) |
Apr
(13) |
May
(2) |
Jun
(8) |
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(1) |
Dec
(65) |
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(2) |
Nov
(6) |
Dec
(41) |
2016 |
Jan
(2) |
Feb
(2) |
Mar
(3) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
(5) |
Aug
(8) |
Sep
(3) |
Oct
(26) |
Nov
(11) |
Dec
(45) |
2017 |
Jan
(12) |
Feb
(9) |
Mar
(4) |
Apr
(8) |
May
(20) |
Jun
(13) |
Jul
(18) |
Aug
(6) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
From: fujishita t. <fjs...@us...> - 2015-10-26 08:33:03
|
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv3397 Modified Files: cdist.tex Log Message: Modification of the formula Index: cdist.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/cdist.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** cdist.tex 12 Dec 2014 03:01:59 -0000 1.20 --- cdist.tex 26 Oct 2015 08:33:00 -0000 1.21 *************** *** 70,74 **** and the total cepstral distance between both files is \begin{displaymath} ! d=\frac{1}{T} \sum_{t=0}^{T} d(t) \end{displaymath} --- 70,74 ---- and the total cepstral distance between both files is \begin{displaymath} ! d=\frac{1}{T} \sum_{t=0}^{T-1} d(t) \end{displaymath} |
From: Takenori Y. <tak...@us...> - 2015-09-16 11:43:37
|
Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32310 Modified Files: Makefile fast_fourier_transform.h Added Files: fast_fourier_transform.cc Log Message: add FastFourierTransform class Index: fast_fourier_transform.h =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/fast_fourier_transform.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fast_fourier_transform.h 7 Aug 2015 06:22:07 -0000 1.1 --- fast_fourier_transform.h 16 Sep 2015 11:43:34 -0000 1.2 *************** *** 11,25 **** public: // ! FastFourierTransform(); // ! virtual ~FastFourierTransform(); ! // Set number of dimension and prepare sine table. ! // If number of dimension is not 2^n, return false. bool SetNumDimension(int num_dimension); // ! inline int GetNumDimension() const { return sine_table_.size(); } // --- 11,26 ---- public: // ! FastFourierTransform() : num_dimension_(0) {} // ! virtual ~FastFourierTransform() {} ! // Set the number of dimension and prepare the sine table. bool SetNumDimension(int num_dimension); // ! int GetNumDimension() const { ! return num_dimension_; ! } // *************** *** 37,40 **** --- 38,44 ---- // + int num_dimension_; + + // std::vector<double> sine_table_; }; --- NEW FILE: fast_fourier_transform.cc --- // Copyright 2015 Nagoya Institute of Technology #include <math.h> #include <string.h> #include "./fast_fourier_transform.h" namespace sptk { bool FastFourierTransform::SetNumDimension(int num_dimension) { // todo: following lines should generate an error message. if (num_dimension <= 4 || num_dimension & (num_dimension - 1)) return false; const int table_size(num_dimension - num_dimension / 4 + 1); const double argument(M_PI / num_dimension * 2); if (static_cast<size_t>(table_size) != sine_table_.size()) { sine_table_.resize(table_size); for (int i(0); i < table_size; ++i) { sine_table_[i] = sin(argument * i); } sine_table_[num_dimension / 2] = 0.0; } num_dimension_ = num_dimension; return true; } bool FastFourierTransform::Run( const std::vector<double>& real_part_input, const std::vector<double>& imaginary_part_input, std::vector<double>* real_part_output, std::vector<double>* imaginary_part_output) const { // check sine table (num_dimension_ is implicitly checked) if (sine_table_.empty()) return false; // check inputs if (static_cast<size_t>(num_dimension_) != real_part_input.size() || static_cast<size_t>(num_dimension_) != imaginary_part_input.size() || NULL == real_part_output || NULL == imaginary_part_output) return false; // prepare memories if (static_cast<size_t>(num_dimension_) != real_part_output->size()) real_part_output->resize(num_dimension_); if (static_cast<size_t>(num_dimension_) != imaginary_part_output->size()) imaginary_part_output->resize(num_dimension_); // get values std::copy(real_part_input.begin(), real_part_input.end(), real_part_output->begin()); std::copy(imaginary_part_input.begin(), imaginary_part_input.end(), imaginary_part_output->begin()); double *x(&((*real_part_output)[0])); double *y(&((*imaginary_part_output)[0])); // set values const int half_num_dimension(num_dimension_ / 2); const int dec_num_dimension(num_dimension_ - 1); int lix(num_dimension_); int lmx(half_num_dimension); int lf(1); while (lmx > 1) { double *sinp(const_cast<double *>(&(sine_table_[0]))); double *cosp(const_cast<double *>(&(sine_table_[0])) + num_dimension_ / 4); for (int i(0); i < lmx; ++i) { double *xpi(&x[i]); double *ypi(&y[i]); for (int li(lix); li <= num_dimension_; li += lix) { const double t1(*(xpi) - *(xpi + lmx)); const double t2(*(ypi) - *(ypi + lmx)); *(xpi) += *(xpi + lmx); *(ypi) += *(ypi + lmx); *(xpi + lmx) = *cosp * t1 + *sinp * t2; *(ypi + lmx) = *cosp * t2 - *sinp * t1; xpi += lix; ypi += lix; } sinp += lf; cosp += lf; } lix = lmx; lmx /= 2; lf *= 2; } double *xp(x); double *yp(y); for (int li(half_num_dimension); li--; xp += 2, yp += 2) { const double t1(*(xp) - *(xp + 1)); const double t2(*(yp) - *(yp + 1)); *(xp) += *(xp + 1); *(yp) += *(yp + 1); *(xp + 1) = t1; *(yp + 1) = t2; } // bit reversal xp = x; yp = y; int j(0); for (int lmx(0); lmx < dec_num_dimension; ++lmx) { int lmxj(lmx - j); if (lmxj < 0) { const double t1 = *(xp); const double t2 = *(yp); *(xp) = *(xp + lmxj); *(yp) = *(yp + lmxj); *(xp + lmxj) = t1; *(yp + lmxj) = t2; } int li(half_num_dimension); while (li <= j) { j -= li; li /= 2; } j += li; xp = x + j; yp = y + j; } return true; } } // namespace sptk Index: Makefile =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 7 Aug 2015 05:09:24 -0000 1.1 --- Makefile 16 Sep 2015 11:43:34 -0000 1.2 *************** *** 2,7 **** TARGET = libsptk.a ! SOURCES = frequency_transform.cc \ ! frequency_transform.h OBJECTS = $(SOURCES:.cc=.o) --- 2,9 ---- TARGET = libsptk.a ! SOURCES = fast_fourier_transform.cc \ ! fast_fourier_transform.h \ ! frequency_transform.cc \ ! frequency_transform.h \ OBJECTS = $(SOURCES:.cc=.o) |
From: Keiichiro O. <ur...@us...> - 2015-08-26 02:16:42
|
Update of /cvsroot/sp-tk/SPTK/src/bin/vc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6005/bin/vc Modified Files: _vc.c vc.c Log Message: apply patch by Kazuhiro Nakamura: fix vc command Index: vc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vc/vc.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** vc.c 11 Dec 2014 08:30:51 -0000 1.10 --- vc.c 26 Aug 2015 02:16:39 -0000 1.11 *************** *** 82,97 **** #ifdef HAVE_STRING_H ! # include <string.h> #else ! # include <strings.h> ! # ifndef HAVE_STRRCHR ! # define strrchr rindex ! # endif #endif #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif --- 82,97 ---- #ifdef HAVE_STRING_H ! #include <string.h> #else ! #include <strings.h> ! #ifndef HAVE_STRRCHR ! #define strrchr rindex ! #endif #endif #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif *************** *** 219,223 **** DEF_M, total_frame = 0; char *coef = NULL, **dw_fn = (char **) getmem(argc, sizeof(*(dw_fn))); ! int j, k, dw_num = 1, dw_calccoef = -1, dw_coeflen = 1, win_max_width = 0; double floor = FLOOR; double *source = NULL, *target = NULL, *gv_mean = NULL, *gv_vari = NULL; --- 219,223 ---- DEF_M, total_frame = 0; char *coef = NULL, **dw_fn = (char **) getmem(argc, sizeof(*(dw_fn))); ! int j, k, m, dw_num = 1, dw_calccoef = -1, dw_coeflen = 1, win_max_width = 0; double floor = FLOOR; double *source = NULL, *target = NULL, *gv_mean = NULL, *gv_vari = NULL; *************** *** 483,486 **** --- 483,497 ---- window.win_max_width = win_max_width; + for (m = 0; m < gmm.nmix; m++) { + invert(gmm.gauss[m].cov, gmm.gauss[m].inv, source_vlen * window.win_size); + if (full) { + gmm.gauss[m].gconst = + cal_gconstf(gmm.gauss[m].cov, source_vlen * window.win_size); + } else { + gmm.gauss[m].gconst = + cal_gconst(gmm.gauss[m].var, source_vlen * window.win_size); + } + } + /* perform conversion */ vc(&gmm, &window, total_frame, source_vlen, target_vlen, gv_mean, gv_vari, Index: _vc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/vc/_vc.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** _vc.c 11 Dec 2014 08:30:51 -0000 1.6 --- _vc.c 26 Aug 2015 02:16:39 -0000 1.7 *************** *** 56,62 **** #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif --- 56,62 ---- #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif |
From: Takenori Y. <tak...@us...> - 2015-08-07 06:22:09
|
Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32257 Added Files: fast_fourier_transform.h Log Message: add fast_fourier_transform.h --- NEW FILE: fast_fourier_transform.h --- // Copyright 2015 Nagoya Institute of Technology #ifndef SPTK_SRC_FAST_FOURIER_TRANSFORM_H_ #define SPTK_SRC_FAST_FOURIER_TRANSFORM_H_ #include <vector> namespace sptk { class FastFourierTransform { public: // FastFourierTransform(); // virtual ~FastFourierTransform(); // Set number of dimension and prepare sine table. // If number of dimension is not 2^n, return false. bool SetNumDimension(int num_dimension); // inline int GetNumDimension() const { return sine_table_.size(); } // bool Run(const std::vector<double>& real_part_input, const std::vector<double>& imaginary_part_input, std::vector<double>* real_part_output, std::vector<double>* imaginary_part_output) const; private: // explicit FastFourierTransform(const FastFourierTransform&); // FastFourierTransform& operator=(const FastFourierTransform&); // std::vector<double> sine_table_; }; } // namespace sptk #endif // SPTK_SRC_FAST_FOURIER_TRANSFORM_H_ |
From: Keiichiro O. <ur...@us...> - 2015-05-21 08:30:27
|
Update of /cvsroot/sp-tk/SPTK/src/bin/root_pol In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11721/bin/root_pol Modified Files: _root_pol.c Log Message: fix a bug about memory allocation in root_pol: suggested by Ian Chen. Index: _root_pol.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/root_pol/_root_pol.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** _root_pol.c 11 Dec 2014 08:30:49 -0000 1.17 --- _root_pol.c 21 May 2015 08:30:25 -0000 1.18 *************** *** 76,82 **** #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif --- 76,82 ---- #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif *************** *** 198,202 **** complex cden, cnum, c1, *deltx; ! deltx = cplx_getmem(odr); if (!a_zero) --- 198,202 ---- complex cden, cnum, c1, *deltx; ! deltx = cplx_getmem(odr + 1); if (!a_zero) |
From: Keiichiro O. <ur...@us...> - 2015-05-08 05:15:51
|
Update of /cvsroot/sp-tk/SPTK/src/bin/rawtowav In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1061 Modified Files: rawtowav.c Log Message: fix wrong message in rawtowav: suggested by Celsius813. Index: rawtowav.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/rawtowav/rawtowav.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** rawtowav.c 11 Dec 2014 08:30:49 -0000 1.13 --- rawtowav.c 8 May 2015 05:15:48 -0000 1.14 *************** *** 49,53 **** * 2009.9 A.Saito modified * * usage: * ! * rawtowav [ fs(Hz) ] [ infile ] [ outfile ] * * infile: * * raw file format * --- 49,53 ---- * 2009.9 A.Saito modified * * usage: * ! * rawtowav [ fs(Hz) ] [ bit ] [ infile ] [ outfile ] * * infile: * * raw file format * *************** *** 60,66 **** #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif --- 60,66 ---- #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif *************** *** 138,142 **** printf("rawtowav : convert raw to wav\n"); printf("usage:\n"); ! printf(" rawtowav [ fs(Hz) ] [ infile ] [ outfile ]\n"); exit(0); } --- 138,142 ---- printf("rawtowav : convert raw to wav\n"); printf("usage:\n"); ! printf(" rawtowav [ fs(Hz) ] [ bit ] [ infile ] [ outfile ]\n"); exit(0); } |
From: Takashi A. <art...@us...> - 2015-03-05 02:55:32
|
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv3450 Modified Files: vc.tex Log Message: fix the example of reference about vc. Index: vc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/vc.tex,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** vc.tex 12 Dec 2014 03:02:00 -0000 1.10 --- vc.tex 5 Mar 2015 02:55:30 -0000 1.11 *************** *** 360,377 **** \begin{qsection}{EXAMPLE} In the following example, the source and target features (24-th order Mel-cepstrum ! coefficients) are extracted from the file {\em source.raw} and the file {\em ! target.raw} of raw (short) format. These extracted features are automatically ! aligned and concatenated by {\em dtw} command, which can carry out dynamic time ! warping. The GMM of the joint features is trained and its parameters are saved as {\em source\_target.gmm}. \begin{quote} \verb!x2x +sf < source.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 > source.mcep ! \\ \verb!x2x +sf < target.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 > target.mcep ! \\ ! \verb!dtw -l 25 -p 5 -n 2 target.mcep < source.mcep | \! \\ ! \verb! gmm -l 50 -m 2 -f > source_target.gmm! \end{quote} Using the {\em source\_target.gmm} and the source features extracted from the file --- 360,380 ---- \begin{qsection}{EXAMPLE} In the following example, the source and target features (24-th order Mel-cepstrum ! coefficients) and dynamic features are extracted from ! the file {\em source.raw} and the file {\em target.raw} of raw (short) format. ! These extracted features are automatically aligned and concatenated ! by {\em dtw} command, which can carry out dynamic time warping. ! The GMM of the joint features is trained and its parameters are saved as {\em source\_target.gmm}. \begin{quote} \verb!x2x +sf < source.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 | \! \\ ! \verb! delta -m 24 -r 1 1 > source.mcep.delta ! \\ \verb!x2x +sf < target.raw | frame -l 400 -p 80 | \! \\ \verb! window -l 400 -L 1024 -w 0 | \! \\ ! \verb! mcep -l 1024 -m 24 -a 0.42 | \! \\ ! \verb! delta -m 24 -r 1 1 > target.mcep.delta ! \\ ! \verb!dtw -l 50 -p 5 -n 2 target.mcep.delta < source.mcep.delta | \! \\ ! \verb! gmm -l 100 -m 2 -f > source_target.gmm! \end{quote} Using the {\em source\_target.gmm} and the source features extracted from the file *************** *** 406,409 **** --- 409,413 ---- \begin{qsection}{SEE ALSO} + \hyperlink{delta}{delta}, \hyperlink{dtw}{dtw}, \hyperlink{gmm}{gmm}, |
From: Keiichiro O. <ur...@us...> - 2014-12-30 06:29:52
|
Update of /cvsroot/sp-tk/SPTK/src/lib In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7260/lib Modified Files: theq.c Log Message: fix a bug in theq() suggested by Ryuichi Yamamoto. Index: theq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/lib/theq.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** theq.c 11 Dec 2014 08:30:53 -0000 1.20 --- theq.c 30 Dec 2014 06:29:49 -0000 1.21 *************** *** 299,303 **** } if (n > size) { ! for (i = 0; i < n; i++) { free((char *) r[i]); free((char *) x[i]); --- 299,303 ---- } if (n > size) { ! for (i = 0; i < size; i++) { free((char *) r[i]); free((char *) x[i]); |
From: Keiichiro O. <ur...@us...> - 2014-12-25 03:35:28
|
Update of /cvsroot/sp-tk/SPTK/htdocs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32070 Modified Files: index.html readme.php Log Message: update html Index: index.html =================================================================== RCS file: /cvsroot/sp-tk/SPTK/htdocs/index.html,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** index.html 19 Dec 2013 01:35:54 -0000 1.27 --- index.html 25 Dec 2014 03:35:26 -0000 1.28 *************** *** 14,19 **** <div class=head> Speech Signal Processing Toolkit (SPTK)<br> ! Version 3.7<br> ! December 25, 2013 </div> --- 14,19 ---- <div class=head> Speech Signal Processing Toolkit (SPTK)<br> ! Version 3.8<br> ! December 25, 2014 </div> *************** *** 57,68 **** <ul> <li><a href="readme.php">README</a> (included in the source code)<br> ! <li>Source Code: <a href="http://downloads.sourceforge.net/sp-tk/SPTK-3.7.tar.gz"><img src="image/download16.png" width=16 height=16 alt="download">SPTK-3.7.tar.gz</a> (updated at December 25, 2013.)<br> ! <li>Reference Manual: <a href="http://downloads.sourceforge.net/sp-tk/SPTKref-3.7.pdf"><img src="image/download16.png" width=16 height=16 alt="download">SPTKref-3.7.pdf</a><br> <li>"Examples for using SPTK": <a ! href="http://downloads.sourceforge.net/sp-tk/SPTKexamples-3.7.pdf"><img src="image/download16.png" width=16 height=16 alt="download">SPTKexamples-3.7.pdf</a> <li>speech data used in EXAMPLE (``little endian'' (intel, etc.)): ! <a href="http://downloads.sourceforge.net/sp-tk/SPTKexamples-data-3.7.tar.gz"> <img src="image/download16.png" width=16 height=16 alt="download"> ! SPTKexamples-data-3.7.tar.gz</a><br> </ul> <hr> --- 57,68 ---- <ul> <li><a href="readme.php">README</a> (included in the source code)<br> ! <li>Source Code: <a href="http://downloads.sourceforge.net/sp-tk/SPTK-3.8.tar.gz"><img src="image/download16.png" width=16 height=16 alt="download">SPTK-3.8.tar.gz</a> (updated at December 25, 2014.)<br> ! <li>Reference Manual: <a href="http://downloads.sourceforge.net/sp-tk/SPTKref-3.8.pdf"><img src="image/download16.png" width=16 height=16 alt="download">SPTKref-3.8.pdf</a><br> <li>"Examples for using SPTK": <a ! href="http://downloads.sourceforge.net/sp-tk/SPTKexamples-3.8.pdf"><img src="image/download16.png" width=16 height=16 alt="download">SPTKexamples-3.8.pdf</a> <li>speech data used in EXAMPLE (``little endian'' (intel, etc.)): ! <a href="http://downloads.sourceforge.net/sp-tk/SPTKexamples-data-3.8.tar.gz"> <img src="image/download16.png" width=16 height=16 alt="download"> ! SPTKexamples-data-3.8.tar.gz</a><br> </ul> <hr> *************** *** 84,88 **** <address> ! Last modified: December 25, 2013 </address> --- 84,88 ---- <address> ! Last modified: December 25, 2014 </address> Index: readme.php =================================================================== RCS file: /cvsroot/sp-tk/SPTK/htdocs/readme.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** readme.php 19 Dec 2013 01:35:54 -0000 1.14 --- readme.php 25 Dec 2014 03:35:26 -0000 1.15 *************** *** 14,19 **** <div class=head> Speech Signal Processing Toolkit (SPTK)<br> ! Version 3.7<br> ! December 25, 2013 </div> <h2>README</h2> --- 14,19 ---- <div class=head> Speech Signal Processing Toolkit (SPTK)<br> ! Version 3.8<br> ! December 25, 2014 </div> <h2>README</h2> |
From: Keiichiro O. <ur...@us...> - 2014-12-25 03:10:02
|
Update of /cvsroot/sp-tk/SPTK/examples/doc/wav In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31471/wav Added Files: converted_maleB.wav converted_maleB_1.wav source_maleA.wav target_maleB.wav test_maleA.wav Log Message: update examples and add wav files. --- NEW FILE: converted_maleB_1.wav --- (This appears to be a binary file; contents omitted.) --- NEW FILE: target_maleB.wav --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_maleA.wav --- (This appears to be a binary file; contents omitted.) --- NEW FILE: converted_maleB.wav --- (This appears to be a binary file; contents omitted.) --- NEW FILE: test_maleA.wav --- (This appears to be a binary file; contents omitted.) |
From: Keiichiro O. <ur...@us...> - 2014-12-25 03:10:01
|
Update of /cvsroot/sp-tk/SPTK/examples/doc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31471 Modified Files: examples.tex Log Message: update examples and add wav files. Index: examples.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/examples/doc/examples.tex,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** examples.tex 20 Oct 2014 08:24:47 -0000 1.27 --- examples.tex 25 Dec 2014 03:09:59 -0000 1.28 *************** *** 10,14 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 10,14 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % *************** *** 49,53 **** bookmarkstype=toc, pdfauthor={SPTK working group}, ! pdftitle={Examples for using SPTK ver. 3.7}] {hyperref} \usepackage[dvipdfm]{graphicx,color,movie15} --- 49,53 ---- bookmarkstype=toc, pdfauthor={SPTK working group}, ! pdftitle={Examples for using SPTK ver. 3.8}] {hyperref} \usepackage[dvipdfm]{graphicx,color,movie15} *************** *** 60,68 **** \title{ Examples for Using Speech Signal Processing Toolkit\\ ! Ver. 3.7} \author{SPTK working group} ! \date{December 25, 2013} \begin{document} --- 60,68 ---- \title{ Examples for Using Speech Signal Processing Toolkit\\ ! Ver. 3.8} \author{SPTK working group} ! \date{December 25, 2014} \begin{document} |
From: Keiichiro O. <ur...@us...> - 2014-12-25 02:41:41
|
Update of /cvsroot/sp-tk/SPTK/src/bin/lsp2lpc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30689/bin/lsp2lpc Modified Files: lsp2lpc.c Log Message: fix code format. Index: lsp2lpc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/lsp2lpc/lsp2lpc.c,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** lsp2lpc.c 11 Dec 2014 08:30:40 -0000 1.35 --- lsp2lpc.c 25 Dec 2014 02:41:38 -0000 1.36 *************** *** 73,78 **** ************************************************************************/ ! static char *rcs_id = ! "$Id$"; --- 73,77 ---- ************************************************************************/ ! static char *rcs_id = "$Id$"; |
Update of /cvsroot/sp-tk/SPTK/doc/ref_e In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28615 Modified Files: Makefile.in acep.tex acorr.tex agcep.tex amcep.tex average.tex b2mc.tex bcp.tex bcut.tex bell.tex bmdefines.tex c2acr.tex c2ir.tex c2ndps.tex c2sp.tex cat2.tex cdist.tex clip.tex cmndref.sty configure configure.ac da.tex dawrite.tex dct.tex decimate.tex delay.tex delta.tex df2.tex dfs.tex dmp.tex ds.tex dtw.tex echo2.tex excite.tex extract.tex fd.tex fdrw.tex fft.tex fft2.tex fftcep.tex fftr.tex fftr2.tex fig.tex frame.tex freqt.tex gc2gc.tex gcep.tex glogsp.tex glsadf.tex gmm.tex gmmp.tex gnorm.tex grlogsp.tex grpdelay.tex gseries.tex gwave.tex histogram.tex idct.tex ifft.tex ifft2.tex ifftr.tex ignorm.tex impulse.tex imsvq.tex interpolate.tex ivq.tex lbg.tex levdur.tex linear_intpl.tex lmadf.tex lpc.tex lpc2c.tex lpc2lsp.tex lpc2par.tex lsp2lpc.tex lsp2sp.tex lspcheck.tex lspdf.tex ltcdf.tex main.tex mc2b.tex mcep.tex merge.tex mfcc.tex mgc2mgc.tex mgc2mgclsp.tex mgc2sp.tex mgcep.tex mgclsp2mgc.tex mglsadf.tex minmax.tex mlpg.tex mlsacheck.tex mlsadf.tex msvq.tex nan.tex ndps2c.tex norm0.tex nrand.tex par2lpc.tex pca.tex pcas.tex phase.tex pitch.tex poledf.tex psgr.tex ramp.tex raw2wav.tex ref.tex reverse.tex rmse.tex root_pol.tex sin.tex smcep.tex snr.tex sopr.tex spec.tex step.tex swab.tex symmetrize.tex train.tex transpose.tex uels.tex ulaw.tex us.tex us16.tex uscd.tex vc.tex vopr.tex vq.tex vstat.tex vsum.tex wav2raw.tex wavjoin.tex wavsplit.tex window.tex x2x.tex xgr.tex zcross.tex zerodf.tex Log Message: update docs Index: msvq.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/msvq.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** msvq.tex 3 Dec 2014 09:01:39 -0000 1.16 --- msvq.tex 12 Dec 2014 03:02:00 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: vc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/vc.tex,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** vc.tex 11 Dec 2014 02:43:57 -0000 1.9 --- vc.tex 12 Dec 2014 03:02:00 -0000 1.10 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: impulse.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/impulse.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** impulse.tex 3 Dec 2014 09:01:39 -0000 1.16 --- impulse.tex 12 Dec 2014 03:02:00 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: snr.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/snr.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** snr.tex 16 Dec 2013 09:08:21 -0000 1.20 --- snr.tex 12 Dec 2014 03:02:00 -0000 1.21 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ulaw.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ulaw.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ulaw.tex 16 Dec 2013 09:08:21 -0000 1.15 --- ulaw.tex 12 Dec 2014 03:02:00 -0000 1.16 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: zcross.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/zcross.tex,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** zcross.tex 16 Dec 2013 09:08:21 -0000 1.14 --- zcross.tex 12 Dec 2014 03:02:00 -0000 1.15 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: linear_intpl.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/linear_intpl.tex,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** linear_intpl.tex 16 Dec 2013 09:08:21 -0000 1.14 --- linear_intpl.tex 12 Dec 2014 03:02:00 -0000 1.15 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: swab.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/swab.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** swab.tex 16 Dec 2013 09:08:21 -0000 1.17 --- swab.tex 12 Dec 2014 03:02:00 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lsp2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lsp2sp.tex,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lsp2sp.tex 24 Apr 2014 02:09:23 -0000 1.3 --- lsp2sp.tex 12 Dec 2014 03:02:00 -0000 1.4 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: da.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/da.tex,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** da.tex 30 Nov 2014 06:27:32 -0000 1.24 --- da.tex 12 Dec 2014 03:01:59 -0000 1.25 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: excite.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/excite.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** excite.tex 16 Dec 2013 09:08:20 -0000 1.17 --- excite.tex 12 Dec 2014 03:01:59 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ifft.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ifft.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ifft.tex 16 Dec 2013 09:08:21 -0000 1.15 --- ifft.tex 12 Dec 2014 03:02:00 -0000 1.16 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: step.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/step.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** step.tex 3 Dec 2014 09:01:39 -0000 1.18 --- step.tex 12 Dec 2014 03:02:00 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: cdist.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/cdist.tex,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** cdist.tex 16 Dec 2013 09:08:20 -0000 1.19 --- cdist.tex 12 Dec 2014 03:01:59 -0000 1.20 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: smcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/smcep.tex,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** smcep.tex 3 Dec 2014 09:01:39 -0000 1.29 --- smcep.tex 12 Dec 2014 03:02:00 -0000 1.30 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: fft.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/fft.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** fft.tex 28 Jul 2014 09:27:16 -0000 1.16 --- fft.tex 12 Dec 2014 03:01:59 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lsp2lpc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lsp2lpc.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** lsp2lpc.tex 24 Apr 2014 02:09:23 -0000 1.20 --- lsp2lpc.tex 12 Dec 2014 03:02:00 -0000 1.21 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: fft2.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/fft2.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** fft2.tex 29 Jul 2014 03:19:09 -0000 1.15 --- fft2.tex 12 Dec 2014 03:01:59 -0000 1.16 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: agcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/agcep.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** agcep.tex 16 Dec 2013 09:08:20 -0000 1.18 --- agcep.tex 12 Dec 2014 03:01:59 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: mgc2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgc2sp.tex,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** mgc2sp.tex 3 Dec 2014 09:01:39 -0000 1.23 --- mgc2sp.tex 12 Dec 2014 03:02:00 -0000 1.24 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lspcheck.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lspcheck.tex,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** lspcheck.tex 24 Apr 2014 02:09:23 -0000 1.22 --- lspcheck.tex 12 Dec 2014 03:02:00 -0000 1.23 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: cat2.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/cat2.tex,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cat2.tex 16 Dec 2013 12:48:07 -0000 1.5 --- cat2.tex 12 Dec 2014 03:01:59 -0000 1.6 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: gmmp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/gmmp.tex,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** gmmp.tex 16 Dec 2013 09:08:21 -0000 1.8 --- gmmp.tex 12 Dec 2014 03:02:00 -0000 1.9 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: zerodf.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/zerodf.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** zerodf.tex 16 Dec 2013 09:08:21 -0000 1.17 --- zerodf.tex 12 Dec 2014 03:02:00 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: glogsp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/glogsp.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** glogsp.tex 16 Dec 2013 14:46:52 -0000 1.20 --- glogsp.tex 12 Dec 2014 03:02:00 -0000 1.21 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ivq.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ivq.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ivq.tex 16 Dec 2013 09:08:21 -0000 1.17 --- ivq.tex 12 Dec 2014 03:02:00 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: minmax.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/minmax.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** minmax.tex 16 Dec 2013 09:08:21 -0000 1.17 --- minmax.tex 12 Dec 2014 03:02:00 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: vsum.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/vsum.tex,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** vsum.tex 16 Dec 2013 09:08:21 -0000 1.19 --- vsum.tex 12 Dec 2014 03:02:00 -0000 1.20 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: mgcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgcep.tex,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** mgcep.tex 3 Dec 2014 09:01:39 -0000 1.32 --- mgcep.tex 12 Dec 2014 03:02:00 -0000 1.33 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: dtw.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/dtw.tex,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** dtw.tex 27 Feb 2014 09:55:29 -0000 1.8 --- dtw.tex 12 Dec 2014 03:01:59 -0000 1.9 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: uels.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/uels.tex,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** uels.tex 3 Dec 2014 09:01:39 -0000 1.24 --- uels.tex 12 Dec 2014 03:02:00 -0000 1.25 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: bell.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/bell.tex,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** bell.tex 3 Dec 2014 09:01:39 -0000 1.12 --- bell.tex 12 Dec 2014 03:01:59 -0000 1.13 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: bmdefines.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/bmdefines.tex,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** bmdefines.tex 11 Dec 2014 02:42:44 -0000 1.8 --- bmdefines.tex 12 Dec 2014 03:01:59 -0000 1.9 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: df2.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/df2.tex,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** df2.tex 16 Dec 2013 09:08:20 -0000 1.22 --- df2.tex 12 Dec 2014 03:01:59 -0000 1.23 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: us.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/us.tex,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** us.tex 23 Dec 2013 01:05:46 -0000 1.24 --- us.tex 12 Dec 2014 03:02:00 -0000 1.25 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: gcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/gcep.tex,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** gcep.tex 3 Dec 2014 09:01:39 -0000 1.31 --- gcep.tex 12 Dec 2014 03:02:00 -0000 1.32 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: transpose.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/transpose.tex,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** transpose.tex 16 Dec 2013 09:08:21 -0000 1.3 --- transpose.tex 12 Dec 2014 03:02:00 -0000 1.4 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: interpolate.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/interpolate.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** interpolate.tex 17 Dec 2013 02:05:15 -0000 1.16 --- interpolate.tex 12 Dec 2014 03:02:00 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: xgr.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/xgr.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** xgr.tex 30 Nov 2014 06:27:32 -0000 1.18 --- xgr.tex 12 Dec 2014 03:02:00 -0000 1.19 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: dct.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/dct.tex,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** dct.tex 16 Dec 2013 09:08:20 -0000 1.10 --- dct.tex 12 Dec 2014 03:01:59 -0000 1.11 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: train.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/train.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** train.tex 16 Dec 2013 09:08:21 -0000 1.15 --- train.tex 12 Dec 2014 03:02:00 -0000 1.16 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: main.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/main.tex,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** main.tex 3 Dec 2014 02:47:19 -0000 1.51 --- main.tex 12 Dec 2014 03:02:00 -0000 1.52 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % *************** *** 54,58 **** debug=true, pdfauthor={SPTK working group}, ! pdftitle={SPTK-3.7 Reference Manual}] {hyperref} \usepackage{times} --- 54,58 ---- debug=true, pdfauthor={SPTK working group}, ! pdftitle={SPTK-3.8 Reference Manual}] {hyperref} \usepackage{times} *************** *** 102,107 **** \LARGE {\rm REFERENCE MANUAL for} \\ ! {\sl Speech Signal Processing Toolkit} Ver. 3.7 \\[10mm] ! {\rm December 25, 2013} \end{center} \vspace*{\fill} --- 102,107 ---- \LARGE {\rm REFERENCE MANUAL for} \\ ! {\sl Speech Signal Processing Toolkit} Ver. 3.8 \\[10mm] ! {\rm December 25, 2014} \end{center} \vspace*{\fill} Index: c2ir.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/c2ir.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** c2ir.tex 16 Dec 2013 09:08:20 -0000 1.21 --- c2ir.tex 12 Dec 2014 03:01:59 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: dmp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/dmp.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** dmp.tex 16 Dec 2013 09:08:20 -0000 1.20 --- dmp.tex 12 Dec 2014 03:01:59 -0000 1.21 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: wavsplit.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/wavsplit.tex,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wavsplit.tex 3 Dec 2014 02:47:19 -0000 1.1 --- wavsplit.tex 12 Dec 2014 03:02:00 -0000 1.2 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lmadf.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lmadf.tex,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** lmadf.tex 3 Dec 2014 09:01:39 -0000 1.23 --- lmadf.tex 12 Dec 2014 03:02:00 -0000 1.24 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: symmetrize.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/symmetrize.tex,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** symmetrize.tex 3 Dec 2014 09:01:39 -0000 1.4 --- symmetrize.tex 12 Dec 2014 03:02:00 -0000 1.5 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: ds.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/ds.tex,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** ds.tex 28 Jul 2014 09:02:09 -0000 1.20 --- ds.tex 12 Dec 2014 03:01:59 -0000 1.21 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: poledf.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/poledf.tex,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** poledf.tex 16 Dec 2013 09:08:21 -0000 1.17 --- poledf.tex 12 Dec 2014 03:02:00 -0000 1.18 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: amcep.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/amcep.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** amcep.tex 3 Dec 2014 09:01:39 -0000 1.21 --- amcep.tex 12 Dec 2014 03:01:59 -0000 1.22 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: c2sp.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/c2sp.tex,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** c2sp.tex 16 Dec 2013 09:08:20 -0000 1.16 --- c2sp.tex 12 Dec 2014 03:01:59 -0000 1.17 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: root_pol.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/root_pol.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** root_pol.tex 16 Dec 2013 09:08:21 -0000 1.15 --- root_pol.tex 12 Dec 2014 03:02:00 -0000 1.16 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: mgclsp2mgc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/mgclsp2mgc.tex,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mgclsp2mgc.tex 24 Apr 2014 02:09:23 -0000 1.8 --- mgclsp2mgc.tex 12 Dec 2014 03:02:00 -0000 1.9 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: lpc.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/lpc.tex,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** lpc.tex 16 Dec 2013 09:08:21 -0000 1.19 --- lpc.tex 12 Dec 2014 03:02:00 -0000 1.20 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % Department of Computer Science % % % --- 9,13 ---- % Science and Engineering % % % ! % 1996-2014 Nagoya Institute of Technology % % Department of Computer Science % % % Index: us16.tex =================================================================== RCS file: /cvsroot/sp-tk/SPTK/doc/ref_e/us16.tex,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** us16.tex 16 Dec 2013 09:08:21 -0000 1.19 --- us16.tex 12 Dec 2014 03:02:00 -0000 1.20 *************** *** 9,13 **** % Science and Engineering % % % ! % 1996-2013 Nagoya Institute of Technology % % ... [truncated message content] |
From: Keiichiro O. <ur...@us...> - 2014-12-11 09:51:47
|
Update of /cvsroot/sp-tk/SPTK/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30020 Modified Files: NEWS configure.ac Log Message: update NEWS Index: NEWS =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/NEWS,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** NEWS 22 Dec 2013 16:58:55 -0000 1.21 --- NEWS 11 Dec 2014 09:51:45 -0000 1.22 *************** *** 1,2 **** --- 1,16 ---- + Version 3.8: + * add 'c2ndps' command for transform from cepstrum to negative derivative of phrase spectrum. + * add 'mgclsp2sp' command for transform from LSP to spectrum. + * add 'ndps2c' command for transform from negative derivative of phrase spectrum to cepstrum. + * add 'wavjoin' command to save stereo wav file. + * add 'wavsplit' command to load stereo wav file. + * add -V option to 'dtw' command for loading DTW results. + * add -e option to calculate inverse matrix stably for 'delta' and 'vc' commands. + * support MAP estimation in 'gmm' command. + * replace -i option to -q option for 'lsp2lpc,' 'lspcheck,' and 'mgclsp2mgc' commands. + * change -c option of 'mlsacheck' command. + * update swipe and hts_engine API. + * bug fixes. + Version 3.7: * add 'vc' command to perform GMM-based voice conversion. Index: configure.ac =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/configure.ac,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** configure.ac 11 Dec 2014 08:30:28 -0000 1.51 --- configure.ac 11 Dec 2014 09:51:45 -0000 1.52 *************** *** 168,172 **** bin/c2acr/Makefile bin/c2ir/Makefile ! bin/c2ndps/Makefile bin/c2sp/Makefile bin/cat2/Makefile --- 168,172 ---- bin/c2acr/Makefile bin/c2ir/Makefile ! bin/c2ndps/Makefile bin/c2sp/Makefile bin/cat2/Makefile *************** *** 230,234 **** bin/mgc2mgc/Makefile bin/mgc2sp/Makefile ! bin/mgclsp2sp/Makefile bin/mgcep/Makefile bin/mglsadf/Makefile --- 230,234 ---- bin/mgc2mgc/Makefile bin/mgc2sp/Makefile ! bin/mgclsp2sp/Makefile bin/mgcep/Makefile bin/mglsadf/Makefile *************** *** 239,243 **** bin/msvq/Makefile bin/nan/Makefile ! bin/ndps2c/Makefile bin/norm0/Makefile bin/nrand/Makefile --- 239,243 ---- bin/msvq/Makefile bin/nan/Makefile ! bin/ndps2c/Makefile bin/norm0/Makefile bin/nrand/Makefile *************** *** 271,276 **** bin/vstat/Makefile bin/vsum/Makefile ! bin/wavjoin/Makefile ! bin/wavsplit/Makefile bin/window/Makefile bin/x2x/Makefile --- 271,276 ---- bin/vstat/Makefile bin/vsum/Makefile ! bin/wavjoin/Makefile ! bin/wavsplit/Makefile bin/window/Makefile bin/x2x/Makefile |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:23
|
Update of /cvsroot/sp-tk/SPTK/src/bin/train In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/train Modified Files: train.c Log Message: update copyright Index: train.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/train/train.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** train.c 16 Dec 2013 09:02:04 -0000 1.24 --- train.c 11 Dec 2014 08:30:50 -0000 1.25 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:22
|
Update of /cvsroot/sp-tk/SPTK/src/bin/root_pol In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/root_pol Modified Files: _root_pol.c root_pol.c Log Message: update copyright Index: _root_pol.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/root_pol/_root_pol.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** _root_pol.c 16 Dec 2013 09:02:03 -0000 1.16 --- _root_pol.c 11 Dec 2014 08:30:49 -0000 1.17 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: root_pol.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/root_pol/root_pol.c,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** root_pol.c 16 Dec 2013 09:02:03 -0000 1.25 --- root_pol.c 11 Dec 2014 08:30:49 -0000 1.26 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:21
|
Update of /cvsroot/sp-tk/SPTK/src/bin/ramp In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/ramp Modified Files: ramp.c Log Message: update copyright Index: ramp.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ramp/ramp.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** ramp.c 16 Dec 2013 09:02:02 -0000 1.23 --- ramp.c 11 Dec 2014 08:30:49 -0000 1.24 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:19
|
Update of /cvsroot/sp-tk/SPTK/src/bin/nan In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/nan Modified Files: nan.c Log Message: update copyright Index: nan.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/nan/nan.c,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** nan.c 16 Dec 2013 09:02:01 -0000 1.30 --- nan.c 11 Dec 2014 08:30:42 -0000 1.31 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:14
|
Update of /cvsroot/sp-tk/SPTK/src/bin/mgcep In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/mgcep Modified Files: _mgcep.c mgcep.c Log Message: update copyright Index: _mgcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mgcep/_mgcep.c,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** _mgcep.c 16 Dec 2013 09:02:00 -0000 1.29 --- _mgcep.c 11 Dec 2014 08:30:41 -0000 1.30 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: mgcep.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mgcep/mgcep.c,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** mgcep.c 16 Dec 2013 09:02:00 -0000 1.40 --- mgcep.c 11 Dec 2014 08:30:41 -0000 1.41 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:13
|
Update of /cvsroot/sp-tk/SPTK/src/bin/mc2b In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/mc2b Modified Files: _mc2b.c mc2b.c Log Message: update copyright Index: _mc2b.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mc2b/_mc2b.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** _mc2b.c 16 Dec 2013 09:02:00 -0000 1.14 --- _mc2b.c 11 Dec 2014 08:30:40 -0000 1.15 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: mc2b.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mc2b/mc2b.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** mc2b.c 16 Dec 2013 09:02:00 -0000 1.23 --- mc2b.c 11 Dec 2014 08:30:40 -0000 1.24 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:12
|
Update of /cvsroot/sp-tk/SPTK/src/bin/ifftr In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/ifftr Modified Files: _ifftr.c ifftr.c Log Message: update copyright Index: ifftr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ifftr/ifftr.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ifftr.c 16 Dec 2013 09:01:58 -0000 1.2 --- ifftr.c 11 Dec 2014 08:30:37 -0000 1.3 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: _ifftr.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/ifftr/_ifftr.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _ifftr.c 16 Dec 2013 09:01:58 -0000 1.3 --- _ifftr.c 11 Dec 2014 08:30:37 -0000 1.4 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:11
|
Update of /cvsroot/sp-tk/SPTK/src/bin/imsvq In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/imsvq Modified Files: _imsvq.c imsvq.c Log Message: update copyright Index: imsvq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/imsvq/imsvq.c,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** imsvq.c 16 Dec 2013 09:01:58 -0000 1.21 --- imsvq.c 11 Dec 2014 08:30:38 -0000 1.22 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: _imsvq.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/imsvq/_imsvq.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** _imsvq.c 16 Dec 2013 09:01:58 -0000 1.16 --- _imsvq.c 11 Dec 2014 08:30:38 -0000 1.17 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:09
|
Update of /cvsroot/sp-tk/SPTK/src/bin/gnorm In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/gnorm Modified Files: _gnorm.c gnorm.c Log Message: update copyright Index: _gnorm.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gnorm/_gnorm.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** _gnorm.c 16 Dec 2013 09:01:57 -0000 1.17 --- _gnorm.c 11 Dec 2014 08:30:36 -0000 1.18 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: gnorm.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/gnorm/gnorm.c,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** gnorm.c 16 Dec 2013 09:01:57 -0000 1.27 --- gnorm.c 11 Dec 2014 08:30:36 -0000 1.28 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:08
|
Update of /cvsroot/sp-tk/SPTK/src/bin/freqt In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/freqt Modified Files: _freqt.c freqt.c Log Message: update copyright Index: freqt.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/freqt/freqt.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** freqt.c 16 Dec 2013 09:01:57 -0000 1.22 --- freqt.c 11 Dec 2014 08:30:35 -0000 1.23 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: _freqt.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/freqt/_freqt.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** _freqt.c 16 Dec 2013 09:01:57 -0000 1.16 --- _freqt.c 11 Dec 2014 08:30:35 -0000 1.17 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |
From: Keiichiro O. <ur...@us...> - 2014-12-11 08:31:07
|
Update of /cvsroot/sp-tk/SPTK/src/bin/fft In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24239/bin/fft Modified Files: _fft.c fft.c Log Message: update copyright Index: _fft.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fft/_fft.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** _fft.c 16 Dec 2013 09:01:56 -0000 1.16 --- _fft.c 11 Dec 2014 08:30:34 -0000 1.17 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: fft.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/fft/fft.c,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** fft.c 16 Dec 2013 09:01:56 -0000 1.28 --- fft.c 11 Dec 2014 08:30:34 -0000 1.29 *************** *** 9,13 **** /* Science and Engineering */ /* */ ! /* 1996-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 9,13 ---- /* Science and Engineering */ /* */ ! /* 1996-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ |