@norskvideo/norsk-api 1.0.391 → 1.0.392
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.
- package/lib/media_grpc_pb.d.ts +10 -9
- package/lib/media_grpc_pb.js +21 -19
- package/lib/media_pb.d.ts +245 -13
- package/lib/media_pb.js +299 -14
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +419 -14
- package/package.json +1 -1
package/lib/media_grpc_pb.d.ts
CHANGED
|
@@ -201,12 +201,12 @@ interface IMediaService_ICreateInputFileWav extends grpc.MethodDefinition<media_
|
|
|
201
201
|
responseSerialize: grpc.serialize<media_pb.FileWavInputEvent>;
|
|
202
202
|
responseDeserialize: grpc.deserialize<media_pb.FileWavInputEvent>;
|
|
203
203
|
}
|
|
204
|
-
interface IMediaService_ICreateInputAudioSignalGenerator extends grpc.MethodDefinition<media_pb.
|
|
204
|
+
interface IMediaService_ICreateInputAudioSignalGenerator extends grpc.MethodDefinition<media_pb.AudioSignalGeneratorMessage, media_pb.AudioSignalGeneratorEvent> {
|
|
205
205
|
path: "/norsk.api.media.Media/CreateInputAudioSignalGenerator";
|
|
206
|
-
requestStream:
|
|
206
|
+
requestStream: true;
|
|
207
207
|
responseStream: true;
|
|
208
|
-
requestSerialize: grpc.serialize<media_pb.
|
|
209
|
-
requestDeserialize: grpc.deserialize<media_pb.
|
|
208
|
+
requestSerialize: grpc.serialize<media_pb.AudioSignalGeneratorMessage>;
|
|
209
|
+
requestDeserialize: grpc.deserialize<media_pb.AudioSignalGeneratorMessage>;
|
|
210
210
|
responseSerialize: grpc.serialize<media_pb.AudioSignalGeneratorEvent>;
|
|
211
211
|
responseDeserialize: grpc.deserialize<media_pb.AudioSignalGeneratorEvent>;
|
|
212
212
|
}
|
|
@@ -820,7 +820,7 @@ export interface IMediaServer extends grpc.UntypedServiceImplementation {
|
|
|
820
820
|
createInputFileImage: grpc.handleServerStreamingCall<media_pb.FileImageInputConfiguration, media_pb.FileImageInputEvent>;
|
|
821
821
|
createInputFileMp4: grpc.handleBidiStreamingCall<media_pb.FileMp4InputMessage, media_pb.FileMp4InputEvent>;
|
|
822
822
|
createInputFileWav: grpc.handleServerStreamingCall<media_pb.FileWavInputConfiguration, media_pb.FileWavInputEvent>;
|
|
823
|
-
createInputAudioSignalGenerator: grpc.
|
|
823
|
+
createInputAudioSignalGenerator: grpc.handleBidiStreamingCall<media_pb.AudioSignalGeneratorMessage, media_pb.AudioSignalGeneratorEvent>;
|
|
824
824
|
createInputBrowser: grpc.handleBidiStreamingCall<media_pb.BrowserInputMessage, media_pb.BrowserInputEvent>;
|
|
825
825
|
createInputWhip: grpc.handleBidiStreamingCall<media_pb.WhipInputMessage, media_pb.WhipInputEvent>;
|
|
826
826
|
createInputSrt: grpc.handleBidiStreamingCall<media_pb.SrtInputMessage, media_pb.SrtInputEvent>;
|
|
@@ -922,8 +922,9 @@ export interface IMediaClient {
|
|
|
922
922
|
createInputFileMp4(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.FileMp4InputMessage, media_pb.FileMp4InputEvent>;
|
|
923
923
|
createInputFileWav(request: media_pb.FileWavInputConfiguration, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.FileWavInputEvent>;
|
|
924
924
|
createInputFileWav(request: media_pb.FileWavInputConfiguration, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.FileWavInputEvent>;
|
|
925
|
-
createInputAudioSignalGenerator(
|
|
926
|
-
createInputAudioSignalGenerator(
|
|
925
|
+
createInputAudioSignalGenerator(): grpc.ClientDuplexStream<media_pb.AudioSignalGeneratorMessage, media_pb.AudioSignalGeneratorEvent>;
|
|
926
|
+
createInputAudioSignalGenerator(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.AudioSignalGeneratorMessage, media_pb.AudioSignalGeneratorEvent>;
|
|
927
|
+
createInputAudioSignalGenerator(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.AudioSignalGeneratorMessage, media_pb.AudioSignalGeneratorEvent>;
|
|
927
928
|
createInputBrowser(): grpc.ClientDuplexStream<media_pb.BrowserInputMessage, media_pb.BrowserInputEvent>;
|
|
928
929
|
createInputBrowser(options: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.BrowserInputMessage, media_pb.BrowserInputEvent>;
|
|
929
930
|
createInputBrowser(metadata: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.BrowserInputMessage, media_pb.BrowserInputEvent>;
|
|
@@ -1149,8 +1150,8 @@ export class MediaClient extends grpc.Client implements IMediaClient {
|
|
|
1149
1150
|
public createInputFileMp4(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.FileMp4InputMessage, media_pb.FileMp4InputEvent>;
|
|
1150
1151
|
public createInputFileWav(request: media_pb.FileWavInputConfiguration, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.FileWavInputEvent>;
|
|
1151
1152
|
public createInputFileWav(request: media_pb.FileWavInputConfiguration, metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientReadableStream<media_pb.FileWavInputEvent>;
|
|
1152
|
-
public createInputAudioSignalGenerator(
|
|
1153
|
-
public createInputAudioSignalGenerator(
|
|
1153
|
+
public createInputAudioSignalGenerator(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.AudioSignalGeneratorMessage, media_pb.AudioSignalGeneratorEvent>;
|
|
1154
|
+
public createInputAudioSignalGenerator(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.AudioSignalGeneratorMessage, media_pb.AudioSignalGeneratorEvent>;
|
|
1154
1155
|
public createInputBrowser(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.BrowserInputMessage, media_pb.BrowserInputEvent>;
|
|
1155
1156
|
public createInputBrowser(metadata?: grpc.Metadata, options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.BrowserInputMessage, media_pb.BrowserInputEvent>;
|
|
1156
1157
|
public createInputWhip(options?: Partial<grpc.CallOptions>): grpc.ClientDuplexStream<media_pb.WhipInputMessage, media_pb.WhipInputEvent>;
|
package/lib/media_grpc_pb.js
CHANGED
|
@@ -173,26 +173,26 @@ function deserialize_norsk_api_media_AudioMixMessage(buffer_arg) {
|
|
|
173
173
|
return media_pb.AudioMixMessage.fromBinary(new Uint8Array(buffer_arg));
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
function
|
|
177
|
-
if (!(arg instanceof media_pb.
|
|
178
|
-
throw new Error('Expected argument of type norsk.api.media.
|
|
176
|
+
function serialize_norsk_api_media_AudioSignalGeneratorEvent(arg) {
|
|
177
|
+
if (!(arg instanceof media_pb.AudioSignalGeneratorEvent)) {
|
|
178
|
+
throw new Error('Expected argument of type norsk.api.media.AudioSignalGeneratorEvent');
|
|
179
179
|
}
|
|
180
180
|
return Buffer.from(arg.toBinary());
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
function
|
|
184
|
-
return media_pb.
|
|
183
|
+
function deserialize_norsk_api_media_AudioSignalGeneratorEvent(buffer_arg) {
|
|
184
|
+
return media_pb.AudioSignalGeneratorEvent.fromBinary(new Uint8Array(buffer_arg));
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
-
function
|
|
188
|
-
if (!(arg instanceof media_pb.
|
|
189
|
-
throw new Error('Expected argument of type norsk.api.media.
|
|
187
|
+
function serialize_norsk_api_media_AudioSignalGeneratorMessage(arg) {
|
|
188
|
+
if (!(arg instanceof media_pb.AudioSignalGeneratorMessage)) {
|
|
189
|
+
throw new Error('Expected argument of type norsk.api.media.AudioSignalGeneratorMessage');
|
|
190
190
|
}
|
|
191
191
|
return Buffer.from(arg.toBinary());
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
function
|
|
195
|
-
return media_pb.
|
|
194
|
+
function deserialize_norsk_api_media_AudioSignalGeneratorMessage(buffer_arg) {
|
|
195
|
+
return media_pb.AudioSignalGeneratorMessage.fromBinary(new Uint8Array(buffer_arg));
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
function serialize_norsk_api_media_AudioSplitMultichannelEvent(arg) {
|
|
@@ -1743,8 +1743,9 @@ createInputDeckLink: {
|
|
|
1743
1743
|
//
|
|
1744
1744
|
// Multiple cards are supported, with all
|
|
1745
1745
|
// Deltacast-supported input resolutions and framerates are supported. The
|
|
1746
|
-
// capture format is currently 8-bit only. All supported audio channels can
|
|
1747
|
-
// additional data such as closed-captions and HDR
|
|
1746
|
+
// capture format is currently 8-bit only. All supported audio channels can
|
|
1747
|
+
// be captured. At present, additional data such as closed-captions and HDR
|
|
1748
|
+
// metadata is not captured.
|
|
1748
1749
|
createInputDeltacast: {
|
|
1749
1750
|
path: '/norsk.api.media.Media/CreateInputDeltacast',
|
|
1750
1751
|
requestStream: true,
|
|
@@ -1800,12 +1801,12 @@ createInputFileWav: {
|
|
|
1800
1801
|
// Generate a test audio signal with a configurable waveform.
|
|
1801
1802
|
createInputAudioSignalGenerator: {
|
|
1802
1803
|
path: '/norsk.api.media.Media/CreateInputAudioSignalGenerator',
|
|
1803
|
-
requestStream:
|
|
1804
|
+
requestStream: true,
|
|
1804
1805
|
responseStream: true,
|
|
1805
|
-
requestType: media_pb.
|
|
1806
|
+
requestType: media_pb.AudioSignalGeneratorMessage,
|
|
1806
1807
|
responseType: media_pb.AudioSignalGeneratorEvent,
|
|
1807
|
-
requestSerialize:
|
|
1808
|
-
requestDeserialize:
|
|
1808
|
+
requestSerialize: serialize_norsk_api_media_AudioSignalGeneratorMessage,
|
|
1809
|
+
requestDeserialize: deserialize_norsk_api_media_AudioSignalGeneratorMessage,
|
|
1809
1810
|
responseSerialize: serialize_norsk_api_media_AudioSignalGeneratorEvent,
|
|
1810
1811
|
responseDeserialize: deserialize_norsk_api_media_AudioSignalGeneratorEvent,
|
|
1811
1812
|
},
|
|
@@ -2328,7 +2329,7 @@ createOutputFileMp4: {
|
|
|
2328
2329
|
// Output WAV files to disk. A WAV output cannot handle
|
|
2329
2330
|
// context changes (for example, a change of sample rate),
|
|
2330
2331
|
// so it is important that the upstream data is normalised.
|
|
2331
|
-
// The file being written to is finalised and closed when
|
|
2332
|
+
// The file being written to is finalised and closed when
|
|
2332
2333
|
// the inbound context becomes empty.
|
|
2333
2334
|
createOutputFileWav: {
|
|
2334
2335
|
path: '/norsk.api.media.Media/CreateOutputFileWav',
|
|
@@ -2499,7 +2500,7 @@ createTransformStreamAlign: {
|
|
|
2499
2500
|
// At runtime, notifications are returned through the stream of
|
|
2500
2501
|
// AudioWatermarkEvent messages, which includes Kantar event information
|
|
2501
2502
|
// and, for offline licenses, a notification of the number of days remaining.
|
|
2502
|
-
// Note that audio watermarking introduces around 50-60ms of delay to the
|
|
2503
|
+
// Note that audio watermarking introduces around 50-60ms of delay to the
|
|
2503
2504
|
// audio stream; Norsk will ensure that all related media streams (e.g.
|
|
2504
2505
|
// video) are kept in sync.
|
|
2505
2506
|
createTransformAudioWatermark: {
|
|
@@ -2571,7 +2572,8 @@ createTransformAncillary: {
|
|
|
2571
2572
|
responseDeserialize: deserialize_norsk_api_media_AncillaryEvent,
|
|
2572
2573
|
},
|
|
2573
2574
|
// *
|
|
2574
|
-
// Attach metadata required for stream contitioning, i.e. forced frame type,
|
|
2575
|
+
// Attach metadata required for stream contitioning, i.e. forced frame type,
|
|
2576
|
+
// segmentation decisioning
|
|
2575
2577
|
createTransformStreamCondition: {
|
|
2576
2578
|
path: '/norsk.api.media.Media/CreateTransformStreamCondition',
|
|
2577
2579
|
requestStream: true,
|
package/lib/media_pb.d.ts
CHANGED
|
@@ -1879,7 +1879,8 @@ export declare class Context extends Message<Context> {
|
|
|
1879
1879
|
* .
|
|
1880
1880
|
* Once received, your code **must** acknowledge the context change
|
|
1881
1881
|
* with a call through a subscription channel `Media.createSubscriptionChannel`,
|
|
1882
|
-
* passing in the `blockingCallRef` to an 'unblock' message; note that if using
|
|
1882
|
+
* passing in the `blockingCallRef` to an 'unblock' message; note that if using
|
|
1883
|
+
* the
|
|
1883
1884
|
* JavaScript SDK then this is automatically handled.
|
|
1884
1885
|
*
|
|
1885
1886
|
* @generated from message norsk.api.media.MultipleContext
|
|
@@ -5199,9 +5200,17 @@ export declare class FileWavOutputEvent extends Message<FileWavOutputEvent> {
|
|
|
5199
5200
|
*/
|
|
5200
5201
|
export declare class SineWave extends Message<SineWave> {
|
|
5201
5202
|
/**
|
|
5203
|
+
* Frequency of the wave
|
|
5204
|
+
*
|
|
5202
5205
|
* @generated from field: float freq = 1;
|
|
5203
5206
|
*/
|
|
5204
5207
|
freq: number;
|
|
5208
|
+
/**
|
|
5209
|
+
* Initial level of the wave (default 0 being a full-scale wave). A negative number or 0.
|
|
5210
|
+
*
|
|
5211
|
+
* @generated from field: float db = 2;
|
|
5212
|
+
*/
|
|
5213
|
+
db: number;
|
|
5205
5214
|
constructor(data?: PartialMessage<SineWave>);
|
|
5206
5215
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5207
5216
|
static readonly typeName = "norsk.api.media.SineWave";
|
|
@@ -5212,6 +5221,93 @@ export declare class SineWave extends Message<SineWave> {
|
|
|
5212
5221
|
static equals(a: SineWave | PlainMessage<SineWave> | undefined, b: SineWave | PlainMessage<SineWave> | undefined): boolean;
|
|
5213
5222
|
}
|
|
5214
5223
|
/**
|
|
5224
|
+
* @generated from message norsk.api.media.Silence
|
|
5225
|
+
*/
|
|
5226
|
+
export declare class Silence extends Message<Silence> {
|
|
5227
|
+
constructor(data?: PartialMessage<Silence>);
|
|
5228
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5229
|
+
static readonly typeName = "norsk.api.media.Silence";
|
|
5230
|
+
static readonly fields: FieldList;
|
|
5231
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Silence;
|
|
5232
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Silence;
|
|
5233
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Silence;
|
|
5234
|
+
static equals(a: Silence | PlainMessage<Silence> | undefined, b: Silence | PlainMessage<Silence> | undefined): boolean;
|
|
5235
|
+
}
|
|
5236
|
+
/**
|
|
5237
|
+
* @generated from message norsk.api.media.Compound
|
|
5238
|
+
*/
|
|
5239
|
+
export declare class Compound extends Message<Compound> {
|
|
5240
|
+
/**
|
|
5241
|
+
* @generated from field: repeated norsk.api.media.Wave components = 1;
|
|
5242
|
+
*/
|
|
5243
|
+
components: Wave[];
|
|
5244
|
+
constructor(data?: PartialMessage<Compound>);
|
|
5245
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5246
|
+
static readonly typeName = "norsk.api.media.Compound";
|
|
5247
|
+
static readonly fields: FieldList;
|
|
5248
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Compound;
|
|
5249
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Compound;
|
|
5250
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Compound;
|
|
5251
|
+
static equals(a: Compound | PlainMessage<Compound> | undefined, b: Compound | PlainMessage<Compound> | undefined): boolean;
|
|
5252
|
+
}
|
|
5253
|
+
/**
|
|
5254
|
+
* @generated from message norsk.api.media.Sequence
|
|
5255
|
+
*/
|
|
5256
|
+
export declare class Sequence extends Message<Sequence> {
|
|
5257
|
+
/**
|
|
5258
|
+
* @generated from field: repeated norsk.api.media.Wave components = 1;
|
|
5259
|
+
*/
|
|
5260
|
+
components: Wave[];
|
|
5261
|
+
constructor(data?: PartialMessage<Sequence>);
|
|
5262
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5263
|
+
static readonly typeName = "norsk.api.media.Sequence";
|
|
5264
|
+
static readonly fields: FieldList;
|
|
5265
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Sequence;
|
|
5266
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Sequence;
|
|
5267
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Sequence;
|
|
5268
|
+
static equals(a: Sequence | PlainMessage<Sequence> | undefined, b: Sequence | PlainMessage<Sequence> | undefined): boolean;
|
|
5269
|
+
}
|
|
5270
|
+
/**
|
|
5271
|
+
* @generated from message norsk.api.media.Loop
|
|
5272
|
+
*/
|
|
5273
|
+
export declare class Loop extends Message<Loop> {
|
|
5274
|
+
/**
|
|
5275
|
+
* @generated from field: norsk.api.media.Wave component = 1;
|
|
5276
|
+
*/
|
|
5277
|
+
component?: Wave;
|
|
5278
|
+
constructor(data?: PartialMessage<Loop>);
|
|
5279
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5280
|
+
static readonly typeName = "norsk.api.media.Loop";
|
|
5281
|
+
static readonly fields: FieldList;
|
|
5282
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Loop;
|
|
5283
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Loop;
|
|
5284
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Loop;
|
|
5285
|
+
static equals(a: Loop | PlainMessage<Loop> | undefined, b: Loop | PlainMessage<Loop> | undefined): boolean;
|
|
5286
|
+
}
|
|
5287
|
+
/**
|
|
5288
|
+
* @generated from message norsk.api.media.Timed
|
|
5289
|
+
*/
|
|
5290
|
+
export declare class Timed extends Message<Timed> {
|
|
5291
|
+
/**
|
|
5292
|
+
* @generated from field: norsk.api.media.Wave component = 1;
|
|
5293
|
+
*/
|
|
5294
|
+
component?: Wave;
|
|
5295
|
+
/**
|
|
5296
|
+
* @generated from field: float duration_ms = 2;
|
|
5297
|
+
*/
|
|
5298
|
+
durationMs: number;
|
|
5299
|
+
constructor(data?: PartialMessage<Timed>);
|
|
5300
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5301
|
+
static readonly typeName = "norsk.api.media.Timed";
|
|
5302
|
+
static readonly fields: FieldList;
|
|
5303
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Timed;
|
|
5304
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Timed;
|
|
5305
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Timed;
|
|
5306
|
+
static equals(a: Timed | PlainMessage<Timed> | undefined, b: Timed | PlainMessage<Timed> | undefined): boolean;
|
|
5307
|
+
}
|
|
5308
|
+
/**
|
|
5309
|
+
* A wave description as used by audio signal generator
|
|
5310
|
+
*
|
|
5215
5311
|
* @generated from message norsk.api.media.Wave
|
|
5216
5312
|
*/
|
|
5217
5313
|
export declare class Wave extends Message<Wave> {
|
|
@@ -5224,6 +5320,36 @@ export declare class Wave extends Message<Wave> {
|
|
|
5224
5320
|
*/
|
|
5225
5321
|
value: SineWave;
|
|
5226
5322
|
case: "sine";
|
|
5323
|
+
} | {
|
|
5324
|
+
/**
|
|
5325
|
+
* @generated from field: norsk.api.media.Silence silence = 2;
|
|
5326
|
+
*/
|
|
5327
|
+
value: Silence;
|
|
5328
|
+
case: "silence";
|
|
5329
|
+
} | {
|
|
5330
|
+
/**
|
|
5331
|
+
* @generated from field: norsk.api.media.Compound compound = 3;
|
|
5332
|
+
*/
|
|
5333
|
+
value: Compound;
|
|
5334
|
+
case: "compound";
|
|
5335
|
+
} | {
|
|
5336
|
+
/**
|
|
5337
|
+
* @generated from field: norsk.api.media.Sequence sequence = 4;
|
|
5338
|
+
*/
|
|
5339
|
+
value: Sequence;
|
|
5340
|
+
case: "sequence";
|
|
5341
|
+
} | {
|
|
5342
|
+
/**
|
|
5343
|
+
* @generated from field: norsk.api.media.Loop loop = 5;
|
|
5344
|
+
*/
|
|
5345
|
+
value: Loop;
|
|
5346
|
+
case: "loop";
|
|
5347
|
+
} | {
|
|
5348
|
+
/**
|
|
5349
|
+
* @generated from field: norsk.api.media.Timed timed = 6;
|
|
5350
|
+
*/
|
|
5351
|
+
value: Timed;
|
|
5352
|
+
case: "timed";
|
|
5227
5353
|
} | {
|
|
5228
5354
|
case: undefined;
|
|
5229
5355
|
value?: undefined;
|
|
@@ -5286,6 +5412,55 @@ export declare class AudioSignalGeneratorConfiguration extends Message<AudioSign
|
|
|
5286
5412
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioSignalGeneratorConfiguration;
|
|
5287
5413
|
static equals(a: AudioSignalGeneratorConfiguration | PlainMessage<AudioSignalGeneratorConfiguration> | undefined, b: AudioSignalGeneratorConfiguration | PlainMessage<AudioSignalGeneratorConfiguration> | undefined): boolean;
|
|
5288
5414
|
}
|
|
5415
|
+
/**
|
|
5416
|
+
* @generated from message norsk.api.media.AudioSignalGeneratorConfigurationUpdate
|
|
5417
|
+
*/
|
|
5418
|
+
export declare class AudioSignalGeneratorConfigurationUpdate extends Message<AudioSignalGeneratorConfigurationUpdate> {
|
|
5419
|
+
/**
|
|
5420
|
+
* @generated from field: norsk.api.media.Wave wave = 1;
|
|
5421
|
+
*/
|
|
5422
|
+
wave?: Wave;
|
|
5423
|
+
constructor(data?: PartialMessage<AudioSignalGeneratorConfigurationUpdate>);
|
|
5424
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5425
|
+
static readonly typeName = "norsk.api.media.AudioSignalGeneratorConfigurationUpdate";
|
|
5426
|
+
static readonly fields: FieldList;
|
|
5427
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioSignalGeneratorConfigurationUpdate;
|
|
5428
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioSignalGeneratorConfigurationUpdate;
|
|
5429
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioSignalGeneratorConfigurationUpdate;
|
|
5430
|
+
static equals(a: AudioSignalGeneratorConfigurationUpdate | PlainMessage<AudioSignalGeneratorConfigurationUpdate> | undefined, b: AudioSignalGeneratorConfigurationUpdate | PlainMessage<AudioSignalGeneratorConfigurationUpdate> | undefined): boolean;
|
|
5431
|
+
}
|
|
5432
|
+
/**
|
|
5433
|
+
* @generated from message norsk.api.media.AudioSignalGeneratorMessage
|
|
5434
|
+
*/
|
|
5435
|
+
export declare class AudioSignalGeneratorMessage extends Message<AudioSignalGeneratorMessage> {
|
|
5436
|
+
/**
|
|
5437
|
+
* @generated from oneof norsk.api.media.AudioSignalGeneratorMessage.message
|
|
5438
|
+
*/
|
|
5439
|
+
message: {
|
|
5440
|
+
/**
|
|
5441
|
+
* @generated from field: norsk.api.media.AudioSignalGeneratorConfiguration initial_config = 1;
|
|
5442
|
+
*/
|
|
5443
|
+
value: AudioSignalGeneratorConfiguration;
|
|
5444
|
+
case: "initialConfig";
|
|
5445
|
+
} | {
|
|
5446
|
+
/**
|
|
5447
|
+
* @generated from field: norsk.api.media.AudioSignalGeneratorConfigurationUpdate update_config = 2;
|
|
5448
|
+
*/
|
|
5449
|
+
value: AudioSignalGeneratorConfigurationUpdate;
|
|
5450
|
+
case: "updateConfig";
|
|
5451
|
+
} | {
|
|
5452
|
+
case: undefined;
|
|
5453
|
+
value?: undefined;
|
|
5454
|
+
};
|
|
5455
|
+
constructor(data?: PartialMessage<AudioSignalGeneratorMessage>);
|
|
5456
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5457
|
+
static readonly typeName = "norsk.api.media.AudioSignalGeneratorMessage";
|
|
5458
|
+
static readonly fields: FieldList;
|
|
5459
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioSignalGeneratorMessage;
|
|
5460
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioSignalGeneratorMessage;
|
|
5461
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioSignalGeneratorMessage;
|
|
5462
|
+
static equals(a: AudioSignalGeneratorMessage | PlainMessage<AudioSignalGeneratorMessage> | undefined, b: AudioSignalGeneratorMessage | PlainMessage<AudioSignalGeneratorMessage> | undefined): boolean;
|
|
5463
|
+
}
|
|
5289
5464
|
/**
|
|
5290
5465
|
* @generated from message norsk.api.media.AudioSignalGeneratorEvent
|
|
5291
5466
|
*/
|
|
@@ -8499,7 +8674,8 @@ export declare class HlsPushDestination extends Message<HlsPushDestination> {
|
|
|
8499
8674
|
*/
|
|
8500
8675
|
supportsGzip: boolean;
|
|
8501
8676
|
/**
|
|
8502
|
-
* Whether to use TLS or plain TCP transport, by default TLS used if port is
|
|
8677
|
+
* Whether to use TLS or plain TCP transport, by default TLS used if port is
|
|
8678
|
+
* 443
|
|
8503
8679
|
*
|
|
8504
8680
|
* @generated from field: norsk.api.common.OptionalBool tls_transport = 11;
|
|
8505
8681
|
*/
|
|
@@ -10786,6 +10962,19 @@ export declare class VideoEncodeStream extends Message<VideoEncodeStream> {
|
|
|
10786
10962
|
case: undefined;
|
|
10787
10963
|
value?: undefined;
|
|
10788
10964
|
};
|
|
10965
|
+
/**
|
|
10966
|
+
* @generated from oneof norsk.api.media.VideoEncodeStream.hints
|
|
10967
|
+
*/
|
|
10968
|
+
hints: {
|
|
10969
|
+
/**
|
|
10970
|
+
* @generated from field: norsk.api.media.QuadraEncodeHints quadra = 19;
|
|
10971
|
+
*/
|
|
10972
|
+
value: QuadraEncodeHints;
|
|
10973
|
+
case: "quadra";
|
|
10974
|
+
} | {
|
|
10975
|
+
case: undefined;
|
|
10976
|
+
value?: undefined;
|
|
10977
|
+
};
|
|
10789
10978
|
constructor(data?: PartialMessage<VideoEncodeStream>);
|
|
10790
10979
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10791
10980
|
static readonly typeName = "norsk.api.media.VideoEncodeStream";
|
|
@@ -11254,6 +11443,40 @@ export declare enum NvidiaHevc_NvidiaHevcTier {
|
|
|
11254
11443
|
*/
|
|
11255
11444
|
HIGH = 1
|
|
11256
11445
|
}
|
|
11446
|
+
/**
|
|
11447
|
+
* @generated from message norsk.api.media.QuadraEncodeHints
|
|
11448
|
+
*/
|
|
11449
|
+
export declare class QuadraEncodeHints extends Message<QuadraEncodeHints> {
|
|
11450
|
+
/**
|
|
11451
|
+
* @generated from field: norsk.api.media.QuadraEncodeHints.QuadraRescaleAlgorithm rescale = 1;
|
|
11452
|
+
*/
|
|
11453
|
+
rescale: QuadraEncodeHints_QuadraRescaleAlgorithm;
|
|
11454
|
+
constructor(data?: PartialMessage<QuadraEncodeHints>);
|
|
11455
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11456
|
+
static readonly typeName = "norsk.api.media.QuadraEncodeHints";
|
|
11457
|
+
static readonly fields: FieldList;
|
|
11458
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraEncodeHints;
|
|
11459
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraEncodeHints;
|
|
11460
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraEncodeHints;
|
|
11461
|
+
static equals(a: QuadraEncodeHints | PlainMessage<QuadraEncodeHints> | undefined, b: QuadraEncodeHints | PlainMessage<QuadraEncodeHints> | undefined): boolean;
|
|
11462
|
+
}
|
|
11463
|
+
/**
|
|
11464
|
+
* @generated from enum norsk.api.media.QuadraEncodeHints.QuadraRescaleAlgorithm
|
|
11465
|
+
*/
|
|
11466
|
+
export declare enum QuadraEncodeHints_QuadraRescaleAlgorithm {
|
|
11467
|
+
/**
|
|
11468
|
+
* @generated from enum value: QUADRA_RESCALE_DEFAULT = 0;
|
|
11469
|
+
*/
|
|
11470
|
+
QUADRA_RESCALE_DEFAULT = 0,
|
|
11471
|
+
/**
|
|
11472
|
+
* @generated from enum value: QUADRA_RESCALE_FILTERBLIT = 1;
|
|
11473
|
+
*/
|
|
11474
|
+
QUADRA_RESCALE_FILTERBLIT = 1,
|
|
11475
|
+
/**
|
|
11476
|
+
* @generated from enum value: QUADRA_RESCALE_BICUBIC = 2;
|
|
11477
|
+
*/
|
|
11478
|
+
QUADRA_RESCALE_BICUBIC = 2
|
|
11479
|
+
}
|
|
11257
11480
|
/**
|
|
11258
11481
|
* @generated from message norsk.api.media.QuadraH264
|
|
11259
11482
|
*/
|
|
@@ -13767,10 +13990,13 @@ export declare class WebVttEncodeConfiguration extends Message<WebVttEncodeConfi
|
|
|
13767
13990
|
/**
|
|
13768
13991
|
* Maximum number of lines in a cue.
|
|
13769
13992
|
*
|
|
13770
|
-
* Consider using a value of 1 and a longer max line length and allowing the
|
|
13771
|
-
*
|
|
13772
|
-
*
|
|
13773
|
-
*
|
|
13993
|
+
* Consider using a value of 1 and a longer max line length and allowing the
|
|
13994
|
+
* player to break lines: per the WebVTT standard "In general, therefore,
|
|
13995
|
+
* authors are encouraged to write cues all on one line except when a line
|
|
13996
|
+
* break is definitely necessary." However if the player does not do this
|
|
13997
|
+
* adequately, using the actual max line length desired and more lines, hard
|
|
13998
|
+
* line breaks will be inserted. Note a maximum subtitle length of two lines
|
|
13999
|
+
* is recommended (eg BBC guidance)
|
|
13774
14000
|
*
|
|
13775
14001
|
* @generated from field: norsk.api.common.OptionalInt maximum_num_lines = 3;
|
|
13776
14002
|
*/
|
|
@@ -13873,9 +14099,11 @@ export declare class SubtitleConvertConfiguration extends Message<SubtitleConver
|
|
|
13873
14099
|
value?: undefined;
|
|
13874
14100
|
};
|
|
13875
14101
|
/**
|
|
13876
|
-
* For conversion from transcribed sources containing partial and complete
|
|
13877
|
-
*
|
|
13878
|
-
*
|
|
14102
|
+
* For conversion from transcribed sources containing partial and complete
|
|
14103
|
+
* transcriptions, filter to only include the transcription from a fully
|
|
14104
|
+
* transcribed section/utterance. Note this may be multiple sentences and span
|
|
14105
|
+
* up to 30s duration or beyond, making this generally an option for non-live
|
|
14106
|
+
* flows
|
|
13879
14107
|
*
|
|
13880
14108
|
* @generated from field: bool only_complete = 5;
|
|
13881
14109
|
*/
|
|
@@ -14086,7 +14314,8 @@ export declare class StreamSwitchSmoothSwitch extends Message<StreamSwitchSmooth
|
|
|
14086
14314
|
*/
|
|
14087
14315
|
newActiveSource?: InputPin;
|
|
14088
14316
|
/**
|
|
14089
|
-
* Optionally the duration of the transition (otherwise the configured default
|
|
14317
|
+
* Optionally the duration of the transition (otherwise the configured default
|
|
14318
|
+
* transition duration is used)
|
|
14090
14319
|
*
|
|
14091
14320
|
* @generated from field: norsk.api.common.OptionalFloat transition_duration_ms = 2;
|
|
14092
14321
|
*/
|
|
@@ -15293,7 +15522,8 @@ export declare class AudioTranscribeAzureConfiguration extends Message<AudioTran
|
|
|
15293
15522
|
*/
|
|
15294
15523
|
azureRegion: string;
|
|
15295
15524
|
/**
|
|
15296
|
-
* * Enable dictation mode (recognise dictated punctuation etc rather than
|
|
15525
|
+
* * Enable dictation mode (recognise dictated punctuation etc rather than
|
|
15526
|
+
* transcribing the audio verbatim)
|
|
15297
15527
|
*
|
|
15298
15528
|
* @generated from field: norsk.api.common.OptionalBool dictation = 8;
|
|
15299
15529
|
*/
|
|
@@ -15778,7 +16008,8 @@ export declare class MetadataMessage extends Message<MetadataMessage> {
|
|
|
15778
16008
|
*/
|
|
15779
16009
|
stream?: StreamKey;
|
|
15780
16010
|
/**
|
|
15781
|
-
* The raw data of the metadata message, excluding Metadata Access Unit
|
|
16011
|
+
* The raw data of the metadata message, excluding Metadata Access Unit
|
|
16012
|
+
* wrapper if present
|
|
15782
16013
|
*
|
|
15783
16014
|
* @generated from field: bytes data = 2;
|
|
15784
16015
|
*/
|
|
@@ -16379,7 +16610,8 @@ export declare class Scte35InsertCommandComponent extends Message<Scte35InsertCo
|
|
|
16379
16610
|
*/
|
|
16380
16611
|
export declare class Scte35SpliceTime extends Message<Scte35SpliceTime> {
|
|
16381
16612
|
/**
|
|
16382
|
-
* Splice time if specified (otherwise represents the default splice time in
|
|
16613
|
+
* Splice time if specified (otherwise represents the default splice time in
|
|
16614
|
+
* Component Splice Mode, see SCTE 35 9.9.2.1)
|
|
16383
16615
|
*
|
|
16384
16616
|
* @generated from field: norsk.api.common.OptionalInt pts_time = 1;
|
|
16385
16617
|
*/
|