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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
title: Conversational Analysis
type: community
group: Audio/Speech Processing
image: /static/templates/thumbnail-conversation-sentiment.png
details: |
  <h1>Analyse dialogue utterances and markup facts and sentiment aspects</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>call center quality, customer service analysis, sales call analysis, therapy session analysis, meeting transcription, interview analysis, focus group research, market research, podcast analysis, conference call analysis, legal deposition, telehealth consultations</dd>
    <dt>Associated Models</dt>
    <dd>conversation mining, dialogue act classification, sentiment analysis, emotion recognition</dd>
    <dt>Domain Terminology</dt>
    <dd>turn-taking, conversational AI, dialogue systems, discourse analysis, speech sentiment</dd>
  </dl>
config: |
  <View>
      <Audio name="audio" value="$audio"
             hotkey="space" sync="text"/>
      <Header value="Transcript"/>
      <Paragraphs audioUrl="$audio"
                  sync="audio"
                  name="text"
                  value="$text"
                  layout="dialogue"
                  textKey="text"
                  nameKey="author"
                  granularity="paragraph"
                  contextscroll="true" />
       <View style="position: sticky">
        <Header value="Sentiment Labels"/>
        <ParagraphLabels name="label" toName="text">
          <Label value="Positive1" background="#00ff00"/>
          <Label value="Negative" background="#ff0000"/>
        </ParagraphLabels>
      </View>
  </View>
  <!-- { "data": {
    "text": [
      {
        "end": 1.5,
        "text": "Dont you hate that?",
        "start": 0,
        "author": "Mia Wallace"
      },
      {
        "text": "Hate what?",
        "start": 1.5,
        "author": "Vincent Vega:",
        "duration": 3
      },
      {
        "end": 7,
        "text": "Uncomfortable silences. Why do we feel its necessary to yak about nonsense in order to be comfortable?",
        "start": 4.5,
        "author": "Mia Wallace:"
      },
      {
        "end": 10,
        "text": "I dont know. Thats a good question.",
        "start": 8,
        "author": "Vincent Vega:"
      },
      {
        "text": "Thats when you know you found somebody really special. When you can just shut the door closed a minute, and comfortably share silence.",
        "start": 10,
        "author": "Mia Wallace:"
      }
    ],
    "audio": "/static/samples/game.wav"
  }}
  -->