@norskvideo/norsk-studio-alpha 1.27.0-2025-10-29-e18a341b → 1.27.0-2025-10-30-686b5880

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,266 +0,0 @@
1
- # This file has been generated, please edit types.source.yaml instead
2
-
3
- openapi: 3.0.3
4
- info:
5
- title: Output Player API
6
- version: 1.0.0
7
- paths:
8
- /timeline:
9
- get:
10
- summary: Returns all the available timelines in the store
11
- description: Returns all the available timelines in the store
12
- responses:
13
- "200":
14
- description: Successful operation
15
- content:
16
- application/json:
17
- schema: &a3
18
- type: object
19
- properties:
20
- active: &a2
21
- type: object
22
- properties:
23
- audio: &a1
24
- type: object
25
- properties:
26
- startIso:
27
- type: string
28
- format: date
29
- durationMs:
30
- type: number
31
- streamNum:
32
- type: number
33
- versionNum:
34
- type: number
35
- tamsId:
36
- type: string
37
- active:
38
- type: boolean
39
- required:
40
- - startIso
41
- - durationMs
42
- - versionNum
43
- - active
44
- video: *a1
45
- sessionNum:
46
- type: integer
47
- required:
48
- - audio
49
- - video
50
- - sessionNum
51
- sessions:
52
- type: array
53
- items: *a2
54
- cuts:
55
- type: array
56
- items: &a4
57
- type: object
58
- properties:
59
- id:
60
- type: number
61
- percent:
62
- type: number
63
- createdMs:
64
- type: number
65
- required:
66
- - id
67
- - percent
68
- - createdMs
69
- required:
70
- - sessions
71
- - cuts
72
- /cut:
73
- post:
74
- summary: Creates a cut
75
- description: Creates a cut and returns the URL to query in order to get the output
76
- requestBody:
77
- description: Details about how this cut should take place
78
- content:
79
- application/json:
80
- schema:
81
- type: object
82
- properties:
83
- start:
84
- type: string
85
- format: date
86
- duration_s:
87
- type: integer
88
- required:
89
- - start
90
- - duration_s
91
- responses:
92
- "204":
93
- description: Successful operation
94
- content:
95
- application/json:
96
- schema:
97
- type: object
98
- description: URL to query the status of the cut
99
- properties:
100
- url:
101
- type: string
102
- format: uri
103
- cutId:
104
- type: string
105
- required:
106
- - url
107
- - cutId
108
- "400":
109
- description: Unsuccessful operation
110
- content:
111
- application/json:
112
- schema:
113
- type: string
114
- description: The reason for failure
115
- /cut/{id}:
116
- get:
117
- summary: Get the current status of a cut
118
- description: Returns the current status of the cut identified by the given id.
119
- parameters:
120
- - name: id
121
- in: path
122
- required: true
123
- schema:
124
- type: integer
125
- responses:
126
- "200":
127
- description: Successful operation returning the status of the cut
128
- content:
129
- application/json:
130
- schema: &a8
131
- oneOf:
132
- - &a5
133
- type: object
134
- properties:
135
- status:
136
- type: string
137
- enum:
138
- - not_ready
139
- description: Indicates the cut is not ready yet.
140
- percent_complete:
141
- type: number
142
- description: Percentage of the cut that is complete.
143
- required:
144
- - status
145
- - percent_complete
146
- - &a6
147
- type: object
148
- properties:
149
- status:
150
- type: string
151
- enum:
152
- - ready
153
- description: Indicates the cut is ready.
154
- url:
155
- type: string
156
- format: uri
157
- description: URL where the produced file can be accessed.
158
- required:
159
- - status
160
- - url
161
- - &a7
162
- type: object
163
- properties:
164
- status:
165
- type: string
166
- enum:
167
- - failed
168
- description: Indicates the cut has failed.
169
- reason:
170
- type: string
171
- description: Reason for the failure.
172
- required:
173
- - status
174
- - reason
175
- discriminator:
176
- propertyName: status
177
- "404":
178
- description: Cut not found
179
- content:
180
- application/json:
181
- schema:
182
- type: string
183
- description: The reason for failure
184
- /download/{cut_id}:
185
- get:
186
- summary: Download generated mp4 file for a cut
187
- description: Retrieves the generated mp4 file associated with the given cut id.
188
- parameters:
189
- - name: cut_id
190
- in: path
191
- required: true
192
- schema:
193
- type: integer
194
- responses:
195
- "200":
196
- description: Successful operation - returns the mp4 file.
197
- content:
198
- video/mp4:
199
- schema:
200
- type: string
201
- format: binary
202
- "404":
203
- description: Cut or file not found.
204
- content:
205
- application/json:
206
- schema:
207
- type: object
208
- properties:
209
- message:
210
- type: string
211
- required:
212
- - message
213
- "500":
214
- description: Server error.
215
- content:
216
- application/json:
217
- schema:
218
- type: object
219
- properties:
220
- message:
221
- type: string
222
- required:
223
- - message
224
- components:
225
- schemas:
226
- RecorderSettings:
227
- type: object
228
- properties:
229
- id:
230
- type: string
231
- displayName:
232
- type: string
233
- storePath:
234
- type: string
235
- cutsPath:
236
- type: string
237
- nullable: true
238
- expiryHours:
239
- type: number
240
- pruneIntervalMs:
241
- type: number
242
- nullable: true
243
- required:
244
- - id
245
- - displayName
246
- - storePath
247
- - expiryHours
248
- RecordedStreams: *a3
249
- StreamPair: *a2
250
- StreamVersion: *a1
251
- Cut: *a4
252
- AvailableData:
253
- type: object
254
- properties:
255
- start:
256
- type: string
257
- format: date
258
- duration_s:
259
- type: integer
260
- required:
261
- - start
262
- - duration_s
263
- CutNotReady: *a5
264
- CutReady: *a6
265
- CutFailed: *a7
266
- CutStatus: *a8
@@ -1,82 +0,0 @@
1
- # This file has been generated, please edit types.source.yaml instead
2
-
3
- openapi: 3.0.0
4
- info:
5
- title: Action Replay
6
- version: 1.0.0
7
- components:
8
- schemas:
9
- ActionReplayConfig:
10
- type: object
11
- properties:
12
- id:
13
- type: string
14
- displayName:
15
- type: string
16
- __global:
17
- type: object
18
- properties:
19
- hardware:
20
- type: string
21
- enum:
22
- - auto
23
- - software
24
- - nvidia
25
- - nvidiaAV1
26
- - quadra
27
- - quadraAV1
28
- notes:
29
- type: string
30
- required:
31
- - id
32
- - displayName
33
- - __global
34
- ActionReplayState:
35
- type: object
36
- properties:
37
- contentPlayerUrl:
38
- type: string
39
- replaying:
40
- type: boolean
41
- required:
42
- - replaying
43
- ActionReplayEvent:
44
- oneOf:
45
- - type: object
46
- properties:
47
- type:
48
- enum:
49
- - content-player-created
50
- url:
51
- type: string
52
- required:
53
- - type
54
- - url
55
- - type: object
56
- properties:
57
- type:
58
- enum:
59
- - replay-started
60
- required:
61
- - type
62
- - type: object
63
- properties:
64
- type:
65
- enum:
66
- - replay-finished
67
- required:
68
- - type
69
- ActionReplayCommand:
70
- type: object
71
- properties:
72
- type:
73
- enum:
74
- - do-replay
75
- from:
76
- type: number
77
- duration:
78
- type: number
79
- required:
80
- - type
81
- - from
82
- - duration
@@ -1,84 +0,0 @@
1
- # This file has been generated, please edit types.source.yaml instead
2
-
3
- openapi: 3.0.0
4
- info:
5
- title: Audio Level
6
- version: 1.0.0
7
- components:
8
- schemas:
9
- AudioLevelSettings:
10
- type: object
11
- properties:
12
- id:
13
- type: string
14
- displayName:
15
- type: string
16
- defaultGain:
17
- type: number
18
- notes:
19
- type: string
20
- required:
21
- - id
22
- - displayName
23
- - defaultGain
24
- AudioLevelState:
25
- type: object
26
- properties:
27
- levels:
28
- type: object
29
- properties:
30
- peak:
31
- type: number
32
- rms:
33
- type: number
34
- required:
35
- - peak
36
- - rms
37
- sliderGain:
38
- type: number
39
- nodeGain:
40
- type: number
41
- AudioLevelEvent:
42
- oneOf:
43
- - type: object
44
- properties:
45
- type:
46
- enum:
47
- - audio-levels
48
- levels:
49
- type: object
50
- properties:
51
- peak:
52
- type: number
53
- rms:
54
- type: number
55
- required:
56
- - peak
57
- - rms
58
- required:
59
- - type
60
- - levels
61
- - type: object
62
- properties:
63
- type:
64
- enum:
65
- - set-gain
66
- sliderGain:
67
- type: number
68
- nodeGain:
69
- type: number
70
- required:
71
- - type
72
- - sliderGain
73
- - nodeGain
74
- AudioLevelCommand:
75
- type: object
76
- properties:
77
- type:
78
- enum:
79
- - set-gain
80
- value:
81
- type: number
82
- required:
83
- - type
84
- - value
@@ -1,23 +0,0 @@
1
- # This file has been generated, please edit types.source.yaml instead
2
-
3
- openapi: 3.0.0
4
- info:
5
- title: Delay all
6
- version: 1.0.0
7
- components:
8
- schemas:
9
- DelayAllConfig:
10
- type: object
11
- properties:
12
- id:
13
- type: string
14
- displayName:
15
- type: string
16
- delayMs:
17
- type: number
18
- notes:
19
- type: string
20
- required:
21
- - id
22
- - displayName
23
- - delayMs
@@ -1,29 +0,0 @@
1
- # This file has been generated, please edit types.source.yaml instead
2
-
3
- openapi: 3.0.0
4
- info:
5
- title: Whisper Transcribe
6
- version: 1.0.0
7
- components:
8
- schemas:
9
- WhisperTranscribeConfig:
10
- type: object
11
- properties:
12
- id:
13
- type: string
14
- displayName:
15
- type: string
16
- model:
17
- type: string
18
- translate:
19
- type: boolean
20
- language:
21
- type: string
22
- notes:
23
- type: string
24
- required:
25
- - id
26
- - displayName
27
- - model
28
- - translate
29
- - language