Announcement

Collapse
No announcement yet.

syntax for speak...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    syntax for speak...

    Would someone please give the exact syntax for the "Speak_to_file.sh" and the "Speak.sh" files. I tampered with them and lost my copy for the original files.
    Thanks!

    #2
    The speak.sh should just be:

    #!/bin/sh
    flite -voice rms -t "$1"


    The "rms" above is the flite voice selection. I found rms easiest to understand, but below are all the voices that were pre-loaded on my Zee:


    kal kal16 awb rms slt

    I haven't looked at the speak_to_file.sh.

    John

    Comment


      #3
      Thank you sir!

      Comment


        #4
        This still works on HS4, when you modify speak_to_file.sh. This is the config I built, just uncomment the line for the voice you want.

        #!/bin/sh
        default Setting
        #flite -o "$1" -t "$2"

        #A little better than default
        #flite -voice kal16 -o "$1" -t "$2"

        #Female Voice
        flite -voice slt -o "$1" -t "$2"

        #Male Voice
        #flite -voice rms -o "$1" -t "$2"

        #british computer voice
        #flite -voice awb -o "$1" -t "$2"

        #Doesn't work
        #flite -voice awb_time -o "$1" -t "$2"

        Comment

        Working...
        X