Skip to content

Commit 38d5f81

Browse files
Merge pull request #22 from analyticsinmotion/development
feat: add Google Cloud Speech-to-Text integration documentation
2 parents e708365 + a923592 commit 38d5f81

8 files changed

Lines changed: 391 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
<a href="https://decibri.dev/docs/node/integrations/assemblyai.html"><img src="https://img.shields.io/badge/AssemblyAI-cloud-blue" alt="AssemblyAI"></a>&nbsp;
3838
<a href="https://decibri.dev/docs/node/integrations/mistral-voxtral.html"><img src="https://img.shields.io/badge/Mistral-cloud-blue" alt="Mistral"></a>&nbsp;
3939
<a href="https://decibri.dev/docs/node/integrations/aws-transcribe.html"><img src="https://img.shields.io/badge/AWS_Transcribe-cloud-blue" alt="AWS Transcribe"></a>&nbsp;
40+
<a href="https://decibri.dev/docs/node/integrations/google-speech.html"><img src="https://img.shields.io/badge/Google_Speech-cloud-blue" alt="Google Speech-to-Text"></a>&nbsp;
4041
<a href="https://decibri.dev/docs/node/integrations/sherpa-onnx-stt.html"><img src="https://img.shields.io/badge/Sherpa--ONNX-local-brightgreen" alt="Sherpa-ONNX"></a>&nbsp;
4142
<a href="https://decibri.dev/docs/node/integrations/whisper-cpp.html"><img src="https://img.shields.io/badge/Whisper.cpp-local-brightgreen" alt="Whisper.cpp"></a>
4243
</td>

docs/docs/index.html

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@type": "ItemList",
3131
"name": "decibri Integrations",
3232
"description": "Speech-to-text and audio processing integrations for decibri, a cross-platform Node.js microphone streaming library.",
33-
"numberOfItems": 9,
33+
"numberOfItems": 10,
3434
"itemListElement": [
3535
{"@type": "ListItem", "position": 1, "name": "Sherpa-ONNX Speech-to-Text", "url": "https://decibri.dev/docs/node/integrations/sherpa-onnx-stt.html"},
3636
{"@type": "ListItem", "position": 2, "name": "Sherpa-ONNX Keyword Spotting", "url": "https://decibri.dev/docs/node/integrations/sherpa-onnx-kws.html"},
@@ -40,7 +40,8 @@
4040
{"@type": "ListItem", "position": 6, "name": "AssemblyAI Real-Time Transcription", "url": "https://decibri.dev/docs/node/integrations/assemblyai.html"},
4141
{"@type": "ListItem", "position": 7, "name": "OpenAI Real-Time Transcription", "url": "https://decibri.dev/docs/node/integrations/openai-realtime.html"},
4242
{"@type": "ListItem", "position": 8, "name": "Mistral Voxtral Real-Time Transcription", "url": "https://decibri.dev/docs/node/integrations/mistral-voxtral.html"},
43-
{"@type": "ListItem", "position": 9, "name": "AWS Transcribe Streaming", "url": "https://decibri.dev/docs/node/integrations/aws-transcribe.html"}
43+
{"@type": "ListItem", "position": 9, "name": "AWS Transcribe Streaming", "url": "https://decibri.dev/docs/node/integrations/aws-transcribe.html"},
44+
{"@type": "ListItem", "position": 10, "name": "Google Cloud Speech-to-Text Streaming", "url": "https://decibri.dev/docs/node/integrations/google-speech.html"}
4445
]
4546
}
4647
</script>
@@ -161,6 +162,14 @@ <h3>Streaming Transcription</h3>
161162
</a>
162163
</div>
163164

165+
<h3>Google</h3>
166+
<div class="cards-grid">
167+
<a href="node/integrations/google-speech.html" class="doc-card">
168+
<h3>Streaming Transcription</h3>
169+
<p>Real-time cloud speech-to-text with Google Cloud Speech-to-Text.</p>
170+
</a>
171+
</div>
172+
164173
<footer class="doc-footer">
165174
<p>Apache-2.0 &copy; <a href="https://analyticsinmotion.com" target="_blank" rel="noopener noreferrer">Analytics in Motion</a> &middot; <a href="https://github.com/analyticsinmotion/decibri" target="_blank" rel="noopener noreferrer">GitHub</a> &middot; <a href="https://www.npmjs.com/package/decibri" target="_blank" rel="noopener noreferrer">npm</a></p>
166175
</footer>

docs/docs/nav.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@
7474
+ link('/docs/node/integrations/aws-transcribe.html', 'Streaming Transcription')
7575
+ '</div>'
7676
+ '</div>'
77+
+ '<div class="sidebar-sub">'
78+
+ '<div class="sidebar-section-title" style="font-size:10px;letter-spacing:1px">Google</div>'
79+
+ '<div class="sidebar-sub">'
80+
+ link('/docs/node/integrations/google-speech.html', 'Streaming Transcription')
81+
+ '</div>'
82+
+ '</div>'
7783
+ '</div>'
7884
+ '</nav>'
7985
+ '<div class="sidebar-back">'
@@ -124,6 +130,10 @@
124130
+ '<div class="mobile-menu-sub-links">'
125131
+ '<a href="/docs/node/integrations/aws-transcribe.html" onclick="toggleMobileMenu()">Streaming Transcription</a>'
126132
+ '</div>'
133+
+ '<div class="mobile-menu-subsection">Google</div>'
134+
+ '<div class="mobile-menu-sub-links">'
135+
+ '<a href="/docs/node/integrations/google-speech.html" onclick="toggleMobileMenu()">Streaming Transcription</a>'
136+
+ '</div>'
127137
+ '<div class="mobile-menu-divider"></div>'
128138
+ '<a href="/">Back to decibri.dev</a>';
129139

docs/docs/node/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,14 @@ <h3>Streaming Transcription</h3>
232232
</a>
233233
</div>
234234

235+
<h3>Google</h3>
236+
<div class="cards-grid">
237+
<a href="integrations/google-speech.html" class="doc-card">
238+
<h3>Streaming Transcription</h3>
239+
<p>Real-time cloud speech-to-text with Google Cloud Speech-to-Text</p>
240+
</a>
241+
</div>
242+
235243
<footer class="doc-footer">
236244
<p>Apache-2.0 &copy; <a href="https://analyticsinmotion.com" target="_blank" rel="noopener noreferrer">Analytics in Motion</a> &middot; <a href="https://github.com/analyticsinmotion/decibri" target="_blank" rel="noopener noreferrer">GitHub</a> &middot; <a href="https://www.npmjs.com/package/decibri" target="_blank" rel="noopener noreferrer">npm</a></p>
237245
</footer>

0 commit comments

Comments
 (0)