home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Multimed / Multimed.zip / fest-141.zip / festival / testsuite / data / fest1.scm < prev    next >
Text File  |  1999-05-30  |  3KB  |  73 lines

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;;                                                                       ;;
  3. ;;;                Centre for Speech Technology Research                  ;;
  4. ;;;                     University of Edinburgh, UK                       ;;
  5. ;;;                       Copyright (c) 1996,1997                         ;;
  6. ;;;                        All Rights Reserved.                           ;;
  7. ;;;                                                                       ;;
  8. ;;;  Permission is hereby granted, free of charge, to use and distribute  ;;
  9. ;;;  this software and its documentation without restriction, including   ;;
  10. ;;;  without limitation the rights to use, copy, modify, merge, publish,  ;;
  11. ;;;  distribute, sublicense, and/or sell copies of this work, and to      ;;
  12. ;;;  permit persons to whom this work is furnished to do so, subject to   ;;
  13. ;;;  the following conditions:                                            ;;
  14. ;;;   1. The code must retain the above copyright notice, this list of    ;;
  15. ;;;      conditions and the following disclaimer.                         ;;
  16. ;;;   2. Any modifications must be clearly marked as such.                ;;
  17. ;;;   3. Original authors' names are not deleted.                         ;;
  18. ;;;   4. The authors' names are not used to endorse or promote products   ;;
  19. ;;;      derived from this software without specific prior written        ;;
  20. ;;;      permission.                                                      ;;
  21. ;;;                                                                       ;;
  22. ;;;  THE UNIVERSITY OF EDINBURGH AND THE CONTRIBUTORS TO THIS WORK        ;;
  23. ;;;  DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING      ;;
  24. ;;;  ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT   ;;
  25. ;;;  SHALL THE UNIVERSITY OF EDINBURGH NOR THE CONTRIBUTORS BE LIABLE     ;;
  26. ;;;  FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES    ;;
  27. ;;;  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN   ;;
  28. ;;;  AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,          ;;
  29. ;;;  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF       ;;
  30. ;;;  THIS SOFTWARE.                                                       ;;
  31. ;;;                                                                       ;;
  32. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  33. ;;;  Simple test of a single utterance
  34.  
  35. (define (remove_ids utt)
  36.   "(remove_ids utt)
  37. To all diffs on saved files this removed the _id feature from
  38. every item in utt so other utts will look the same as this if
  39. regenerated."
  40.   (mapcar
  41.    (lambda (r)
  42.      (mapcar
  43.       (lambda (i)
  44.     (item.remove_feature i "id"))
  45.       (utt.relation.items utt r)))
  46.    (utt.relationnames utt))
  47.   utt)
  48.  
  49. (set! utt1 (Utterance Text "On May 5 1985, around 1985 people joined Mr. Black's project."))
  50.  
  51. (utt.synth utt1)
  52. (utt.save.words utt1 "-")
  53. (print (utt.features utt1 'Word '(name R:Token.parent.name R:SylStructure.daughtern.name)))
  54. ;; tidy the utt up so it'll look the same on resynthesis
  55. (remove_ids utt1)
  56. (utt.set_feat utt1 "max_id" 0)
  57. (utt.set_feat utt1 "filename" 0)
  58. (utt.save utt1 "tmp/fest2.utt")
  59. (utt.save.segs utt1 "-")
  60.  
  61. ;;; Test Utterance i/o
  62. (set! utt2 (utt.load nil "tmp/fest2.utt"))
  63. (utt.synth utt2)
  64. (remove_ids utt2)
  65. (utt.set_feat utt2 "max_id" 0)
  66. (utt.set_feat utt2 "filename" 0)
  67. (utt.save utt2 "tmp/fest3.utt")
  68.  
  69.  
  70.  
  71.  
  72.  
  73.