-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 KB
/
package.json
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
{
"name": "live-transcription-open-source-toolbox",
"version": "1.0.0",
"description": "The Live Transcription Open Source Toolbox is a set of tools designed to operate and manage, at scale, transcription sessions from inbound audiovisual streams. Particularly in enterprises or structures managing multiple meeting rooms, whether physical or virtual.",
"keywords": [
"ASR",
"STT",
"Streaming",
"SRT",
"multilingual",
"closed-captions",
"transcription",
"speech-to-text",
"audio-processing",
"real-time",
"speech-recognition",
"natural-language-processing",
"machine-learning",
"AI",
"NLP",
"audio-streaming",
"open-source",
"speech-analysis",
"gstreamer",
"ffmpeg",
"aac",
"opus",
"mp3",
"ogg"
],
"main": "index.js",
"scripts": {
"start": "concurrently --raw \"npm run start:session-api\" \"npm run start:scheduler\" \"npm run start:transcriber\"",
"start:session-api": "DEBUG=session-api:* npx nodemon Session-API/Session-API.js",
"start:transcriber": "DEBUG=transcriber:* npx nodemon --exec \"bash -c 'while true; do node Transcriber/transcriber.js; sleep 1; done'\"",
"start:scheduler": "DEBUG=scheduler:* npx nodemon Scheduler/scheduler.js"
},
"author": "European Commission - DGSCIC",
"contributors": [
{
"name": "Damien Laine",
"email": "[email protected]",
"organization": "LINAGORA",
"role": "contractor"
},
{
"name": "Jean-Sébastien Bevilacqua",
"email": "[email protected]",
"organization": "LINAGORA",
"role": "contractor"
}
],
"license": "EUPL",
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^2.0.22"
}
}