-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampleTranscript.ts
More file actions
93 lines (92 loc) · 2.6 KB
/
sampleTranscript.ts
File metadata and controls
93 lines (92 loc) · 2.6 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import type { TranscriptData } from '@transcript-parser/types'
export const sampleTranscript: TranscriptData = {
id: 'transcript-sample-001',
speakers: [
{ id: 1, name: 'Speaker 1', color: 'blue' },
{ id: 2, name: 'Speaker 2', color: 'emerald' },
{ id: 3, name: 'Speaker 3', color: 'purple' },
],
entries: [
{
id: '1',
speaker: 'Speaker 1',
speakerNumber: 1,
startTime: 0,
endTime: 6,
text: "Welcome everyone to today's meeting. I'd like to start by discussing our Q4 objectives.",
confidence: 0.96,
},
{
id: '2',
speaker: 'Speaker 2',
speakerNumber: 2,
startTime: 7,
endTime: 12,
text: "Thanks for having me. I'm excited to share our progress on the marketing initiatives.",
confidence: 0.94,
},
{
id: '3',
speaker: 'Speaker 1',
speakerNumber: 1,
startTime: 12,
endTime: 17,
text: 'Great! Before we dive into that, does anyone have any questions about the agenda?',
confidence: 0.97,
},
{
id: '4',
speaker: 'Speaker 3',
speakerNumber: 3,
startTime: 18,
endTime: 23,
text: 'Yes, I was wondering if we could also touch on the budget allocation for the new project.',
confidence: 0.95,
},
{
id: '5',
speaker: 'Speaker 1',
speakerNumber: 1,
startTime: 23,
endTime: 29,
text: "Absolutely, we'll cover that in the finance section. Let's proceed with the marketing update first.",
confidence: 0.96,
},
{
id: '6',
speaker: 'Speaker 2',
speakerNumber: 2,
startTime: 30,
endTime: 41,
text: "Perfect. So we've seen a 35% increase in engagement across our social media platforms this quarter. The new campaign targeting millennials has been particularly successful.",
confidence: 0.93,
},
{
id: '7',
speaker: 'Speaker 3',
speakerNumber: 3,
startTime: 41,
endTime: 45,
text: "That's impressive! What were the main drivers of that growth?",
confidence: 0.98,
},
{
id: '8',
speaker: 'Speaker 2',
speakerNumber: 2,
startTime: 46,
endTime: 54,
text: 'We focused on short-form video content and influencer partnerships. The ROI has exceeded our initial projections by about 20%.',
confidence: 0.92,
},
],
metadata: {
fileName: 'meeting-2025-12-17.mp4',
fileSize: 15728640, // ~15MB
duration: 54,
createdAt: new Date().toISOString(),
processedAt: new Date().toISOString(),
videoFormat: 'video/mp4',
model: 'gemini-1.5-pro',
},
}