Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
title: Speech Transcription
type: community
group: Audio/Speech Processing
image: /static/templates/thumbnail-audio-sentiment.png
details: |
  <h1>Transcribe audio recordings with chunks</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>medical dictation, legal transcription, podcast transcription, interview transcription, meeting minutes, lecture notes, courtroom reporting, journalism, accessibility services, broadcast media, customer service calls, research interviews</dd>
    <dt>Associated Models</dt>
    <dd>Whisper, Wav2Vec2, DeepSpeech, Google Speech-to-Text, Azure Speech Services</dd>
    <dt>Domain Terminology</dt>
    <dd>speech-to-text, audio transcription, voice recognition, dictation, transcription with sentiment</dd>
  </dl>
config: |
  <View>
      <Audio name="audio" value="$audio" />
      <Labels name="label" toName="audio">
        <Label value="Speech"/>
        <Label value="Noise" background="grey"/>
      </Labels>
      <TextArea name="transcription" toName="audio"
                perRegion="true" whenTagName="label" whenLabelValue="Speech"
                displayMode="region-list"/>
      <Choices name="sentiment" toName="audio" showInline="true"
               perRegion="true" whenTagName="label" whenLabelValue="Speech">
          <Choice value="Positive" html="&lt;span style='font-size: 45px; vertical-align: middle;'&gt; &#128512; &lt;/span&gt;"/>
          <Choice value="Neutral" html="&lt;span style='font-size: 45px; vertical-align: middle;'&gt; &#128528; &lt;/span&gt;"/>
          <Choice value="Negative" html="&lt;span style='font-size: 45px; vertical-align: middle;'&gt; &#128577; &lt;/span&gt;"/>
      </Choices>                               
    </View>