1#!/bin/sh
2#####################################################-*-mode:shell-script-*-
3##                                                                       ##
4##                   Carnegie Mellon University and                      ##
5##                   Alan W Black and Kevin A. Lenzo                     ##
6##                      Copyright (c) 1998-2000                          ##
7##                        All Rights Reserved.                           ##
8##                                                                       ##
9##  Permission is hereby granted, free of charge, to use and distribute  ##
10##  this software and its documentation without restriction, including   ##
11##  without limitation the rights to use, copy, modify, merge, publish,  ##
12##  distribute, sublicense, and/or sell copies of this work, and to      ##
13##  permit persons to whom this work is furnished to do so, subject to   ##
14##  the following conditions:                                            ##
15##   1. The code must retain the above copyright notice, this list of    ##
16##      conditions and the following disclaimer.                         ##
17##   2. Any modifications must be clearly marked as such.                ##
18##   3. Original authors' names are not deleted.                         ##
19##   4. The authors' names are not used to endorse or promote products   ##
20##      derived from this software without specific prior written        ##
21##      permission.                                                      ##
22##                                                                       ##
23##  CARNEGIE MELLON UNIVERSITY AND THE CONTRIBUTORS TO THIS WORK         ##
24##  DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING      ##
25##  ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT   ##
26##  SHALL CARNEGIE MELLON UNIVERSITY NOR THE CONTRIBUTORS BE LIABLE      ##
27##  FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES    ##
28##  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN   ##
29##  AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,          ##
30##  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF       ##
31##  THIS SOFTWARE.                                                       ##
32##                                                                       ##
33###########################################################################
34###                                                                       ##
35###  Generate (filled) pitchmark file from EGG/LAR files                  ##
36###                                                                       ##
37############################################################################
38
39if [ $# = 0 ]
40then
41   echo "Extract pitchmarks from EGG signals"
42   echo "Usage:  bin/make_pm lar/*.lar"
43   echo "Will create pm/*.pm"
44   echo "pitchmark parameters are set for male speaker, edit for female."
45   exit 1
46fi
47
48if [ ! "$ESTDIR" ]
49then
50   echo "environment variable ESTDIR is unset"
51   echo "set it to your local speech tools directory e.g."
52   echo '   bash$ export ESTDIR=/home/awb/projects/speech_tools/'
53   echo or
54   echo '   csh% setenv ESTDIR /home/awb/projects/speech_tools/'
55   exit 1
56fi
57
58for i in $*
59do
60   fname=`basename $i .lar`
61   echo $i PM
62   # Due to a bug this only works for 16Khz
63   $ESTDIR/bin/ch_wave $i -F 16000 -o tmp$$.lar
64   # You'll need -inv if you are at CMU (or CSTR and maybe elsewhere)
65   # Male
66   $ESTDIR/bin/pitchmark tmp$$.lar -inv -o pm/$fname.pm -otype est -min 0.005 -max 0.012 -fill -def 0.01 -wave_end
67   # Female
68#   $ESTDIR/bin/pitchmark tmp$$.lar -inv -o pm/$fname.pm -otype est -min 0.00333 -max 0.0075 -fill -def 0.006 -wave_end
69   rm -f tmp$$.lar
70done
71