@norskvideo/norsk-api 1.0.385 → 1.0.387
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 +47 -0
- package/lib/media_grpc_pb.js +118 -0
- package/lib/media_pb.d.ts +746 -1
- package/lib/media_pb.js +813 -9
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +1465 -233
- package/lib/shared/common_pb.d.ts +17 -0
- package/lib/shared/common_pb.js +32 -1
- package/lib/shared/common_pb.js.map +1 -1
- package/lib/shared/common_pb.ts +37 -0
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
2
|
import { Empty, Message, Timestamp } from "@bufbuild/protobuf";
|
|
3
|
-
import { CurrentLoad, Log, Log_Level, OptionalBool, OptionalInt, OptionalInt64, OptionalString, UInt32OrInfinity, Version } from "./shared/common_pb.js";
|
|
3
|
+
import { CurrentLoad, Log, Log_Level, OptionalBool, OptionalFloat, OptionalInt, OptionalInt64, OptionalString, UInt32OrInfinity, Version } from "./shared/common_pb.js";
|
|
4
4
|
/**
|
|
5
5
|
* @generated from enum norsk.api.media.NodeMetricsMode
|
|
6
6
|
*/
|
|
@@ -4189,6 +4189,275 @@ export declare class DeckLinkInputEvent extends Message<DeckLinkInputEvent> {
|
|
|
4189
4189
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeckLinkInputEvent;
|
|
4190
4190
|
static equals(a: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined, b: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined): boolean;
|
|
4191
4191
|
}
|
|
4192
|
+
/**
|
|
4193
|
+
* ///////////////////////////////
|
|
4194
|
+
* Kantar Audio Watermarks
|
|
4195
|
+
*
|
|
4196
|
+
* @generated from message norsk.api.media.AudioWatermarkConfiguration
|
|
4197
|
+
*/
|
|
4198
|
+
export declare class AudioWatermarkConfiguration extends Message<AudioWatermarkConfiguration> {
|
|
4199
|
+
/**
|
|
4200
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
4201
|
+
*/
|
|
4202
|
+
id?: MediaNodeId;
|
|
4203
|
+
/**
|
|
4204
|
+
* @generated from oneof norsk.api.media.AudioWatermarkConfiguration.license
|
|
4205
|
+
*/
|
|
4206
|
+
license: {
|
|
4207
|
+
/**
|
|
4208
|
+
* @generated from field: norsk.api.media.AudioWatermarkConfiguration.OnlineLicense online_license = 2;
|
|
4209
|
+
*/
|
|
4210
|
+
value: AudioWatermarkConfiguration_OnlineLicense;
|
|
4211
|
+
case: "onlineLicense";
|
|
4212
|
+
} | {
|
|
4213
|
+
/**
|
|
4214
|
+
* @generated from field: norsk.api.media.AudioWatermarkConfiguration.OfflineLicense offline_license = 3;
|
|
4215
|
+
*/
|
|
4216
|
+
value: AudioWatermarkConfiguration_OfflineLicense;
|
|
4217
|
+
case: "offlineLicense";
|
|
4218
|
+
} | {
|
|
4219
|
+
case: undefined;
|
|
4220
|
+
value?: undefined;
|
|
4221
|
+
};
|
|
4222
|
+
constructor(data?: PartialMessage<AudioWatermarkConfiguration>);
|
|
4223
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4224
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkConfiguration";
|
|
4225
|
+
static readonly fields: FieldList;
|
|
4226
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkConfiguration;
|
|
4227
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkConfiguration;
|
|
4228
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkConfiguration;
|
|
4229
|
+
static equals(a: AudioWatermarkConfiguration | PlainMessage<AudioWatermarkConfiguration> | undefined, b: AudioWatermarkConfiguration | PlainMessage<AudioWatermarkConfiguration> | undefined): boolean;
|
|
4230
|
+
}
|
|
4231
|
+
/**
|
|
4232
|
+
* @generated from message norsk.api.media.AudioWatermarkConfiguration.OnlineLicense
|
|
4233
|
+
*/
|
|
4234
|
+
export declare class AudioWatermarkConfiguration_OnlineLicense extends Message<AudioWatermarkConfiguration_OnlineLicense> {
|
|
4235
|
+
/**
|
|
4236
|
+
* @generated from field: string login = 1;
|
|
4237
|
+
*/
|
|
4238
|
+
login: string;
|
|
4239
|
+
/**
|
|
4240
|
+
* @generated from field: string password = 2;
|
|
4241
|
+
*/
|
|
4242
|
+
password: string;
|
|
4243
|
+
/**
|
|
4244
|
+
* @generated from field: string server = 3;
|
|
4245
|
+
*/
|
|
4246
|
+
server: string;
|
|
4247
|
+
/**
|
|
4248
|
+
* @generated from field: int32 port = 4;
|
|
4249
|
+
*/
|
|
4250
|
+
port: number;
|
|
4251
|
+
/**
|
|
4252
|
+
* @generated from field: int64 license_id = 5;
|
|
4253
|
+
*/
|
|
4254
|
+
licenseId: bigint;
|
|
4255
|
+
constructor(data?: PartialMessage<AudioWatermarkConfiguration_OnlineLicense>);
|
|
4256
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4257
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkConfiguration.OnlineLicense";
|
|
4258
|
+
static readonly fields: FieldList;
|
|
4259
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkConfiguration_OnlineLicense;
|
|
4260
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkConfiguration_OnlineLicense;
|
|
4261
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkConfiguration_OnlineLicense;
|
|
4262
|
+
static equals(a: AudioWatermarkConfiguration_OnlineLicense | PlainMessage<AudioWatermarkConfiguration_OnlineLicense> | undefined, b: AudioWatermarkConfiguration_OnlineLicense | PlainMessage<AudioWatermarkConfiguration_OnlineLicense> | undefined): boolean;
|
|
4263
|
+
}
|
|
4264
|
+
/**
|
|
4265
|
+
* @generated from message norsk.api.media.AudioWatermarkConfiguration.OfflineLicense
|
|
4266
|
+
*/
|
|
4267
|
+
export declare class AudioWatermarkConfiguration_OfflineLicense extends Message<AudioWatermarkConfiguration_OfflineLicense> {
|
|
4268
|
+
/**
|
|
4269
|
+
* @generated from field: string kantar_license = 1;
|
|
4270
|
+
*/
|
|
4271
|
+
kantarLicense: string;
|
|
4272
|
+
/**
|
|
4273
|
+
* @generated from field: string audience_license = 2;
|
|
4274
|
+
*/
|
|
4275
|
+
audienceLicense: string;
|
|
4276
|
+
/**
|
|
4277
|
+
* @generated from field: string channel_name = 3;
|
|
4278
|
+
*/
|
|
4279
|
+
channelName: string;
|
|
4280
|
+
constructor(data?: PartialMessage<AudioWatermarkConfiguration_OfflineLicense>);
|
|
4281
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4282
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkConfiguration.OfflineLicense";
|
|
4283
|
+
static readonly fields: FieldList;
|
|
4284
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkConfiguration_OfflineLicense;
|
|
4285
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkConfiguration_OfflineLicense;
|
|
4286
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkConfiguration_OfflineLicense;
|
|
4287
|
+
static equals(a: AudioWatermarkConfiguration_OfflineLicense | PlainMessage<AudioWatermarkConfiguration_OfflineLicense> | undefined, b: AudioWatermarkConfiguration_OfflineLicense | PlainMessage<AudioWatermarkConfiguration_OfflineLicense> | undefined): boolean;
|
|
4288
|
+
}
|
|
4289
|
+
/**
|
|
4290
|
+
* @generated from message norsk.api.media.AudioWatermarkMessage
|
|
4291
|
+
*/
|
|
4292
|
+
export declare class AudioWatermarkMessage extends Message<AudioWatermarkMessage> {
|
|
4293
|
+
/**
|
|
4294
|
+
* @generated from oneof norsk.api.media.AudioWatermarkMessage.message
|
|
4295
|
+
*/
|
|
4296
|
+
message: {
|
|
4297
|
+
/**
|
|
4298
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
4299
|
+
*/
|
|
4300
|
+
value: Subscription;
|
|
4301
|
+
case: "subscription";
|
|
4302
|
+
} | {
|
|
4303
|
+
/**
|
|
4304
|
+
* @generated from field: norsk.api.media.AudioWatermarkConfiguration initial_config = 2;
|
|
4305
|
+
*/
|
|
4306
|
+
value: AudioWatermarkConfiguration;
|
|
4307
|
+
case: "initialConfig";
|
|
4308
|
+
} | {
|
|
4309
|
+
case: undefined;
|
|
4310
|
+
value?: undefined;
|
|
4311
|
+
};
|
|
4312
|
+
constructor(data?: PartialMessage<AudioWatermarkMessage>);
|
|
4313
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4314
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkMessage";
|
|
4315
|
+
static readonly fields: FieldList;
|
|
4316
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkMessage;
|
|
4317
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkMessage;
|
|
4318
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkMessage;
|
|
4319
|
+
static equals(a: AudioWatermarkMessage | PlainMessage<AudioWatermarkMessage> | undefined, b: AudioWatermarkMessage | PlainMessage<AudioWatermarkMessage> | undefined): boolean;
|
|
4320
|
+
}
|
|
4321
|
+
/**
|
|
4322
|
+
* @generated from message norsk.api.media.AudioWatermarkLicenseInformation
|
|
4323
|
+
*/
|
|
4324
|
+
export declare class AudioWatermarkLicenseInformation extends Message<AudioWatermarkLicenseInformation> {
|
|
4325
|
+
/**
|
|
4326
|
+
* @generated from field: int32 remaining_days = 1;
|
|
4327
|
+
*/
|
|
4328
|
+
remainingDays: number;
|
|
4329
|
+
/**
|
|
4330
|
+
* @generated from field: repeated norsk.api.media.AudioWatermarkLicenseInformation.ChannelInfo channel_infos = 2;
|
|
4331
|
+
*/
|
|
4332
|
+
channelInfos: AudioWatermarkLicenseInformation_ChannelInfo[];
|
|
4333
|
+
constructor(data?: PartialMessage<AudioWatermarkLicenseInformation>);
|
|
4334
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4335
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkLicenseInformation";
|
|
4336
|
+
static readonly fields: FieldList;
|
|
4337
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkLicenseInformation;
|
|
4338
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkLicenseInformation;
|
|
4339
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkLicenseInformation;
|
|
4340
|
+
static equals(a: AudioWatermarkLicenseInformation | PlainMessage<AudioWatermarkLicenseInformation> | undefined, b: AudioWatermarkLicenseInformation | PlainMessage<AudioWatermarkLicenseInformation> | undefined): boolean;
|
|
4341
|
+
}
|
|
4342
|
+
/**
|
|
4343
|
+
* @generated from message norsk.api.media.AudioWatermarkLicenseInformation.ChannelInfo
|
|
4344
|
+
*/
|
|
4345
|
+
export declare class AudioWatermarkLicenseInformation_ChannelInfo extends Message<AudioWatermarkLicenseInformation_ChannelInfo> {
|
|
4346
|
+
/**
|
|
4347
|
+
* @generated from field: string channel_name = 1;
|
|
4348
|
+
*/
|
|
4349
|
+
channelName: string;
|
|
4350
|
+
/**
|
|
4351
|
+
* @generated from field: int64 channel_id = 2;
|
|
4352
|
+
*/
|
|
4353
|
+
channelId: bigint;
|
|
4354
|
+
constructor(data?: PartialMessage<AudioWatermarkLicenseInformation_ChannelInfo>);
|
|
4355
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4356
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkLicenseInformation.ChannelInfo";
|
|
4357
|
+
static readonly fields: FieldList;
|
|
4358
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkLicenseInformation_ChannelInfo;
|
|
4359
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkLicenseInformation_ChannelInfo;
|
|
4360
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkLicenseInformation_ChannelInfo;
|
|
4361
|
+
static equals(a: AudioWatermarkLicenseInformation_ChannelInfo | PlainMessage<AudioWatermarkLicenseInformation_ChannelInfo> | undefined, b: AudioWatermarkLicenseInformation_ChannelInfo | PlainMessage<AudioWatermarkLicenseInformation_ChannelInfo> | undefined): boolean;
|
|
4362
|
+
}
|
|
4363
|
+
/**
|
|
4364
|
+
* @generated from message norsk.api.media.AudioWatermarkSnapEvent
|
|
4365
|
+
*/
|
|
4366
|
+
export declare class AudioWatermarkSnapEvent extends Message<AudioWatermarkSnapEvent> {
|
|
4367
|
+
/**
|
|
4368
|
+
* @generated from field: norsk.api.media.AudioWatermarkSnapEvent.EventType event_type = 1;
|
|
4369
|
+
*/
|
|
4370
|
+
eventType: AudioWatermarkSnapEvent_EventType;
|
|
4371
|
+
/**
|
|
4372
|
+
* @generated from field: int32 code = 2;
|
|
4373
|
+
*/
|
|
4374
|
+
code: number;
|
|
4375
|
+
/**
|
|
4376
|
+
* @generated from field: string message = 3;
|
|
4377
|
+
*/
|
|
4378
|
+
message: string;
|
|
4379
|
+
constructor(data?: PartialMessage<AudioWatermarkSnapEvent>);
|
|
4380
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4381
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkSnapEvent";
|
|
4382
|
+
static readonly fields: FieldList;
|
|
4383
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkSnapEvent;
|
|
4384
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkSnapEvent;
|
|
4385
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkSnapEvent;
|
|
4386
|
+
static equals(a: AudioWatermarkSnapEvent | PlainMessage<AudioWatermarkSnapEvent> | undefined, b: AudioWatermarkSnapEvent | PlainMessage<AudioWatermarkSnapEvent> | undefined): boolean;
|
|
4387
|
+
}
|
|
4388
|
+
/**
|
|
4389
|
+
* @generated from enum norsk.api.media.AudioWatermarkSnapEvent.EventType
|
|
4390
|
+
*/
|
|
4391
|
+
export declare enum AudioWatermarkSnapEvent_EventType {
|
|
4392
|
+
/**
|
|
4393
|
+
* @generated from enum value: SNAPINFO = 0;
|
|
4394
|
+
*/
|
|
4395
|
+
SNAPINFO = 0,
|
|
4396
|
+
/**
|
|
4397
|
+
* @generated from enum value: SNAPWARNING = 1;
|
|
4398
|
+
*/
|
|
4399
|
+
SNAPWARNING = 1,
|
|
4400
|
+
/**
|
|
4401
|
+
* @generated from enum value: SNAPERROR = 2;
|
|
4402
|
+
*/
|
|
4403
|
+
SNAPERROR = 2
|
|
4404
|
+
}
|
|
4405
|
+
/**
|
|
4406
|
+
* @generated from message norsk.api.media.AudioWatermarkEvent
|
|
4407
|
+
*/
|
|
4408
|
+
export declare class AudioWatermarkEvent extends Message<AudioWatermarkEvent> {
|
|
4409
|
+
/**
|
|
4410
|
+
* @generated from oneof norsk.api.media.AudioWatermarkEvent.message
|
|
4411
|
+
*/
|
|
4412
|
+
message: {
|
|
4413
|
+
/**
|
|
4414
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
4415
|
+
*/
|
|
4416
|
+
value: MediaNodeId;
|
|
4417
|
+
case: "nodeId";
|
|
4418
|
+
} | {
|
|
4419
|
+
/**
|
|
4420
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
4421
|
+
*/
|
|
4422
|
+
value: Context;
|
|
4423
|
+
case: "outboundContext";
|
|
4424
|
+
} | {
|
|
4425
|
+
/**
|
|
4426
|
+
* @generated from field: norsk.api.media.Context inbound_context = 3;
|
|
4427
|
+
*/
|
|
4428
|
+
value: Context;
|
|
4429
|
+
case: "inboundContext";
|
|
4430
|
+
} | {
|
|
4431
|
+
/**
|
|
4432
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 4;
|
|
4433
|
+
*/
|
|
4434
|
+
value: SubscriptionResponse;
|
|
4435
|
+
case: "subscriptionResponse";
|
|
4436
|
+
} | {
|
|
4437
|
+
/**
|
|
4438
|
+
* @generated from field: norsk.api.media.AudioWatermarkLicenseInformation license_information = 5;
|
|
4439
|
+
*/
|
|
4440
|
+
value: AudioWatermarkLicenseInformation;
|
|
4441
|
+
case: "licenseInformation";
|
|
4442
|
+
} | {
|
|
4443
|
+
/**
|
|
4444
|
+
* @generated from field: norsk.api.media.AudioWatermarkSnapEvent snap_event = 6;
|
|
4445
|
+
*/
|
|
4446
|
+
value: AudioWatermarkSnapEvent;
|
|
4447
|
+
case: "snapEvent";
|
|
4448
|
+
} | {
|
|
4449
|
+
case: undefined;
|
|
4450
|
+
value?: undefined;
|
|
4451
|
+
};
|
|
4452
|
+
constructor(data?: PartialMessage<AudioWatermarkEvent>);
|
|
4453
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4454
|
+
static readonly typeName = "norsk.api.media.AudioWatermarkEvent";
|
|
4455
|
+
static readonly fields: FieldList;
|
|
4456
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioWatermarkEvent;
|
|
4457
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioWatermarkEvent;
|
|
4458
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioWatermarkEvent;
|
|
4459
|
+
static equals(a: AudioWatermarkEvent | PlainMessage<AudioWatermarkEvent> | undefined, b: AudioWatermarkEvent | PlainMessage<AudioWatermarkEvent> | undefined): boolean;
|
|
4460
|
+
}
|
|
4192
4461
|
/**
|
|
4193
4462
|
* @generated from message norsk.api.media.DeltacastChannel
|
|
4194
4463
|
*/
|
|
@@ -4750,6 +5019,160 @@ export declare class FileMp4InputEvent extends Message<FileMp4InputEvent> {
|
|
|
4750
5019
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputEvent;
|
|
4751
5020
|
static equals(a: FileMp4InputEvent | PlainMessage<FileMp4InputEvent> | undefined, b: FileMp4InputEvent | PlainMessage<FileMp4InputEvent> | undefined): boolean;
|
|
4752
5021
|
}
|
|
5022
|
+
/**
|
|
5023
|
+
* ///////////////////////////////
|
|
5024
|
+
* WAV Input
|
|
5025
|
+
*
|
|
5026
|
+
* @generated from message norsk.api.media.FileWavInputConfiguration
|
|
5027
|
+
*/
|
|
5028
|
+
export declare class FileWavInputConfiguration extends Message<FileWavInputConfiguration> {
|
|
5029
|
+
/**
|
|
5030
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5031
|
+
*/
|
|
5032
|
+
id?: MediaNodeId;
|
|
5033
|
+
/**
|
|
5034
|
+
* @generated from field: string source_name = 2;
|
|
5035
|
+
*/
|
|
5036
|
+
sourceName: string;
|
|
5037
|
+
/**
|
|
5038
|
+
* @generated from field: string file_name = 3;
|
|
5039
|
+
*/
|
|
5040
|
+
fileName: string;
|
|
5041
|
+
constructor(data?: PartialMessage<FileWavInputConfiguration>);
|
|
5042
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5043
|
+
static readonly typeName = "norsk.api.media.FileWavInputConfiguration";
|
|
5044
|
+
static readonly fields: FieldList;
|
|
5045
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWavInputConfiguration;
|
|
5046
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWavInputConfiguration;
|
|
5047
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWavInputConfiguration;
|
|
5048
|
+
static equals(a: FileWavInputConfiguration | PlainMessage<FileWavInputConfiguration> | undefined, b: FileWavInputConfiguration | PlainMessage<FileWavInputConfiguration> | undefined): boolean;
|
|
5049
|
+
}
|
|
5050
|
+
/**
|
|
5051
|
+
* @generated from message norsk.api.media.FileWavInputEvent
|
|
5052
|
+
*/
|
|
5053
|
+
export declare class FileWavInputEvent extends Message<FileWavInputEvent> {
|
|
5054
|
+
/**
|
|
5055
|
+
* @generated from oneof norsk.api.media.FileWavInputEvent.message
|
|
5056
|
+
*/
|
|
5057
|
+
message: {
|
|
5058
|
+
/**
|
|
5059
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
5060
|
+
*/
|
|
5061
|
+
value: MediaNodeId;
|
|
5062
|
+
case: "nodeId";
|
|
5063
|
+
} | {
|
|
5064
|
+
/**
|
|
5065
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
5066
|
+
*/
|
|
5067
|
+
value: Context;
|
|
5068
|
+
case: "outboundContext";
|
|
5069
|
+
} | {
|
|
5070
|
+
case: undefined;
|
|
5071
|
+
value?: undefined;
|
|
5072
|
+
};
|
|
5073
|
+
constructor(data?: PartialMessage<FileWavInputEvent>);
|
|
5074
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5075
|
+
static readonly typeName = "norsk.api.media.FileWavInputEvent";
|
|
5076
|
+
static readonly fields: FieldList;
|
|
5077
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWavInputEvent;
|
|
5078
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWavInputEvent;
|
|
5079
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWavInputEvent;
|
|
5080
|
+
static equals(a: FileWavInputEvent | PlainMessage<FileWavInputEvent> | undefined, b: FileWavInputEvent | PlainMessage<FileWavInputEvent> | undefined): boolean;
|
|
5081
|
+
}
|
|
5082
|
+
/**
|
|
5083
|
+
* ///////////////////////////////
|
|
5084
|
+
* WAV Output
|
|
5085
|
+
*
|
|
5086
|
+
* @generated from message norsk.api.media.FileWavOutputConfiguration
|
|
5087
|
+
*/
|
|
5088
|
+
export declare class FileWavOutputConfiguration extends Message<FileWavOutputConfiguration> {
|
|
5089
|
+
/**
|
|
5090
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5091
|
+
*/
|
|
5092
|
+
id?: MediaNodeId;
|
|
5093
|
+
/**
|
|
5094
|
+
* @generated from field: string file_name = 2;
|
|
5095
|
+
*/
|
|
5096
|
+
fileName: string;
|
|
5097
|
+
constructor(data?: PartialMessage<FileWavOutputConfiguration>);
|
|
5098
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5099
|
+
static readonly typeName = "norsk.api.media.FileWavOutputConfiguration";
|
|
5100
|
+
static readonly fields: FieldList;
|
|
5101
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWavOutputConfiguration;
|
|
5102
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWavOutputConfiguration;
|
|
5103
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWavOutputConfiguration;
|
|
5104
|
+
static equals(a: FileWavOutputConfiguration | PlainMessage<FileWavOutputConfiguration> | undefined, b: FileWavOutputConfiguration | PlainMessage<FileWavOutputConfiguration> | undefined): boolean;
|
|
5105
|
+
}
|
|
5106
|
+
/**
|
|
5107
|
+
* @generated from message norsk.api.media.FileWavOutputMessage
|
|
5108
|
+
*/
|
|
5109
|
+
export declare class FileWavOutputMessage extends Message<FileWavOutputMessage> {
|
|
5110
|
+
/**
|
|
5111
|
+
* @generated from oneof norsk.api.media.FileWavOutputMessage.message
|
|
5112
|
+
*/
|
|
5113
|
+
message: {
|
|
5114
|
+
/**
|
|
5115
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
5116
|
+
*/
|
|
5117
|
+
value: Subscription;
|
|
5118
|
+
case: "subscription";
|
|
5119
|
+
} | {
|
|
5120
|
+
/**
|
|
5121
|
+
* @generated from field: norsk.api.media.FileWavOutputConfiguration configuration = 2;
|
|
5122
|
+
*/
|
|
5123
|
+
value: FileWavOutputConfiguration;
|
|
5124
|
+
case: "configuration";
|
|
5125
|
+
} | {
|
|
5126
|
+
case: undefined;
|
|
5127
|
+
value?: undefined;
|
|
5128
|
+
};
|
|
5129
|
+
constructor(data?: PartialMessage<FileWavOutputMessage>);
|
|
5130
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5131
|
+
static readonly typeName = "norsk.api.media.FileWavOutputMessage";
|
|
5132
|
+
static readonly fields: FieldList;
|
|
5133
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWavOutputMessage;
|
|
5134
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWavOutputMessage;
|
|
5135
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWavOutputMessage;
|
|
5136
|
+
static equals(a: FileWavOutputMessage | PlainMessage<FileWavOutputMessage> | undefined, b: FileWavOutputMessage | PlainMessage<FileWavOutputMessage> | undefined): boolean;
|
|
5137
|
+
}
|
|
5138
|
+
/**
|
|
5139
|
+
* @generated from message norsk.api.media.FileWavOutputEvent
|
|
5140
|
+
*/
|
|
5141
|
+
export declare class FileWavOutputEvent extends Message<FileWavOutputEvent> {
|
|
5142
|
+
/**
|
|
5143
|
+
* @generated from oneof norsk.api.media.FileWavOutputEvent.message
|
|
5144
|
+
*/
|
|
5145
|
+
message: {
|
|
5146
|
+
/**
|
|
5147
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
5148
|
+
*/
|
|
5149
|
+
value: MediaNodeId;
|
|
5150
|
+
case: "nodeId";
|
|
5151
|
+
} | {
|
|
5152
|
+
/**
|
|
5153
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 2;
|
|
5154
|
+
*/
|
|
5155
|
+
value: SubscriptionResponse;
|
|
5156
|
+
case: "subscriptionResponse";
|
|
5157
|
+
} | {
|
|
5158
|
+
/**
|
|
5159
|
+
* @generated from field: norsk.api.media.Context inbound_context = 3;
|
|
5160
|
+
*/
|
|
5161
|
+
value: Context;
|
|
5162
|
+
case: "inboundContext";
|
|
5163
|
+
} | {
|
|
5164
|
+
case: undefined;
|
|
5165
|
+
value?: undefined;
|
|
5166
|
+
};
|
|
5167
|
+
constructor(data?: PartialMessage<FileWavOutputEvent>);
|
|
5168
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5169
|
+
static readonly typeName = "norsk.api.media.FileWavOutputEvent";
|
|
5170
|
+
static readonly fields: FieldList;
|
|
5171
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWavOutputEvent;
|
|
5172
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWavOutputEvent;
|
|
5173
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWavOutputEvent;
|
|
5174
|
+
static equals(a: FileWavOutputEvent | PlainMessage<FileWavOutputEvent> | undefined, b: FileWavOutputEvent | PlainMessage<FileWavOutputEvent> | undefined): boolean;
|
|
5175
|
+
}
|
|
4753
5176
|
/**
|
|
4754
5177
|
* @generated from message norsk.api.media.SineWave
|
|
4755
5178
|
*/
|
|
@@ -4825,6 +5248,14 @@ export declare class AudioSignalGeneratorConfiguration extends Message<AudioSign
|
|
|
4825
5248
|
* @generated from field: norsk.api.media.Wave wave = 7;
|
|
4826
5249
|
*/
|
|
4827
5250
|
wave?: Wave;
|
|
5251
|
+
/**
|
|
5252
|
+
* @generated from field: norsk.api.common.OptionalInt samples_per_frame = 8;
|
|
5253
|
+
*/
|
|
5254
|
+
samplesPerFrame?: OptionalInt;
|
|
5255
|
+
/**
|
|
5256
|
+
* @generated from field: norsk.api.common.OptionalInt output_frame_count = 9;
|
|
5257
|
+
*/
|
|
5258
|
+
outputFrameCount?: OptionalInt;
|
|
4828
5259
|
constructor(data?: PartialMessage<AudioSignalGeneratorConfiguration>);
|
|
4829
5260
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4830
5261
|
static readonly typeName = "norsk.api.media.AudioSignalGeneratorConfiguration";
|
|
@@ -6972,6 +7403,72 @@ export declare class CmafVideoMessage extends Message<CmafVideoMessage> {
|
|
|
6972
7403
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafVideoMessage;
|
|
6973
7404
|
static equals(a: CmafVideoMessage | PlainMessage<CmafVideoMessage> | undefined, b: CmafVideoMessage | PlainMessage<CmafVideoMessage> | undefined): boolean;
|
|
6974
7405
|
}
|
|
7406
|
+
/**
|
|
7407
|
+
* @generated from message norsk.api.media.SegmentationExactFrameCount
|
|
7408
|
+
*/
|
|
7409
|
+
export declare class SegmentationExactFrameCount extends Message<SegmentationExactFrameCount> {
|
|
7410
|
+
/**
|
|
7411
|
+
* @generated from field: int32 frame_count = 1;
|
|
7412
|
+
*/
|
|
7413
|
+
frameCount: number;
|
|
7414
|
+
constructor(data?: PartialMessage<SegmentationExactFrameCount>);
|
|
7415
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7416
|
+
static readonly typeName = "norsk.api.media.SegmentationExactFrameCount";
|
|
7417
|
+
static readonly fields: FieldList;
|
|
7418
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SegmentationExactFrameCount;
|
|
7419
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SegmentationExactFrameCount;
|
|
7420
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SegmentationExactFrameCount;
|
|
7421
|
+
static equals(a: SegmentationExactFrameCount | PlainMessage<SegmentationExactFrameCount> | undefined, b: SegmentationExactFrameCount | PlainMessage<SegmentationExactFrameCount> | undefined): boolean;
|
|
7422
|
+
}
|
|
7423
|
+
/**
|
|
7424
|
+
* @generated from message norsk.api.media.SegmentationExactIdrCount
|
|
7425
|
+
*/
|
|
7426
|
+
export declare class SegmentationExactIdrCount extends Message<SegmentationExactIdrCount> {
|
|
7427
|
+
/**
|
|
7428
|
+
* @generated from field: int32 idr_count = 1;
|
|
7429
|
+
*/
|
|
7430
|
+
idrCount: number;
|
|
7431
|
+
constructor(data?: PartialMessage<SegmentationExactIdrCount>);
|
|
7432
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7433
|
+
static readonly typeName = "norsk.api.media.SegmentationExactIdrCount";
|
|
7434
|
+
static readonly fields: FieldList;
|
|
7435
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SegmentationExactIdrCount;
|
|
7436
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SegmentationExactIdrCount;
|
|
7437
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SegmentationExactIdrCount;
|
|
7438
|
+
static equals(a: SegmentationExactIdrCount | PlainMessage<SegmentationExactIdrCount> | undefined, b: SegmentationExactIdrCount | PlainMessage<SegmentationExactIdrCount> | undefined): boolean;
|
|
7439
|
+
}
|
|
7440
|
+
/**
|
|
7441
|
+
* @generated from message norsk.api.media.SegmentationStrategy
|
|
7442
|
+
*/
|
|
7443
|
+
export declare class SegmentationStrategy extends Message<SegmentationStrategy> {
|
|
7444
|
+
/**
|
|
7445
|
+
* @generated from oneof norsk.api.media.SegmentationStrategy.message
|
|
7446
|
+
*/
|
|
7447
|
+
message: {
|
|
7448
|
+
/**
|
|
7449
|
+
* @generated from field: norsk.api.media.SegmentationExactFrameCount frame_count = 1;
|
|
7450
|
+
*/
|
|
7451
|
+
value: SegmentationExactFrameCount;
|
|
7452
|
+
case: "frameCount";
|
|
7453
|
+
} | {
|
|
7454
|
+
/**
|
|
7455
|
+
* @generated from field: norsk.api.media.SegmentationExactIdrCount idr_count = 2;
|
|
7456
|
+
*/
|
|
7457
|
+
value: SegmentationExactIdrCount;
|
|
7458
|
+
case: "idrCount";
|
|
7459
|
+
} | {
|
|
7460
|
+
case: undefined;
|
|
7461
|
+
value?: undefined;
|
|
7462
|
+
};
|
|
7463
|
+
constructor(data?: PartialMessage<SegmentationStrategy>);
|
|
7464
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7465
|
+
static readonly typeName = "norsk.api.media.SegmentationStrategy";
|
|
7466
|
+
static readonly fields: FieldList;
|
|
7467
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SegmentationStrategy;
|
|
7468
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SegmentationStrategy;
|
|
7469
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SegmentationStrategy;
|
|
7470
|
+
static equals(a: SegmentationStrategy | PlainMessage<SegmentationStrategy> | undefined, b: SegmentationStrategy | PlainMessage<SegmentationStrategy> | undefined): boolean;
|
|
7471
|
+
}
|
|
6975
7472
|
/**
|
|
6976
7473
|
* @generated from message norsk.api.media.HlsTsVideoConfiguration
|
|
6977
7474
|
*/
|
|
@@ -7020,6 +7517,10 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
|
|
|
7020
7517
|
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 11;
|
|
7021
7518
|
*/
|
|
7022
7519
|
metrics: NodeMetricsMode;
|
|
7520
|
+
/**
|
|
7521
|
+
* @generated from field: norsk.api.media.SegmentationStrategy segmentation_strategy = 12;
|
|
7522
|
+
*/
|
|
7523
|
+
segmentationStrategy?: SegmentationStrategy;
|
|
7023
7524
|
constructor(data?: PartialMessage<HlsTsVideoConfiguration>);
|
|
7024
7525
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7025
7526
|
static readonly typeName = "norsk.api.media.HlsTsVideoConfiguration";
|
|
@@ -7226,6 +7727,10 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
|
|
|
7226
7727
|
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 11;
|
|
7227
7728
|
*/
|
|
7228
7729
|
metrics: NodeMetricsMode;
|
|
7730
|
+
/**
|
|
7731
|
+
* @generated from field: norsk.api.media.SegmentationStrategy segmentation_strategy = 12;
|
|
7732
|
+
*/
|
|
7733
|
+
segmentationStrategy?: SegmentationStrategy;
|
|
7229
7734
|
constructor(data?: PartialMessage<HlsTsAudioConfiguration>);
|
|
7230
7735
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7231
7736
|
static readonly typeName = "norsk.api.media.HlsTsAudioConfiguration";
|
|
@@ -7913,6 +8418,10 @@ export declare class HlsTsCombinedPushConfiguration extends Message<HlsTsCombine
|
|
|
7913
8418
|
* @generated from field: bool pdt_every_segment = 10;
|
|
7914
8419
|
*/
|
|
7915
8420
|
pdtEverySegment: boolean;
|
|
8421
|
+
/**
|
|
8422
|
+
* @generated from field: norsk.api.media.SegmentationStrategy segmentation_strategy = 11;
|
|
8423
|
+
*/
|
|
8424
|
+
segmentationStrategy?: SegmentationStrategy;
|
|
7916
8425
|
constructor(data?: PartialMessage<HlsTsCombinedPushConfiguration>);
|
|
7917
8426
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7918
8427
|
static readonly typeName = "norsk.api.media.HlsTsCombinedPushConfiguration";
|
|
@@ -10240,6 +10749,18 @@ export declare class VideoEncodeStream extends Message<VideoEncodeStream> {
|
|
|
10240
10749
|
*/
|
|
10241
10750
|
value: AmdMA35DHevc;
|
|
10242
10751
|
case: "amdMA35DHevc";
|
|
10752
|
+
} | {
|
|
10753
|
+
/**
|
|
10754
|
+
* @generated from field: norsk.api.media.QuadraAv1 quadraAv1 = 17;
|
|
10755
|
+
*/
|
|
10756
|
+
value: QuadraAv1;
|
|
10757
|
+
case: "quadraAv1";
|
|
10758
|
+
} | {
|
|
10759
|
+
/**
|
|
10760
|
+
* @generated from field: norsk.api.media.AmdMA35DAv1 amdMA35DAv1 = 18;
|
|
10761
|
+
*/
|
|
10762
|
+
value: AmdMA35DAv1;
|
|
10763
|
+
case: "amdMA35DAv1";
|
|
10243
10764
|
} | {
|
|
10244
10765
|
case: undefined;
|
|
10245
10766
|
value?: undefined;
|
|
@@ -10973,6 +11494,137 @@ export declare enum QuadraHevc_QuadraHevcTier {
|
|
|
10973
11494
|
*/
|
|
10974
11495
|
HIGH = 1
|
|
10975
11496
|
}
|
|
11497
|
+
/**
|
|
11498
|
+
* @generated from message norsk.api.media.QuadraAv1
|
|
11499
|
+
*/
|
|
11500
|
+
export declare class QuadraAv1 extends Message<QuadraAv1> {
|
|
11501
|
+
/**
|
|
11502
|
+
* @generated from field: string extraOpts = 1;
|
|
11503
|
+
*/
|
|
11504
|
+
extraOpts: string;
|
|
11505
|
+
/**
|
|
11506
|
+
* @generated from field: norsk.api.common.OptionalBool enableAud = 2;
|
|
11507
|
+
*/
|
|
11508
|
+
enableAud?: OptionalBool;
|
|
11509
|
+
/**
|
|
11510
|
+
* @generated from field: norsk.api.common.OptionalInt gpuIndex = 3;
|
|
11511
|
+
*/
|
|
11512
|
+
gpuIndex?: OptionalInt;
|
|
11513
|
+
/**
|
|
11514
|
+
* @generated from field: norsk.api.common.OptionalInt bitrate = 4;
|
|
11515
|
+
*/
|
|
11516
|
+
bitrate?: OptionalInt;
|
|
11517
|
+
/**
|
|
11518
|
+
* @generated from field: norsk.api.common.OptionalBool enableVfr = 6;
|
|
11519
|
+
*/
|
|
11520
|
+
enableVfr?: OptionalBool;
|
|
11521
|
+
/**
|
|
11522
|
+
* @generated from field: norsk.api.common.OptionalInt crf = 7;
|
|
11523
|
+
*/
|
|
11524
|
+
crf?: OptionalInt;
|
|
11525
|
+
/**
|
|
11526
|
+
* @generated from field: norsk.api.common.OptionalInt gopPresetIndex = 9;
|
|
11527
|
+
*/
|
|
11528
|
+
gopPresetIndex?: OptionalInt;
|
|
11529
|
+
/**
|
|
11530
|
+
* @generated from field: norsk.api.common.OptionalInt intraPeriod = 10;
|
|
11531
|
+
*/
|
|
11532
|
+
intraPeriod?: OptionalInt;
|
|
11533
|
+
/**
|
|
11534
|
+
* @generated from field: norsk.api.media.QuadraAv1.QuadraAv1Tier tier = 11;
|
|
11535
|
+
*/
|
|
11536
|
+
tier: QuadraAv1_QuadraAv1Tier;
|
|
11537
|
+
/**
|
|
11538
|
+
* @generated from field: norsk.api.media.QuadraAv1.QuadraAv1Profile profile = 12;
|
|
11539
|
+
*/
|
|
11540
|
+
profile: QuadraAv1_QuadraAv1Profile;
|
|
11541
|
+
/**
|
|
11542
|
+
* @generated from field: norsk.api.common.OptionalInt level = 13;
|
|
11543
|
+
*/
|
|
11544
|
+
level?: OptionalInt;
|
|
11545
|
+
/**
|
|
11546
|
+
* @generated from field: norsk.api.common.OptionalBool rcEnable = 14;
|
|
11547
|
+
*/
|
|
11548
|
+
rcEnable?: OptionalBool;
|
|
11549
|
+
/**
|
|
11550
|
+
* @generated from field: norsk.api.common.OptionalBool lossless = 15;
|
|
11551
|
+
*/
|
|
11552
|
+
lossless?: OptionalBool;
|
|
11553
|
+
/**
|
|
11554
|
+
* @generated from field: norsk.api.common.OptionalInt intraQp = 16;
|
|
11555
|
+
*/
|
|
11556
|
+
intraQp?: OptionalInt;
|
|
11557
|
+
/**
|
|
11558
|
+
* @generated from field: norsk.api.common.OptionalBool hrdEnable = 18;
|
|
11559
|
+
*/
|
|
11560
|
+
hrdEnable?: OptionalBool;
|
|
11561
|
+
/**
|
|
11562
|
+
* @generated from field: norsk.api.common.OptionalInt dolbyVisionProfile = 19;
|
|
11563
|
+
*/
|
|
11564
|
+
dolbyVisionProfile?: OptionalInt;
|
|
11565
|
+
/**
|
|
11566
|
+
* @generated from field: norsk.api.common.OptionalBool fillerEnable = 20;
|
|
11567
|
+
*/
|
|
11568
|
+
fillerEnable?: OptionalBool;
|
|
11569
|
+
/**
|
|
11570
|
+
* @generated from field: norsk.api.common.OptionalInt minQp = 21;
|
|
11571
|
+
*/
|
|
11572
|
+
minQp?: OptionalInt;
|
|
11573
|
+
/**
|
|
11574
|
+
* @generated from field: norsk.api.common.OptionalInt maxQp = 22;
|
|
11575
|
+
*/
|
|
11576
|
+
maxQp?: OptionalInt;
|
|
11577
|
+
/**
|
|
11578
|
+
* @generated from field: norsk.api.common.OptionalInt maxDeltaQp = 23;
|
|
11579
|
+
*/
|
|
11580
|
+
maxDeltaQp?: OptionalInt;
|
|
11581
|
+
/**
|
|
11582
|
+
* @generated from field: norsk.api.common.OptionalBool cuLevelRCEnable = 24;
|
|
11583
|
+
*/
|
|
11584
|
+
cuLevelRCEnable?: OptionalBool;
|
|
11585
|
+
/**
|
|
11586
|
+
* @generated from field: norsk.api.common.OptionalInt lookAheadDepth = 25;
|
|
11587
|
+
*/
|
|
11588
|
+
lookAheadDepth?: OptionalInt;
|
|
11589
|
+
/**
|
|
11590
|
+
* @generated from field: norsk.api.common.OptionalInt vbvBufferSize = 26;
|
|
11591
|
+
*/
|
|
11592
|
+
vbvBufferSize?: OptionalInt;
|
|
11593
|
+
/**
|
|
11594
|
+
* @generated from field: norsk.api.common.OptionalInt vbvMaxRate = 27;
|
|
11595
|
+
*/
|
|
11596
|
+
vbvMaxRate?: OptionalInt;
|
|
11597
|
+
constructor(data?: PartialMessage<QuadraAv1>);
|
|
11598
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11599
|
+
static readonly typeName = "norsk.api.media.QuadraAv1";
|
|
11600
|
+
static readonly fields: FieldList;
|
|
11601
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraAv1;
|
|
11602
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraAv1;
|
|
11603
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraAv1;
|
|
11604
|
+
static equals(a: QuadraAv1 | PlainMessage<QuadraAv1> | undefined, b: QuadraAv1 | PlainMessage<QuadraAv1> | undefined): boolean;
|
|
11605
|
+
}
|
|
11606
|
+
/**
|
|
11607
|
+
* @generated from enum norsk.api.media.QuadraAv1.QuadraAv1Profile
|
|
11608
|
+
*/
|
|
11609
|
+
export declare enum QuadraAv1_QuadraAv1Profile {
|
|
11610
|
+
/**
|
|
11611
|
+
* @generated from enum value: QUADRA_AV1_PROFILE_MAIN_420_8 = 0;
|
|
11612
|
+
*/
|
|
11613
|
+
MAIN_420_8 = 0
|
|
11614
|
+
}
|
|
11615
|
+
/**
|
|
11616
|
+
* @generated from enum norsk.api.media.QuadraAv1.QuadraAv1Tier
|
|
11617
|
+
*/
|
|
11618
|
+
export declare enum QuadraAv1_QuadraAv1Tier {
|
|
11619
|
+
/**
|
|
11620
|
+
* @generated from enum value: QUADRA_AV1_TIER_MAIN = 0;
|
|
11621
|
+
*/
|
|
11622
|
+
MAIN = 0,
|
|
11623
|
+
/**
|
|
11624
|
+
* @generated from enum value: QUADRA_AV1_TIER_HIGH = 1;
|
|
11625
|
+
*/
|
|
11626
|
+
HIGH = 1
|
|
11627
|
+
}
|
|
10976
11628
|
/**
|
|
10977
11629
|
* @generated from message norsk.api.media.LoganH264
|
|
10978
11630
|
*/
|
|
@@ -11808,6 +12460,57 @@ export declare enum AmdMA35DHevc_AmdMA35DHevcTier {
|
|
|
11808
12460
|
*/
|
|
11809
12461
|
AMD_MA35D_HEVC_TIER_HIGH = 1
|
|
11810
12462
|
}
|
|
12463
|
+
/**
|
|
12464
|
+
* @generated from message norsk.api.media.AmdMA35DAv1
|
|
12465
|
+
*/
|
|
12466
|
+
export declare class AmdMA35DAv1 extends Message<AmdMA35DAv1> {
|
|
12467
|
+
/**
|
|
12468
|
+
* @generated from field: norsk.api.media.AmdMA35DAv1.AmdMA35DAv1Tier tier = 1;
|
|
12469
|
+
*/
|
|
12470
|
+
tier: AmdMA35DAv1_AmdMA35DAv1Tier;
|
|
12471
|
+
/**
|
|
12472
|
+
* @generated from field: norsk.api.media.AmdMA35DAv1.AmdMA35DAv1Profile profile = 2;
|
|
12473
|
+
*/
|
|
12474
|
+
profile: AmdMA35DAv1_AmdMA35DAv1Profile;
|
|
12475
|
+
/**
|
|
12476
|
+
* @generated from field: norsk.api.common.OptionalInt level = 3;
|
|
12477
|
+
*/
|
|
12478
|
+
level?: OptionalInt;
|
|
12479
|
+
/**
|
|
12480
|
+
* @generated from field: norsk.api.media.AmdMA35DEncodeCommon common = 4;
|
|
12481
|
+
*/
|
|
12482
|
+
common?: AmdMA35DEncodeCommon;
|
|
12483
|
+
constructor(data?: PartialMessage<AmdMA35DAv1>);
|
|
12484
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
12485
|
+
static readonly typeName = "norsk.api.media.AmdMA35DAv1";
|
|
12486
|
+
static readonly fields: FieldList;
|
|
12487
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DAv1;
|
|
12488
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DAv1;
|
|
12489
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DAv1;
|
|
12490
|
+
static equals(a: AmdMA35DAv1 | PlainMessage<AmdMA35DAv1> | undefined, b: AmdMA35DAv1 | PlainMessage<AmdMA35DAv1> | undefined): boolean;
|
|
12491
|
+
}
|
|
12492
|
+
/**
|
|
12493
|
+
* @generated from enum norsk.api.media.AmdMA35DAv1.AmdMA35DAv1Profile
|
|
12494
|
+
*/
|
|
12495
|
+
export declare enum AmdMA35DAv1_AmdMA35DAv1Profile {
|
|
12496
|
+
/**
|
|
12497
|
+
* @generated from enum value: AMD_MA35D_AV1_PROFILE_MAIN = 0;
|
|
12498
|
+
*/
|
|
12499
|
+
AMD_MA35D_AV1_PROFILE_MAIN = 0
|
|
12500
|
+
}
|
|
12501
|
+
/**
|
|
12502
|
+
* @generated from enum norsk.api.media.AmdMA35DAv1.AmdMA35DAv1Tier
|
|
12503
|
+
*/
|
|
12504
|
+
export declare enum AmdMA35DAv1_AmdMA35DAv1Tier {
|
|
12505
|
+
/**
|
|
12506
|
+
* @generated from enum value: AMD_MA35D_AV1_TIER_MAIN = 0;
|
|
12507
|
+
*/
|
|
12508
|
+
AMD_MA35D_AV1_TIER_MAIN = 0,
|
|
12509
|
+
/**
|
|
12510
|
+
* @generated from enum value: AMD_MA35D_AV1_TIER_HIGH = 1;
|
|
12511
|
+
*/
|
|
12512
|
+
AMD_MA35D_AV1_TIER_HIGH = 1
|
|
12513
|
+
}
|
|
11811
12514
|
/**
|
|
11812
12515
|
* @generated from message norsk.api.media.NoDeinterlace
|
|
11813
12516
|
*/
|
|
@@ -13353,6 +14056,12 @@ export declare class StreamSwitchSmoothSwitch extends Message<StreamSwitchSmooth
|
|
|
13353
14056
|
* @generated from field: norsk.api.media.InputPin new_active_source = 1;
|
|
13354
14057
|
*/
|
|
13355
14058
|
newActiveSource?: InputPin;
|
|
14059
|
+
/**
|
|
14060
|
+
* Optionally the duration of the transition (otherwise the configured default transition duration is used)
|
|
14061
|
+
*
|
|
14062
|
+
* @generated from field: norsk.api.common.OptionalFloat transition_duration_ms = 2;
|
|
14063
|
+
*/
|
|
14064
|
+
transitionDurationMs?: OptionalFloat;
|
|
13356
14065
|
constructor(data?: PartialMessage<StreamSwitchSmoothSwitch>);
|
|
13357
14066
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13358
14067
|
static readonly typeName = "norsk.api.media.StreamSwitchSmoothSwitch";
|
|
@@ -16464,6 +17173,29 @@ export declare class StartMediaStoreCut extends Message<StartMediaStoreCut> {
|
|
|
16464
17173
|
* @generated from field: bool fast_start = 6;
|
|
16465
17174
|
*/
|
|
16466
17175
|
fastStart: boolean;
|
|
17176
|
+
/**
|
|
17177
|
+
* @generated from oneof norsk.api.media.StartMediaStoreCut.partial_encode_settings
|
|
17178
|
+
*/
|
|
17179
|
+
partialEncodeSettings: {
|
|
17180
|
+
/**
|
|
17181
|
+
* @generated from field: norsk.api.media.X264Codec x264_params = 7;
|
|
17182
|
+
*/
|
|
17183
|
+
value: X264Codec;
|
|
17184
|
+
case: "x264Params";
|
|
17185
|
+
} | {
|
|
17186
|
+
/**
|
|
17187
|
+
* @generated from field: norsk.api.media.X265Codec x265_params = 8;
|
|
17188
|
+
*/
|
|
17189
|
+
value: X265Codec;
|
|
17190
|
+
case: "x265Params";
|
|
17191
|
+
} | {
|
|
17192
|
+
case: undefined;
|
|
17193
|
+
value?: undefined;
|
|
17194
|
+
};
|
|
17195
|
+
/**
|
|
17196
|
+
* @generated from field: norsk.api.media.StartMediaStoreCut.SequenceHeaderHandling sequence_header_handling = 9;
|
|
17197
|
+
*/
|
|
17198
|
+
sequenceHeaderHandling: StartMediaStoreCut_SequenceHeaderHandling;
|
|
16467
17199
|
constructor(data?: PartialMessage<StartMediaStoreCut>);
|
|
16468
17200
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16469
17201
|
static readonly typeName = "norsk.api.media.StartMediaStoreCut";
|
|
@@ -16482,6 +17214,19 @@ export declare enum StartMediaStoreCut_FileFormat {
|
|
|
16482
17214
|
*/
|
|
16483
17215
|
CUT_MP4 = 0
|
|
16484
17216
|
}
|
|
17217
|
+
/**
|
|
17218
|
+
* @generated from enum norsk.api.media.StartMediaStoreCut.SequenceHeaderHandling
|
|
17219
|
+
*/
|
|
17220
|
+
export declare enum StartMediaStoreCut_SequenceHeaderHandling {
|
|
17221
|
+
/**
|
|
17222
|
+
* @generated from enum value: SINGLE_HEADER = 0;
|
|
17223
|
+
*/
|
|
17224
|
+
SINGLE_HEADER = 0,
|
|
17225
|
+
/**
|
|
17226
|
+
* @generated from enum value: MULTIPLE_HEADERS = 1;
|
|
17227
|
+
*/
|
|
17228
|
+
MULTIPLE_HEADERS = 1
|
|
17229
|
+
}
|
|
16485
17230
|
/**
|
|
16486
17231
|
* @generated from message norsk.api.media.CancelMediaStoreCut
|
|
16487
17232
|
*/
|