retrotalk 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 harayoki
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # RetroTalk
2
+
3
+ 80年代の日本のNEC製パソコン(PC6001系)には独特な響きの日本語を話す機能がありました。
4
+ そのパソコンのボイス機能と同じ基本的な仕組みを使って日本語をしゃべらせるJavaScript製ライブラリがRetroTalkです。
5
+
6
+ * 実行時は外部ライブラリに依存しません。
7
+ * 当時のパソコンと声の雰囲気はかなり似ていますが、全く同じ声を出す事を目的としていません。
8
+ * 発声の詳細はカスタマイズされています。
9
+ * 独自の制御文でコントロールします。
10
+
11
+ ## QUICK START
12
+
13
+ ```html
14
+ <script src="dist/retrotalk.js"></script>
15
+ <script>
16
+ const voice = new MmsxxRetroTalk(new AudioContext());
17
+ voice.talk('コンニチワ');
18
+ </script>
19
+ ```
20
+
21
+ ※ ブラウザの制限により、声が出るのは、ユーザーが一度ページ操作(クリックなど)をした後となります。
22
+
23
+ ## ドキュメント
24
+
25
+ * [デモとマニュアル](https://harayoki.github.io/retrotalk/)
26
+ * [API リファレンス](https://harayoki.github.io/retrotalk/api/)
27
+ * [声の比較](https://harayoki.github.io/retrotalk/listen/)
28
+
29
+ `example/index.html` をブラウザで開くと、そのまま試せます。
30
+
31
+ ## ビルド方法
32
+
33
+ ```
34
+ npm install
35
+ npm run build
36
+ ```
37
+
38
+ `dist/retrotalk.js`(未圧縮版)と `dist/retrotalk.min.js`(圧縮版)が生成されます。
39
+
40
+ ## ライセンス
41
+
42
+ MIT License です。全文は [LICENSE](LICENSE) にあります。
43
+ 出力された音声ファイルの利用に制限はありません。
44
+
45
+ ※ エンジンや出力ファイルが原因で生じたトラブル・損害について、作者は一切の責任を負わない事とします。