意外と身近にあった!

音声認識

デモはこちら

https://youtu.be/e5dR05QGzXA

Web Speech API for Voice Data Entry

Cameron Jacoby

https://www.stitchfix.com/

Stitch Fix ホームページ

寸法を測る工程

大量の寸法

腰痛

W3C Web Speech API

Google Chrome

initializeSpeechRecognition: ->
  @recognition = new webkitSpeechRecognition()
  @recognition.lang = 'ja-JP'
  @recognition.continuous = true
  @recognition.interimResults = false
  @recognition.start()

  @recognition.onend = (e) =>
    @recognition.start()
recordVoiceResults: ->
  @recognition.onresult = (e) =>
    result = e.results[e.resultIndex]
    transcript = result[0].transcript.trim()
if typeof(webkitSpeechRecognition) == typeof(Function)
  @initializeSpeechRecognition()
var match = instruction.match(/^(.+)は(.+)です$/);
if (match) {
  switch (match[1]) {
    case "名前":
      // 名前を設定
      break;
    case "都道府県":
      // 都道府県を設定
      break;
    case "生年月日":
      // 生年月日を設定
  }
} else if (instruction == "スライドに行ってください") {
  // スライドに遷移
}

Web Speech API Demo

https://www.google.com/intl/en/chrome/demos/speech.html

Web Speech API Demo

https://www.google.com/intl/en/chrome/demos/speech.html

多言語対応

ブラウザー対応

:skull: :skull: :skull: :skull: :skull: :skull: :skull:

突然死

:skull: :skull: :skull: :skull: :skull: :skull: :skull:

This is an experimental technology

意外と身近にあった!

音声認識

デモはこちら