1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;;; Language Technologies Institute ;;;
;;; Carnegie Mellon University ;;;
;;; Copyright (c) 2001 ;;;
;;; All Rights Reserved. ;;;
;;; ;;;
;;; Permission is hereby granted, free of charge, to use and distribute ;;;
;;; this software and its documentation without restriction, including ;;;
;;; without limitation the rights to use, copy, modify, merge, publish, ;;;
;;; distribute, sublicense, and/or sell copies of this work, and to ;;;
;;; permit persons to whom this work is furnished to do so, subject to ;;;
;;; the following conditions: ;;;
;;; 1. The code must retain the above copyright notice, this list of ;;;
;;; conditions and the following disclaimer. ;;;
;;; 2. Any modifications must be clearly marked as such. ;;;
;;; 3. Original authors' names are not deleted. ;;;
;;; 4. The authors' names are not used to endorse or promote products ;;;
;;; derived from this software without specific prior written ;;;
;;; permission. ;;;
;;; ;;;
;;; CARNEGIE MELLON UNIVERSITY AND THE CONTRIBUTORS TO THIS WORK ;;;
;;; DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ;;;
;;; ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ;;;
;;; SHALL CARNEGIE MELLON UNIVERSITY NOR THE CONTRIBUTORS BE LIABLE ;;;
;;; FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ;;;
;;; WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ;;;
;;; AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ;;;
;;; ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF ;;;
;;; THIS SOFTWARE. ;;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Author: Alan W Black (awb@cs.cmu.edu) ;;;
;;; Date: January 2001 ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;;; Take a diphone index and generate a single C track and residual ;;;
;;; for each of diphones in given index. A new index with pm ;;;
;;; positions is provided. ;;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defvar lpc_min -7.992630)
(defvar lpc_max 7.829990)
(define (diphtoC diphindexfn name lpcdir odir)
"(diphtoC diphindexfn name lpcdir odir)
Convert a diphone index and its LPC representations into three files,
an single track file with LPC coefficients, a wave file with
the residual, and an index file relating diph names to positions in
the main files."
(let
((diphindex (load diphindexfn t))
(ofdidx (fopen (path-append odir (string-append name "_diphone.c")) "w")))
(format ofdidx "/*****************************************************/\n")
(format ofdidx "/** Autogenerated Diphone DB for %s */\n" name)
(format ofdidx "/*****************************************************/\n")
(format ofdidx "\n")
(format ofdidx "#include \"cst_diphone.h\"\n")
(set! pm_pos 0)
(set! sample_pos 0)
(set! times nil)
(set! diphone_entries nil)
(set! num_unit_entries (length diphindex))
(while diphindex
(set! pms (find_pm_pos
(car diphindex)
lpcdir
ofdidx))
;; Output unit_entry for this diphone
(set! diphone_entries
(cons
(list
(nth 0 (car diphindex))
(nth 2 pms) ; start_pm
(nth 3 pms) ; phone_boundary_pm
(nth 4 pms)) ; end_pm
diphone_entries))
(set! diphindex (cdr diphindex)))
(format ofdidx "\n\n")
(format ofdidx "const cst_sts %s_sts_vals[] = { \n" name)
(set! i 0)
(mapcar
(lambda (time)
(format ofdidx " { diphs_frame_%d, diphs_size_%d, diphs_res_%d }, \n"
i i i)
(set! i (+ 1 i)))
times)
(format ofdidx " { 0, 0 ,0 }};\n\n")
(format ofdidx "const cst_sts_list %s_sts = {\n" name)
(format ofdidx " %s_sts_vals,\n" name)
(format ofdidx " 0,0,0,\n")
(format ofdidx " %d,\n" i)
(format ofdidx " %d,\n" lpc_order)
(format ofdidx " %d,\n" sample_rate)
(format ofdidx " %f,\n" lpc_min)
(format ofdidx " %f,\n" lpc_range)
(format ofdidx " %f,\n" 0.0)
(format ofdidx " 1 \n")
(format ofdidx "};\n\n")
(format ofdidx "static const cst_diphone_entry %s_index[] = { \n" name)
(mapcar
(lambda (e)
(format ofdidx " { \"%s\",%d,%d,%d },\n"
(nth 0 e)
(nth 1 e) ; start_pm
(nth 2 e) ; phone_boundary_pm
(nth 3 e) ; end_pm
))
(reverse diphone_entries))
(format ofdidx " { 0,0,0,0 } };\n\n")
(format ofdidx "const cst_diphone_db %s_db = {\n" name)
(format ofdidx " \"%s\",\n" name)
(format ofdidx " %d,\n" num_unit_entries)
(format ofdidx " %s_index,\n" name)
(format ofdidx " &%s_sts\n" name)
(format ofdidx "};\n\n")
(fclose ofdidx)
))
(define (find_pm_pos entry stsdir ofdsts)
"(find_pm_pos entry lpddir)
Diphone dics give times in seconds here we want them as indexes. This
function converts the lpc to ascii and finds the pitch marks that
go with this unit. These are written to ofdsts with ulaw residual
as short term signal."
(let ((sts_coeffs (load
(format nil "%s/%s.sts" stsdir (cadr entry))
t))
(start_time (nth 2 entry))
(phoneboundary_time (nth 3 entry))
(end_time (nth 4 entry))
start_pm pb_pm end_pm
(ltime 0))
(format t "%l\n" entry)
(set! sts_info (car sts_coeffs))
(set! sts_coeffs (cdr sts_coeffs))
(set! ltime 0)
(set! size_to_now 0)
(while (and sts_coeffs
(> (absdiff start_time (car (car sts_coeffs)))
(absdiff start_time (car (cadr sts_coeffs)))))
(set! ltime (car (car sts_coeffs)))
(set! sts_coeffs (cdr sts_coeffs)))
(set! sample_rate (nth 2 sts_info))
(set! lpc_order (nth 1 sts_info))
(set! lpc_min (nth 3 sts_info))
(set! lpc_range (nth 4 sts_info))
(set! start_pm pm_pos)
(while (and sts_coeffs
(> (absdiff phoneboundary_time (car (car sts_coeffs)))
(absdiff phoneboundary_time (car (cadr sts_coeffs)))))
(output_sts (car sts_coeffs) ofdsts)
(set! sts_coeffs (cdr sts_coeffs)))
(set! pb_pm pm_pos)
(while (and sts_coeffs (cdr sts_coeffs)
(> (absdiff end_time (car (car sts_coeffs)))
(absdiff end_time (car (cadr sts_coeffs)))))
(output_sts (car sts_coeffs) ofdsts)
(set! sts_coeffs (cdr sts_coeffs)))
(set! end_pm pm_pos)
(list
(car entry)
(cadr entry)
start_pm
pb_pm
end_pm)))
(define (output_sts frame ofd)
"(output_sts frame residual ofd)
Ouput this LPC frame."
(let ((time (nth 0 frame))
(coeffs (nth 1 frame))
(size (nth 2 frame))
(r (nth 3 frame)))
(set! times (cons time times))
(format ofd "static const unsigned short diphs_frame_%d[] = { \n" pm_pos)
(while (cdr coeffs)
(format ofd " %d," (car coeffs))
(set! coeffs (cdr coeffs))
(if (not (cdr coeffs)) (format ofd " %d" (car coeffs))))
(format ofd " };\n")
(format ofd "static const unsigned char diphs_res_%d[] = { \n" pm_pos)
(set! s size)
(while (cdr r)
(format ofd " %d," (car r))
(set! r (cdr r))
(if (not (cdr r)) (format ofd " %d" (car r))))
(format ofd " };\n")
(format ofd "#define diphs_size_%d %d\n" pm_pos size)
(format ofd "\n")
(set! pm_pos (+ 1 pm_pos))
))
(define (output_stsS frame ofd)
"(output_sts frame residual ofd)
Ouput this LPC frame."
(let ((time (nth 0 frame))
(coeffs (nth 1 frame))
(size (nth 2 frame))
(r (nth 3 frame)))
(set! times (cons time times))
(format ofd "static const unsigned short diphs_frame_%d[] = { \n" pm_pos)
(while (cdr coeffs)
(format ofd " %d," (car coeffs))
(set! coeffs (cdr coeffs))
(if (not (cdr coeffs)) (format ofd " %d" (car coeffs))))
(format ofd " };\n")
(set! s size)
(set! sump 0)
(while (cdr r)
(set! sump (+ (* (car r) (car r)) sump))
(set! r (cdr r)))
(format ofd "#define diphs_res_%d (void *)%d\n" pm_pos (sqrt sump))
(format ofd "#define diphs_size_%d %d\n" pm_pos size)
(format ofd "\n")
(set! pm_pos (+ 1 pm_pos))
))
(define (oldfind_pm_pos entry lpcdir ofdsts)
"(find_pm_pos entry lpddir)
Diphone dics give times in seconds here we want them as indexes. This
function converts the lpc to ascii and finds the pitch marks that
go with this unit. These are written to ofdsts with ulaw residual
as short term signal."
(let ((lpc_coeffs (load_ascii_track
(format nil "%s/%s.lpc" lpcdir (cadr entry))
(nth 2 entry)))
(ulaw_residual (load_ascii_ulaw_wave
(format nil "%s/%s.res" lpcdir (cadr entry))
(nth 2 entry)
(nth 4 entry)))
(start_time (nth 2 entry))
(phoneboundary_time (nth 3 entry))
(end_time (nth 4 entry))
start_pm pb_pm end_pm
(ltime 0))
(format t "%l\n" entry)
(while (and lpc_coeffs
(> (absdiff start_time (car (car lpc_coeffs)))
(absdiff start_time (car (cadr lpc_coeffs)))))
; (format t "%f %f\n" start_time (car (car lpc_coeffs)))
(set! ltime (car (car lpc_coeffs)))
(set! lpc_coeffs (cdr lpc_coeffs)))
; (format t "start time %f %f\n" start_time (car (car lpc_coeffs)))
(set! start_pm pm_pos)
(while (and lpc_coeffs
(> (absdiff phoneboundary_time (car (car lpc_coeffs)))
(absdiff phoneboundary_time (car (cadr lpc_coeffs)))))
(output_sts (car lpc_coeffs)
(- (car (car lpc_coeffs)) ltime)
ulaw_residual ofdsts)
(set! ulaw_residual
(cons (car ulaw_residual)
(nth_cdr (* (- (car (car lpc_coeffs)) ltime)
(car ulaw_residual))
(cdr ulaw_residual))))
(set! ltime (car (car lpc_coeffs)))
(set! lpc_coeffs (cdr lpc_coeffs)))
(set! pb_pm pm_pos)
(while (and lpc_coeffs (cdr lpc_coeffs)
(> (absdiff end_time (car (car lpc_coeffs)))
(absdiff end_time (car (cadr lpc_coeffs)))))
(output_sts (car lpc_coeffs)
(- (car (car lpc_coeffs)) ltime)
ulaw_residual
ofdsts)
(set! ulaw_residual
(cons (car ulaw_residual)
(nth_cdr (* (- (car (car lpc_coeffs)) ltime)
(car ulaw_residual))
(cdr ulaw_residual))))
(set! ltime (car (car lpc_coeffs)))
(set! lpc_coeffs (cdr lpc_coeffs)))
(set! end_pm pm_pos)
(list
(car entry)
(cadr entry)
start_pm
pb_pm
end_pm)))
(define (oldoutput_sts frame duration residual ofd)
"(output_sts frame residual ofd)
Ouput this LPC frame."
(let ((size (* duration (car residual)))
(end_samp (* (car frame) (car residual))))
(set! sample_rate (car residual))
(set! lpc_order (- (length frame) 3))
(set! times (cons (car frame) times))
(format ofd "static const unsigned short diphs_frame_%d[] = { \n" pm_pos)
(set! frame (cddr frame)) ;; skip the "1"
(set! frame (cdr frame)) ;; skip the energy
(while (cdr frame)
(format ofd " %d," (lpccoeff_norm (car frame)))
(set! frame (cdr frame))
(if (not (cdr frame)) (format ofd " %d" (lpccoeff_norm (car frame)))))
(format ofd " };\n")
(format ofd "static const unsigned char diphs_res_%d[] = { \n" pm_pos)
(set! s size)
; (set! r (nth_cdr (- end_samp size) residual))
(set! r (cdr residual))
; (format t "length of residual is dur %f %d\n" duration (length r))
(while (> s 1)
(format ofd " %d," (car r))
(set! r (cdr r))
(set! s (- s 1))
(if (equal? s 1) (format ofd " %d" (car r))))
(format ofd " };\n")
(format ofd "#define diphs_size_%d %d\n" pm_pos size)
(format ofd "\n")
(set! pm_pos (+ 1 pm_pos))
))
(define (oldlpccoeff_norm c)
(* (/ (- c lpc_min) (- lpc_max lpc_min))
65535))
(define (oldload_ascii_ulaw_wave wavefilename starttime)
"(load_ascii_ulaw_wave wavefilename starttime)
Coverts wavefilename to simple ascii representation."
(let ((tmpfile (make_tmp_filename))
b)
(system (format nil "ch_wave -info %s | grep Sample |
awk '{printf(\"%%d \\n\",$3)}' >%s"
wavefilename tmpfile))
(system (format nil "ch_wave -otype raw -ostype ascii -start %f %s | asciiS2U >>%s"
starttime wavefilename tmpfile))
(set! b (load tmpfile t))
(delete-file tmpfile)
b))
(define (oldload_ascii_track trackfilename starttime)
"(load_ascii_track trackfilename)
Coverts trackfilename to simple ascii representation."
(let ((tmpfile (make_tmp_filename))
(nicestarttime (if (> starttime 0.100)
(- starttime 0.100)
starttime))
b)
(system (format nil "ch_track -otype est -start %f %s |
awk '{if ($1 == \"EST_Header_End\")
header=1;
else if (header == 1)
printf(\"( %%s )\\n\",$0)}'>%s"
nicestarttime trackfilename tmpfile))
(set! b (load tmpfile t))
(delete-file tmpfile)
b))
(define (absdiff a b)
(let ((d (- a b )))
(if (< d 0)
(* -1 d)
d)))
(provide 'make_didb)
|