質問編集履歴

4

index.html追記

2021/10/20 02:02

投稿

yy_tn
yy_tn

スコア299

test CHANGED
File without changes
test CHANGED
@@ -395,3 +395,69 @@
395
395
 
396
396
 
397
397
  ```
398
+
399
+
400
+
401
+
402
+
403
+ 2021/10/20 追記
404
+
405
+ ```html
406
+
407
+ <!DOCTYPE html>
408
+
409
+ <html>
410
+
411
+
412
+
413
+ <head>
414
+
415
+ <title>Twilio MediaStreams</title>
416
+
417
+ </head>
418
+
419
+
420
+
421
+ <body>
422
+
423
+ <h1>Twilio MediaStreams</h1>
424
+
425
+ <h3>
426
+
427
+ リアルタイムで話した内容がテキストに変換されます
428
+
429
+ </h3>
430
+
431
+ <p id="transcription-container"></p>
432
+
433
+ <script>
434
+
435
+ document.addEventListener("DOMContentLoaded", event => {
436
+
437
+ webSocket = new WebSocket("ws://localhost:8080");
438
+
439
+ webSocket.onmessage = function(msg) {
440
+
441
+ const data = JSON.parse(msg.data);
442
+
443
+ if (data.event === "interim-transcription") {
444
+
445
+ document.getElementById("transcription-container").innerHTML =
446
+
447
+ data.text;
448
+
449
+ }
450
+
451
+ };
452
+
453
+ });
454
+
455
+ </script>
456
+
457
+ </body>
458
+
459
+
460
+
461
+ </html>
462
+
463
+ ```

3

タグ追加

2021/10/20 02:01

投稿

yy_tn
yy_tn

スコア299

test CHANGED
File without changes
test CHANGED
File without changes

2

タイトルに追記

2021/10/14 07:53

投稿

yy_tn
yy_tn

スコア299

test CHANGED
@@ -1 +1 @@
1
- Azure Speech To Textで言ってない言葉が返ってくる
1
+ Azure Speech To Textで言ってない言葉が返ってくる(誤変換、誤認識ではなく明らかに異なる)
test CHANGED
@@ -70,7 +70,7 @@
70
70
 
71
71
 
72
72
 
73
- 実際に喋ったタイミングでテキストが返ってきて表示されるので、入力した音声自体は正しくAzure側に渡せてるされていると思うのですが…
73
+ 実際に喋ったタイミングでテキストが返ってきて表示されるので、入力した音声自体は正しくAzure側に渡せていると思うのですが…
74
74
 
75
75
 
76
76
 

1

タグ追加、文章一部修正

2021/10/14 07:50

投稿

yy_tn
yy_tn

スコア299

test CHANGED
File without changes
test CHANGED
@@ -76,7 +76,7 @@
76
76
 
77
77
  「もし」や「もしもし」等の言葉から察するに、過去にそう喋った内容がいつまでも出ている?のかなと
78
78
 
79
- 考えているのですが…
79
+ 考えているのですが、nodeの再起動等も何回もしているので、ずっと残っているというのもよくわかりません
80
80
 
81
81
 
82
82