Esempio n. 1
0
    def run_syllabification(self, stepidx):
        """
        Execute the SPPAS syllabification.

        """
        # Initializations
        step = self.parameters.get_step(stepidx)
        stepname = self.parameters.get_step_name(stepidx)
        files_processed_success = 0
        self._progress.set_header(stepname)
        self._progress.update(0,"")

        # Get the list of input file names, with the ".wav" (or ".wave") extension
        filelist = self.set_filelist(".wav",not_start=["track_"])
        if len(filelist) == 0:
            return 0
        total = len(filelist)

        # Create annotation instance
        try:
            s = sppasSyll( step.get_langresource(), self._logfile )
        except Exception as e:
            if self._logfile is not None:
                self._logfile.print_message( "%s\n"%str(e), indent=1,status=1 )
            return 0

        for i,f in enumerate(filelist):

            # fix the default values
            s.fix_options( step.get_options() )

            # Indicate the file to be processed
            self._progress.set_text( os.path.basename(f)+" ("+str(i+1)+"/"+str(total)+")" )
            if self._logfile is not None:
                self._logfile.print_message(stepname+" of file " + f, indent=1 )

            # Get the input file
            ext = ['-palign'+self.parameters.get_output_format()]
            for e in annotationdata.io.extensions_out_multitiers:
                ext.append( '-palign'+e )

            inname = self._get_filename(f,ext)
            if inname is not None:

                # Fix output file name
                outname = os.path.splitext(f)[0] + '-salign' + self.parameters.get_output_format()

                # Execute annotation
                try:
                    s.run( inname, outputfilename=outname )
                except Exception as e:
                    if self._logfile is not None:
                        self._logfile.print_message( "%s for file %s\n"%(str(e),outname), indent=2,status=-1 )
                else:
                    files_processed_success += 1
                    if self._logfile is not None:
                        self._logfile.print_message(outname, indent=2,status=0 )
            else:
                if self._logfile is not None:
                    self._logfile.print_message("Failed to find a file with time-aligned phonemes. Read the documentation for details.",indent=2,status=2)

            # Indicate progress
            self._progress.set_fraction(float((i+1))/float(total))
            if self._logfile is not None:
                self._logfile.print_newline()

        # Indicate completed!
        self._progress.update(1,"Completed (%d files successfully over %d files).\n"%(files_processed_success,total))
        self._progress.set_header("")

        return files_processed_success
Esempio n. 2
0
parser.add_argument("-t", metavar="string", required=False, help="Reference tier name to syllabify between intervals")
parser.add_argument(
    "--nophn", action="store_true", help="Disable the output of the result that does not use the reference tier"
)

if len(sys.argv) <= 1:
    sys.argv.append("-h")

args = parser.parse_args()

if args.nophn and not args.t:
    print "Warning. The option --nophn will not have any effect! It must be used with -t option."


# ----------------------------------------------------------------------------
# Automatic Syllabification is here:
# ----------------------------------------------------------------------------


syll = sppasSyll(args.config)

if args.t:
    syll.set_usesintervals(True)
    syll.set_tiername(args.t)
    if args.nophn:
        syll.set_usesphons(False)

syll.run(args.i, args.o)

# --------------------------------------------------------------------------