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
170
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
88
Other Decks in Programming
See All in Programming
#QiitaBash MCPのセキュリティ
ryosukedtomita
1
1.3k
なぜ「共通化」を考え、失敗を繰り返すのか
rinchoku
1
650
ふつうの技術スタックでアート作品を作ってみる
akira888
1
860
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
12
4.5k
Result型で“失敗”を型にするPHPコードの書き方
kajitack
5
660
PicoRuby on Rails
makicamel
2
130
すべてのコンテキストを、 ユーザー価値に変える
applism118
3
1.3k
ソフトウェア品質を数字で捉える技術。事業成長を支えるシステム品質の マネジメント
takuya542
1
13k
Hypervel - A Coroutine Framework for Laravel Artisans
albertcht
1
130
Hack Claude Code with Claude Code
choplin
4
2.1k
iOS 26にアップデートすると実機でのHot Reloadができない?
umigishiaoi
0
130
Blazing Fast UI Development with Compose Hot Reload (droidcon New York 2025)
zsmb
1
290
Featured
See All Featured
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
6
300
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
740
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Thoughts on Productivity
jonyablonski
69
4.7k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Automating Front-end Workflow
addyosmani
1370
200k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
35
2.4k
The Power of CSS Pseudo Elements
geoffreycrofte
77
5.9k
Facilitating Awesome Meetings
lara
54
6.4k
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