コード例 #1
0
ファイル: tts.py プロジェクト: dylanjbarth/jasper-client
    def is_available(cls):
        if (super(cls, cls).is_available() and
           diagnose.check_executable('text2wave') and
           diagnose.check_executable('festival')):

            logger = logging.getLogger(__name__)
            cmd = ['festival', '--pipe']
            with tempfile.SpooledTemporaryFile() as out_f:
                with tempfile.SpooledTemporaryFile() as in_f:
                    logger.debug('Executing %s', ' '.join([pipes.quote(arg)
                                                           for arg in cmd]))
                    subprocess.call(cmd, stdin=in_f, stdout=out_f,
                                    stderr=out_f)
                    out_f.seek(0)
                    output = out_f.read().strip()
                    if output:
                        logger.debug("Output was: '%s'", output)
                    return ('No default voice found' not in output)
        return False
コード例 #2
0
ファイル: g2p.py プロジェクト: moochtm/jasper-client
 def __new__(cls, fst_model=None, *args, **kwargs):
     if not diagnose.check_executable('phonetisaurus-g2p'):
         raise OSError("Can't find command 'phonetisaurus-g2p'! Please " +
                       "check if Phonetisaurus is installed and in your " +
                       "$PATH.")
     if fst_model is None or not os.access(fst_model, os.R_OK):
         raise OSError(("FST model '%r' does not exist! Can't create " +
                        "instance.") % fst_model)
     inst = object.__new__(cls, fst_model, *args, **kwargs)
     return inst
コード例 #3
0
ファイル: tts.py プロジェクト: dylanjbarth/jasper-client
 def is_available(cls):
     return (super(cls, cls).is_available() and
             diagnose.check_executable('pico2wave'))
コード例 #4
0
ファイル: tts.py プロジェクト: dylanjbarth/jasper-client
 def is_available(cls):
     return (platform.system().lower() == 'darwin' and
             diagnose.check_executable('say') and
             diagnose.check_executable('afplay'))
コード例 #5
0
ファイル: tts.py プロジェクト: dylanjbarth/jasper-client
 def is_available(cls):
     return (super(cls, cls).is_available() and
             diagnose.check_executable('flite') and
             len(cls.get_voices()) > 0)
コード例 #6
0
ファイル: tts.py プロジェクト: dylanjbarth/jasper-client
 def is_available(cls):
     return (super(cls, cls).is_available() and
             diagnose.check_executable('espeak'))
コード例 #7
0
ファイル: tts.py プロジェクト: GruffPrys/macsen
    def is_available(cls):
        if (super(cls, cls).is_available() and
           diagnose.check_executable('festival')):
           logger = logging.getLogger(__name__)

        return True
コード例 #8
0
ファイル: stt.py プロジェクト: kevinjonesevans/jasper-client
 def is_available(cls):
     return diagnose.check_executable('julius')
コード例 #9
0
 def is_available(cls):
     return (super(cls, cls).is_available()
             and diagnose.check_executable('flite')
             and len(cls.get_voices()) > 0)
コード例 #10
0
 def is_available(cls):
     return (platform.system().lower() == 'darwin'
             and diagnose.check_executable('say')
             and diagnose.check_executable('afplay'))
コード例 #11
0
 def is_available(cls):
     return (super(cls, cls).is_available()
             and diagnose.check_executable('espeak'))
コード例 #12
0
 def is_available(cls):
     return diagnose.check_executable('aplay')
コード例 #13
0
 def is_available(cls):
     return (super(PicoTTS, cls).is_available()
             and diagnose.check_executable('pico2wave'))
コード例 #14
0
ファイル: tts.py プロジェクト: dylanjbarth/jasper-client
 def is_available(cls):
     return diagnose.check_executable('aplay')
コード例 #15
0
ファイル: tts.py プロジェクト: tdmike/SASCHA
 def is_available(cls):
     return (
         platform.system() == "darwin" and diagnose.check_executable("say") and diagnose.check_executable("afplay")
     )
コード例 #16
0
ファイル: stt.py プロジェクト: gravytrain/jasper-client
 def is_available(cls):
     return diagnose.check_executable('julius')
コード例 #17
0
ファイル: tts.py プロジェクト: giladfr/jasper-client
 def is_available(cls):
     return (super(cls, cls).is_available()
             and diagnose.check_executable('ivona_tts'))