1.0.0 • Published 4 years ago

adf-plugin-text-to-speech v1.0.0

Weekly downloads
-
License
EULA
Repository
-
Last release
4 years ago

ADF TextToSpeech Plugin

音声合成ライブラリは、スマーデバイス上で動作するアプリケーションに、音声合成機能を提供します。

導入方法

cordova plugin add adf-plugin-text-to-speech

対応OS

  • Android
  • iOS
  • Windows

使用例

index.html

 <!DOCTYPE html>
 <html>
 <head>
    <!-- UTF-8を指定してください。 -->
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 </head>
    <body>
        <script type='text/javascript' src='cordova.js'></script>
        <script type='text/javascript' src='index.js'></script>
    </body>
</html>

index.js

document.addEventListener("deviceready", function () {
    ftts.speak("こんにちは");
});
1.0.0

4 years ago