Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Speech Recognition API
Search
Igor Halfeld
September 01, 2017
Programming
0
41
Speech Recognition API
Igor Halfeld
September 01, 2017
Tweet
Share
More Decks by Igor Halfeld
See All by Igor Halfeld
Modular monoliths with fastify
igorhalfeld
0
180
How to migrate legacy frontend?
igorhalfeld
1
120
Patterns for perfect components in Vue.js
igorhalfeld
0
110
Clean Architecture no Front-end (update 2021-05-11)
igorhalfeld
0
52
Step by step I followed a career in software
igorhalfeld
0
700
Using AI to create memes
igorhalfeld
0
520
Deninho, the TS children
igorhalfeld
1
210
Micro Front-ends, what they don't tell you
igorhalfeld
0
380
CSS in JavaScripto, the anti-pattern that is good
igorhalfeld
1
90
Other Decks in Programming
See All in Programming
はじめてのDSPy - 言語モデルを『プロンプト』ではなく『プログラミング』するための仕組み
masahiro_nishimi
4
17k
NIKKEI Tech Talk#38
cipepser
0
340
釣り地図SNSにおける有料機能の実装
nokonoko1203
0
200
KoogではじめるAIエージェント開発
hiroaki404
1
210
NixOS + Kubernetesで構築する自宅サーバーのすべて
ichi_h3
0
1.3k
GC25 Recap: The Code You Reviewed is Not the Code You Built / #newt_gophercon_tour
mazrean
0
130
マンガアプリViewerの大画面対応を考える
kk__777
0
430
Node-REDのノードの開発・活用事例とコミュニティとの関わり(Node-RED Con Nagoya 2025)
404background
0
110
Migration to Signals, Resource API, and NgRx Signal Store
manfredsteyer
PRO
0
130
マイベストのシンプルなデータ基盤の話 - Googleスイートとのつき合い方 / mybest-simple-data-architecture-google-nized
snhryt
0
110
フロントエンド開発のためのブラウザ組み込みAI入門
masashi
7
3.6k
SODA - FACT BOOK(JP)
sodainc
1
9k
Featured
See All Featured
RailsConf 2023
tenderlove
30
1.3k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
130k
Site-Speed That Sticks
csswizardry
13
940
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
Making Projects Easy
brettharned
120
6.4k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
31
2.7k
Facilitating Awesome Meetings
lara
57
6.6k
Why You Should Never Use an ORM
jnunemaker
PRO
60
9.6k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.2k
How STYLIGHT went responsive
nonsquared
100
5.9k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Transcript
Speech Recognition API
Quem sou eu?
None
None
None
None
Como eu uso esse cara?
var r = new webkitSpeechRecognition() r.lang = ‘pt-BR’ r.start()
... r.onresult = evt => { } const txt =
evt.results[0][0].transcript console.log(txt)
None
continuous interimResults grammars lang maxAlternatives onaudioend onaudiostart onend onerror onnomatch
onresult onsoundend onsoundstart onspeechend onspeechstart onstart
None
DEMO
http://goo.gl/iz1hL4
None