@norskvideo/norsk-api 1.0.352 → 1.0.354
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/manager_grpc_pb.d.ts +17 -0
- package/lib/manager_grpc_pb.js +22 -0
- package/lib/manager_pb.d.ts +23 -0
- package/lib/manager_pb.js +34 -2
- package/lib/manager_pb.js.map +1 -1
- package/lib/manager_pb.ts +43 -0
- package/lib/media_grpc_pb.d.ts +45 -13
- package/lib/media_grpc_pb.js +89 -18
- package/lib/media_pb.d.ts +526 -74
- package/lib/media_pb.js +493 -96
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +797 -109
- package/package.json +1 -1
package/lib/media_pb.ts
CHANGED
|
@@ -4874,6 +4874,11 @@ export class FileTsInputConfiguration extends Message<FileTsInputConfiguration>
|
|
|
4874
4874
|
*/
|
|
4875
4875
|
loop = false;
|
|
4876
4876
|
|
|
4877
|
+
/**
|
|
4878
|
+
* @generated from field: norsk.api.media.FileTsInputConfiguration.StartMode start_mode = 6;
|
|
4879
|
+
*/
|
|
4880
|
+
startMode = FileTsInputConfiguration_StartMode.FILE_TS_START_PLAYING;
|
|
4881
|
+
|
|
4877
4882
|
constructor(data?: PartialMessage<FileTsInputConfiguration>) {
|
|
4878
4883
|
super();
|
|
4879
4884
|
proto3.util.initPartial(data, this);
|
|
@@ -4887,6 +4892,7 @@ export class FileTsInputConfiguration extends Message<FileTsInputConfiguration>
|
|
|
4887
4892
|
{ no: 3, name: "filename", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
4888
4893
|
{ no: 4, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
4889
4894
|
{ no: 5, name: "loop", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
4895
|
+
{ no: 6, name: "start_mode", kind: "enum", T: proto3.getEnumType(FileTsInputConfiguration_StartMode) },
|
|
4890
4896
|
]);
|
|
4891
4897
|
|
|
4892
4898
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputConfiguration {
|
|
@@ -4906,6 +4912,26 @@ export class FileTsInputConfiguration extends Message<FileTsInputConfiguration>
|
|
|
4906
4912
|
}
|
|
4907
4913
|
}
|
|
4908
4914
|
|
|
4915
|
+
/**
|
|
4916
|
+
* @generated from enum norsk.api.media.FileTsInputConfiguration.StartMode
|
|
4917
|
+
*/
|
|
4918
|
+
export enum FileTsInputConfiguration_StartMode {
|
|
4919
|
+
/**
|
|
4920
|
+
* @generated from enum value: FILE_TS_START_PLAYING = 0;
|
|
4921
|
+
*/
|
|
4922
|
+
FILE_TS_START_PLAYING = 0,
|
|
4923
|
+
|
|
4924
|
+
/**
|
|
4925
|
+
* @generated from enum value: FILE_TS_START_PAUSED = 1;
|
|
4926
|
+
*/
|
|
4927
|
+
FILE_TS_START_PAUSED = 1,
|
|
4928
|
+
}
|
|
4929
|
+
// Retrieve enum metadata with: proto3.getEnumType(FileTsInputConfiguration_StartMode)
|
|
4930
|
+
proto3.util.setEnumType(FileTsInputConfiguration_StartMode, "norsk.api.media.FileTsInputConfiguration.StartMode", [
|
|
4931
|
+
{ no: 0, name: "FILE_TS_START_PLAYING" },
|
|
4932
|
+
{ no: 1, name: "FILE_TS_START_PAUSED" },
|
|
4933
|
+
]);
|
|
4934
|
+
|
|
4909
4935
|
/**
|
|
4910
4936
|
* @generated from message norsk.api.media.FileTsInputConfigurationUpdate
|
|
4911
4937
|
*/
|
|
@@ -4968,6 +4994,18 @@ export class FileTsInputMessage extends Message<FileTsInputMessage> {
|
|
|
4968
4994
|
*/
|
|
4969
4995
|
value: FileTsInputConfigurationUpdate;
|
|
4970
4996
|
case: "updateConfig";
|
|
4997
|
+
} | {
|
|
4998
|
+
/**
|
|
4999
|
+
* @generated from field: google.protobuf.Empty play = 4;
|
|
5000
|
+
*/
|
|
5001
|
+
value: Empty;
|
|
5002
|
+
case: "play";
|
|
5003
|
+
} | {
|
|
5004
|
+
/**
|
|
5005
|
+
* @generated from field: google.protobuf.Empty pause = 5;
|
|
5006
|
+
*/
|
|
5007
|
+
value: Empty;
|
|
5008
|
+
case: "pause";
|
|
4971
5009
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
4972
5010
|
|
|
4973
5011
|
constructor(data?: PartialMessage<FileTsInputMessage>) {
|
|
@@ -4981,6 +5019,8 @@ export class FileTsInputMessage extends Message<FileTsInputMessage> {
|
|
|
4981
5019
|
{ no: 1, name: "initial_config", kind: "message", T: FileTsInputConfiguration, oneof: "message" },
|
|
4982
5020
|
{ no: 2, name: "nudge", kind: "message", T: TimestampProgramNudge, oneof: "message" },
|
|
4983
5021
|
{ no: 3, name: "update_config", kind: "message", T: FileTsInputConfigurationUpdate, oneof: "message" },
|
|
5022
|
+
{ no: 4, name: "play", kind: "message", T: Empty, oneof: "message" },
|
|
5023
|
+
{ no: 5, name: "pause", kind: "message", T: Empty, oneof: "message" },
|
|
4984
5024
|
]);
|
|
4985
5025
|
|
|
4986
5026
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputMessage {
|
|
@@ -5145,6 +5185,31 @@ export class SrtInputConfiguration extends Message<SrtInputConfiguration> {
|
|
|
5145
5185
|
*/
|
|
5146
5186
|
statsSampling?: StreamStatisticsSampling;
|
|
5147
5187
|
|
|
5188
|
+
/**
|
|
5189
|
+
* @generated from field: norsk.api.common.OptionalInt receive_latency = 9;
|
|
5190
|
+
*/
|
|
5191
|
+
receiveLatency?: OptionalInt;
|
|
5192
|
+
|
|
5193
|
+
/**
|
|
5194
|
+
* @generated from field: norsk.api.common.OptionalInt peer_latency = 10;
|
|
5195
|
+
*/
|
|
5196
|
+
peerLatency?: OptionalInt;
|
|
5197
|
+
|
|
5198
|
+
/**
|
|
5199
|
+
* @generated from field: norsk.api.common.OptionalInt input_bandwidth = 11;
|
|
5200
|
+
*/
|
|
5201
|
+
inputBandwidth?: OptionalInt;
|
|
5202
|
+
|
|
5203
|
+
/**
|
|
5204
|
+
* @generated from field: norsk.api.common.OptionalInt overhead_bandwidth = 12;
|
|
5205
|
+
*/
|
|
5206
|
+
overheadBandwidth?: OptionalInt;
|
|
5207
|
+
|
|
5208
|
+
/**
|
|
5209
|
+
* @generated from field: norsk.api.common.OptionalInt max_bandwidth = 13;
|
|
5210
|
+
*/
|
|
5211
|
+
maxBandwidth?: OptionalInt;
|
|
5212
|
+
|
|
5148
5213
|
constructor(data?: PartialMessage<SrtInputConfiguration>) {
|
|
5149
5214
|
super();
|
|
5150
5215
|
proto3.util.initPartial(data, this);
|
|
@@ -5161,6 +5226,11 @@ export class SrtInputConfiguration extends Message<SrtInputConfiguration> {
|
|
|
5161
5226
|
{ no: 6, name: "passphrase", kind: "message", T: OptionalString },
|
|
5162
5227
|
{ no: 7, name: "stream_id", kind: "message", T: OptionalString },
|
|
5163
5228
|
{ no: 8, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
5229
|
+
{ no: 9, name: "receive_latency", kind: "message", T: OptionalInt },
|
|
5230
|
+
{ no: 10, name: "peer_latency", kind: "message", T: OptionalInt },
|
|
5231
|
+
{ no: 11, name: "input_bandwidth", kind: "message", T: OptionalInt },
|
|
5232
|
+
{ no: 12, name: "overhead_bandwidth", kind: "message", T: OptionalInt },
|
|
5233
|
+
{ no: 13, name: "max_bandwidth", kind: "message", T: OptionalInt },
|
|
5164
5234
|
]);
|
|
5165
5235
|
|
|
5166
5236
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SrtInputConfiguration {
|
|
@@ -6586,6 +6656,11 @@ export class FileMp4InputConfiguration extends Message<FileMp4InputConfiguration
|
|
|
6586
6656
|
*/
|
|
6587
6657
|
loop = false;
|
|
6588
6658
|
|
|
6659
|
+
/**
|
|
6660
|
+
* @generated from field: norsk.api.media.FileMp4InputConfiguration.StartMode start_mode = 6;
|
|
6661
|
+
*/
|
|
6662
|
+
startMode = FileMp4InputConfiguration_StartMode.FILE_MP4_START_PLAYING;
|
|
6663
|
+
|
|
6589
6664
|
constructor(data?: PartialMessage<FileMp4InputConfiguration>) {
|
|
6590
6665
|
super();
|
|
6591
6666
|
proto3.util.initPartial(data, this);
|
|
@@ -6599,6 +6674,7 @@ export class FileMp4InputConfiguration extends Message<FileMp4InputConfiguration
|
|
|
6599
6674
|
{ no: 3, name: "file_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6600
6675
|
{ no: 4, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
6601
6676
|
{ no: 5, name: "loop", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
6677
|
+
{ no: 6, name: "start_mode", kind: "enum", T: proto3.getEnumType(FileMp4InputConfiguration_StartMode) },
|
|
6602
6678
|
]);
|
|
6603
6679
|
|
|
6604
6680
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputConfiguration {
|
|
@@ -6618,6 +6694,26 @@ export class FileMp4InputConfiguration extends Message<FileMp4InputConfiguration
|
|
|
6618
6694
|
}
|
|
6619
6695
|
}
|
|
6620
6696
|
|
|
6697
|
+
/**
|
|
6698
|
+
* @generated from enum norsk.api.media.FileMp4InputConfiguration.StartMode
|
|
6699
|
+
*/
|
|
6700
|
+
export enum FileMp4InputConfiguration_StartMode {
|
|
6701
|
+
/**
|
|
6702
|
+
* @generated from enum value: FILE_MP4_START_PLAYING = 0;
|
|
6703
|
+
*/
|
|
6704
|
+
FILE_MP4_START_PLAYING = 0,
|
|
6705
|
+
|
|
6706
|
+
/**
|
|
6707
|
+
* @generated from enum value: FILE_MP4_START_PAUSED = 1;
|
|
6708
|
+
*/
|
|
6709
|
+
FILE_MP4_START_PAUSED = 1,
|
|
6710
|
+
}
|
|
6711
|
+
// Retrieve enum metadata with: proto3.getEnumType(FileMp4InputConfiguration_StartMode)
|
|
6712
|
+
proto3.util.setEnumType(FileMp4InputConfiguration_StartMode, "norsk.api.media.FileMp4InputConfiguration.StartMode", [
|
|
6713
|
+
{ no: 0, name: "FILE_MP4_START_PLAYING" },
|
|
6714
|
+
{ no: 1, name: "FILE_MP4_START_PAUSED" },
|
|
6715
|
+
]);
|
|
6716
|
+
|
|
6621
6717
|
/**
|
|
6622
6718
|
* @generated from message norsk.api.media.FileMp4InputConfigurationUpdate
|
|
6623
6719
|
*/
|
|
@@ -6680,6 +6776,18 @@ export class FileMp4InputMessage extends Message<FileMp4InputMessage> {
|
|
|
6680
6776
|
*/
|
|
6681
6777
|
value: FileMp4InputConfigurationUpdate;
|
|
6682
6778
|
case: "updateConfig";
|
|
6779
|
+
} | {
|
|
6780
|
+
/**
|
|
6781
|
+
* @generated from field: google.protobuf.Empty play = 4;
|
|
6782
|
+
*/
|
|
6783
|
+
value: Empty;
|
|
6784
|
+
case: "play";
|
|
6785
|
+
} | {
|
|
6786
|
+
/**
|
|
6787
|
+
* @generated from field: google.protobuf.Empty pause = 5;
|
|
6788
|
+
*/
|
|
6789
|
+
value: Empty;
|
|
6790
|
+
case: "pause";
|
|
6683
6791
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
6684
6792
|
|
|
6685
6793
|
constructor(data?: PartialMessage<FileMp4InputMessage>) {
|
|
@@ -6693,6 +6801,8 @@ export class FileMp4InputMessage extends Message<FileMp4InputMessage> {
|
|
|
6693
6801
|
{ no: 1, name: "initial_config", kind: "message", T: FileMp4InputConfiguration, oneof: "message" },
|
|
6694
6802
|
{ no: 2, name: "nudge", kind: "message", T: TimestampNudge, oneof: "message" },
|
|
6695
6803
|
{ no: 3, name: "update_config", kind: "message", T: FileMp4InputConfigurationUpdate, oneof: "message" },
|
|
6804
|
+
{ no: 4, name: "play", kind: "message", T: Empty, oneof: "message" },
|
|
6805
|
+
{ no: 5, name: "pause", kind: "message", T: Empty, oneof: "message" },
|
|
6696
6806
|
]);
|
|
6697
6807
|
|
|
6698
6808
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputMessage {
|
|
@@ -10201,6 +10311,21 @@ export class AwsS3PushDestination extends Message<AwsS3PushDestination> {
|
|
|
10201
10311
|
*/
|
|
10202
10312
|
retentionPeriodSeconds = 0;
|
|
10203
10313
|
|
|
10314
|
+
/**
|
|
10315
|
+
* @generated from field: norsk.api.common.OptionalInt default_segment_count = 10;
|
|
10316
|
+
*/
|
|
10317
|
+
defaultSegmentCount?: OptionalInt;
|
|
10318
|
+
|
|
10319
|
+
/**
|
|
10320
|
+
* @generated from field: float hold_back_seconds = 11;
|
|
10321
|
+
*/
|
|
10322
|
+
holdBackSeconds = 0;
|
|
10323
|
+
|
|
10324
|
+
/**
|
|
10325
|
+
* @generated from field: float part_hold_back_seconds = 12;
|
|
10326
|
+
*/
|
|
10327
|
+
partHoldBackSeconds = 0;
|
|
10328
|
+
|
|
10204
10329
|
constructor(data?: PartialMessage<AwsS3PushDestination>) {
|
|
10205
10330
|
super();
|
|
10206
10331
|
proto3.util.initPartial(data, this);
|
|
@@ -10217,6 +10342,9 @@ export class AwsS3PushDestination extends Message<AwsS3PushDestination> {
|
|
|
10217
10342
|
{ no: 7, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10218
10343
|
{ no: 8, name: "aws_credentials", kind: "message", T: AwsCredentials },
|
|
10219
10344
|
{ no: 9, name: "retention_period_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10345
|
+
{ no: 10, name: "default_segment_count", kind: "message", T: OptionalInt },
|
|
10346
|
+
{ no: 11, name: "hold_back_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10347
|
+
{ no: 12, name: "part_hold_back_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10220
10348
|
]);
|
|
10221
10349
|
|
|
10222
10350
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AwsS3PushDestination {
|
|
@@ -10255,6 +10383,21 @@ export class LocalPullDestination extends Message<LocalPullDestination> {
|
|
|
10255
10383
|
*/
|
|
10256
10384
|
id = "";
|
|
10257
10385
|
|
|
10386
|
+
/**
|
|
10387
|
+
* @generated from field: norsk.api.common.OptionalInt default_segment_count = 4;
|
|
10388
|
+
*/
|
|
10389
|
+
defaultSegmentCount?: OptionalInt;
|
|
10390
|
+
|
|
10391
|
+
/**
|
|
10392
|
+
* @generated from field: float hold_back_seconds = 5;
|
|
10393
|
+
*/
|
|
10394
|
+
holdBackSeconds = 0;
|
|
10395
|
+
|
|
10396
|
+
/**
|
|
10397
|
+
* @generated from field: float part_hold_back_seconds = 6;
|
|
10398
|
+
*/
|
|
10399
|
+
partHoldBackSeconds = 0;
|
|
10400
|
+
|
|
10258
10401
|
constructor(data?: PartialMessage<LocalPullDestination>) {
|
|
10259
10402
|
super();
|
|
10260
10403
|
proto3.util.initPartial(data, this);
|
|
@@ -10266,6 +10409,9 @@ export class LocalPullDestination extends Message<LocalPullDestination> {
|
|
|
10266
10409
|
{ no: 1, name: "sessionId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10267
10410
|
{ no: 2, name: "retention_period_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10268
10411
|
{ no: 3, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10412
|
+
{ no: 4, name: "default_segment_count", kind: "message", T: OptionalInt },
|
|
10413
|
+
{ no: 5, name: "hold_back_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10414
|
+
{ no: 6, name: "part_hold_back_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10269
10415
|
]);
|
|
10270
10416
|
|
|
10271
10417
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LocalPullDestination {
|
|
@@ -10364,11 +10510,8 @@ export class CmafVideoConfiguration extends Message<CmafVideoConfiguration> {
|
|
|
10364
10510
|
partDurationSeconds = 0;
|
|
10365
10511
|
|
|
10366
10512
|
/**
|
|
10367
|
-
*
|
|
10368
|
-
|
|
10369
|
-
delayOutputMs = 0;
|
|
10370
|
-
|
|
10371
|
-
/**
|
|
10513
|
+
* float delay_output_ms = 4;
|
|
10514
|
+
*
|
|
10372
10515
|
* @generated from field: norsk.api.media.Mp4Encryption encryption = 5;
|
|
10373
10516
|
*/
|
|
10374
10517
|
encryption?: Mp4Encryption;
|
|
@@ -10402,11 +10545,6 @@ export class CmafVideoConfiguration extends Message<CmafVideoConfiguration> {
|
|
|
10402
10545
|
*/
|
|
10403
10546
|
bitrate = 0;
|
|
10404
10547
|
|
|
10405
|
-
/**
|
|
10406
|
-
* @generated from field: uint32 maximum_playlist_segments = 11;
|
|
10407
|
-
*/
|
|
10408
|
-
maximumPlaylistSegments = 0;
|
|
10409
|
-
|
|
10410
10548
|
constructor(data?: PartialMessage<CmafVideoConfiguration>) {
|
|
10411
10549
|
super();
|
|
10412
10550
|
proto3.util.initPartial(data, this);
|
|
@@ -10418,14 +10556,12 @@ export class CmafVideoConfiguration extends Message<CmafVideoConfiguration> {
|
|
|
10418
10556
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
10419
10557
|
{ no: 2, name: "segment_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10420
10558
|
{ no: 3, name: "part_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10421
|
-
{ no: 4, name: "delay_output_ms", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10422
10559
|
{ no: 5, name: "encryption", kind: "message", T: Mp4Encryption },
|
|
10423
10560
|
{ no: 6, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
10424
10561
|
{ no: 7, name: "destinations", kind: "message", T: CMAFDestination, repeated: true },
|
|
10425
10562
|
{ no: 8, name: "m3u_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10426
10563
|
{ no: 9, name: "mpd_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10427
10564
|
{ no: 10, name: "bitrate", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
10428
|
-
{ no: 11, name: "maximum_playlist_segments", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
10429
10565
|
]);
|
|
10430
10566
|
|
|
10431
10567
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafVideoConfiguration {
|
|
@@ -10524,11 +10660,8 @@ export class HlsTsVideoConfiguration extends Message<HlsTsVideoConfiguration> {
|
|
|
10524
10660
|
segmentDurationSeconds = 0;
|
|
10525
10661
|
|
|
10526
10662
|
/**
|
|
10527
|
-
*
|
|
10528
|
-
|
|
10529
|
-
delayOutputMs = 0;
|
|
10530
|
-
|
|
10531
|
-
/**
|
|
10663
|
+
* float delay_output_ms = 3;
|
|
10664
|
+
*
|
|
10532
10665
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
10533
10666
|
*/
|
|
10534
10667
|
statsSampling?: StreamStatisticsSampling;
|
|
@@ -10557,11 +10690,6 @@ export class HlsTsVideoConfiguration extends Message<HlsTsVideoConfiguration> {
|
|
|
10557
10690
|
*/
|
|
10558
10691
|
bitrate = 0;
|
|
10559
10692
|
|
|
10560
|
-
/**
|
|
10561
|
-
* @generated from field: uint32 maximum_playlist_segments = 9;
|
|
10562
|
-
*/
|
|
10563
|
-
maximumPlaylistSegments = 0;
|
|
10564
|
-
|
|
10565
10693
|
constructor(data?: PartialMessage<HlsTsVideoConfiguration>) {
|
|
10566
10694
|
super();
|
|
10567
10695
|
proto3.util.initPartial(data, this);
|
|
@@ -10572,13 +10700,11 @@ export class HlsTsVideoConfiguration extends Message<HlsTsVideoConfiguration> {
|
|
|
10572
10700
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
10573
10701
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
10574
10702
|
{ no: 2, name: "segment_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10575
|
-
{ no: 3, name: "delay_output_ms", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10576
10703
|
{ no: 4, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
10577
10704
|
{ no: 5, name: "destinations", kind: "message", T: CMAFDestination, repeated: true },
|
|
10578
10705
|
{ no: 6, name: "m3u_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10579
10706
|
{ no: 7, name: "mpd_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10580
10707
|
{ no: 8, name: "bitrate", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
10581
|
-
{ no: 9, name: "maximum_playlist_segments", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
10582
10708
|
]);
|
|
10583
10709
|
|
|
10584
10710
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsTsVideoConfiguration {
|
|
@@ -10682,11 +10808,8 @@ export class CmafAudioConfiguration extends Message<CmafAudioConfiguration> {
|
|
|
10682
10808
|
partDurationSeconds = 0;
|
|
10683
10809
|
|
|
10684
10810
|
/**
|
|
10685
|
-
*
|
|
10686
|
-
|
|
10687
|
-
delayOutputMs = 0;
|
|
10688
|
-
|
|
10689
|
-
/**
|
|
10811
|
+
* float delay_output_ms = 4;
|
|
10812
|
+
*
|
|
10690
10813
|
* @generated from field: norsk.api.media.Mp4Encryption encryption = 6;
|
|
10691
10814
|
*/
|
|
10692
10815
|
encryption?: Mp4Encryption;
|
|
@@ -10720,11 +10843,6 @@ export class CmafAudioConfiguration extends Message<CmafAudioConfiguration> {
|
|
|
10720
10843
|
*/
|
|
10721
10844
|
bitrate = 0;
|
|
10722
10845
|
|
|
10723
|
-
/**
|
|
10724
|
-
* @generated from field: uint32 maximum_playlist_segments = 12;
|
|
10725
|
-
*/
|
|
10726
|
-
maximumPlaylistSegments = 0;
|
|
10727
|
-
|
|
10728
10846
|
constructor(data?: PartialMessage<CmafAudioConfiguration>) {
|
|
10729
10847
|
super();
|
|
10730
10848
|
proto3.util.initPartial(data, this);
|
|
@@ -10736,14 +10854,12 @@ export class CmafAudioConfiguration extends Message<CmafAudioConfiguration> {
|
|
|
10736
10854
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
10737
10855
|
{ no: 2, name: "segment_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10738
10856
|
{ no: 3, name: "part_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10739
|
-
{ no: 4, name: "delay_output_ms", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10740
10857
|
{ no: 6, name: "encryption", kind: "message", T: Mp4Encryption },
|
|
10741
10858
|
{ no: 7, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
10742
10859
|
{ no: 8, name: "destinations", kind: "message", T: CMAFDestination, repeated: true },
|
|
10743
10860
|
{ no: 9, name: "m3u_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10744
10861
|
{ no: 10, name: "mpd_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10745
10862
|
{ no: 11, name: "bitrate", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
10746
|
-
{ no: 12, name: "maximum_playlist_segments", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
10747
10863
|
]);
|
|
10748
10864
|
|
|
10749
10865
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafAudioConfiguration {
|
|
@@ -10842,11 +10958,8 @@ export class HlsTsAudioConfiguration extends Message<HlsTsAudioConfiguration> {
|
|
|
10842
10958
|
segmentDurationSeconds = 0;
|
|
10843
10959
|
|
|
10844
10960
|
/**
|
|
10845
|
-
*
|
|
10846
|
-
|
|
10847
|
-
delayOutputMs = 0;
|
|
10848
|
-
|
|
10849
|
-
/**
|
|
10961
|
+
* float delay_output_ms = 3;
|
|
10962
|
+
*
|
|
10850
10963
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
10851
10964
|
*/
|
|
10852
10965
|
statsSampling?: StreamStatisticsSampling;
|
|
@@ -10875,11 +10988,6 @@ export class HlsTsAudioConfiguration extends Message<HlsTsAudioConfiguration> {
|
|
|
10875
10988
|
*/
|
|
10876
10989
|
bitrate = 0;
|
|
10877
10990
|
|
|
10878
|
-
/**
|
|
10879
|
-
* @generated from field: uint32 maximum_playlist_segments = 9;
|
|
10880
|
-
*/
|
|
10881
|
-
maximumPlaylistSegments = 0;
|
|
10882
|
-
|
|
10883
10991
|
constructor(data?: PartialMessage<HlsTsAudioConfiguration>) {
|
|
10884
10992
|
super();
|
|
10885
10993
|
proto3.util.initPartial(data, this);
|
|
@@ -10890,13 +10998,11 @@ export class HlsTsAudioConfiguration extends Message<HlsTsAudioConfiguration> {
|
|
|
10890
10998
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
10891
10999
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
10892
11000
|
{ no: 2, name: "segment_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10893
|
-
{ no: 3, name: "delay_output_ms", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
10894
11001
|
{ no: 4, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
10895
11002
|
{ no: 5, name: "destinations", kind: "message", T: CMAFDestination, repeated: true },
|
|
10896
11003
|
{ no: 6, name: "m3u_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10897
11004
|
{ no: 7, name: "mpd_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10898
11005
|
{ no: 8, name: "bitrate", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
10899
|
-
{ no: 9, name: "maximum_playlist_segments", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
10900
11006
|
]);
|
|
10901
11007
|
|
|
10902
11008
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsTsAudioConfiguration {
|
|
@@ -10995,11 +11101,8 @@ export class CmafWebVttConfiguration extends Message<CmafWebVttConfiguration> {
|
|
|
10995
11101
|
segmentDurationSeconds = 0;
|
|
10996
11102
|
|
|
10997
11103
|
/**
|
|
10998
|
-
*
|
|
10999
|
-
|
|
11000
|
-
delayOutputMs = 0;
|
|
11001
|
-
|
|
11002
|
-
/**
|
|
11104
|
+
* float delay_output_ms = 3;
|
|
11105
|
+
*
|
|
11003
11106
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
|
|
11004
11107
|
*/
|
|
11005
11108
|
destinations: CMAFDestination[] = [];
|
|
@@ -11009,11 +11112,6 @@ export class CmafWebVttConfiguration extends Message<CmafWebVttConfiguration> {
|
|
|
11009
11112
|
*/
|
|
11010
11113
|
hlsCacheDirectory = "";
|
|
11011
11114
|
|
|
11012
|
-
/**
|
|
11013
|
-
* @generated from field: uint32 maximum_playlist_segments = 7;
|
|
11014
|
-
*/
|
|
11015
|
-
maximumPlaylistSegments = 0;
|
|
11016
|
-
|
|
11017
11115
|
/**
|
|
11018
11116
|
* @generated from field: norsk.api.media.Interval pts_adjustment = 8;
|
|
11019
11117
|
*/
|
|
@@ -11029,10 +11127,8 @@ export class CmafWebVttConfiguration extends Message<CmafWebVttConfiguration> {
|
|
|
11029
11127
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
11030
11128
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
11031
11129
|
{ no: 2, name: "segment_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
11032
|
-
{ no: 3, name: "delay_output_ms", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
11033
11130
|
{ no: 5, name: "destinations", kind: "message", T: CMAFDestination, repeated: true },
|
|
11034
11131
|
{ no: 6, name: "hls_cache_directory", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
11035
|
-
{ no: 7, name: "maximum_playlist_segments", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
11036
11132
|
{ no: 8, name: "pts_adjustment", kind: "message", T: Interval },
|
|
11037
11133
|
]);
|
|
11038
11134
|
|
|
@@ -12050,11 +12146,8 @@ export class HlsTsCombinedPushConfiguration extends Message<HlsTsCombinedPushCon
|
|
|
12050
12146
|
segmentDurationSeconds = 0;
|
|
12051
12147
|
|
|
12052
12148
|
/**
|
|
12053
|
-
*
|
|
12054
|
-
|
|
12055
|
-
delayOutputMs = 0;
|
|
12056
|
-
|
|
12057
|
-
/**
|
|
12149
|
+
* float delay_output_ms = 4;
|
|
12150
|
+
*
|
|
12058
12151
|
* @generated from field: string playlist_name = 5;
|
|
12059
12152
|
*/
|
|
12060
12153
|
playlistName = "";
|
|
@@ -12082,7 +12175,6 @@ export class HlsTsCombinedPushConfiguration extends Message<HlsTsCombinedPushCon
|
|
|
12082
12175
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
12083
12176
|
{ no: 2, name: "destination", kind: "message", T: CMAFDestination },
|
|
12084
12177
|
{ no: 3, name: "segment_duration_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
12085
|
-
{ no: 4, name: "delay_output_ms", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
12086
12178
|
{ no: 5, name: "playlist_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
12087
12179
|
{ no: 6, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
12088
12180
|
{ no: 7, name: "m3u_additions", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
@@ -12139,6 +12231,21 @@ export class HlsPushDestination extends Message<HlsPushDestination> {
|
|
|
12139
12231
|
*/
|
|
12140
12232
|
retentionPeriodSeconds = 0;
|
|
12141
12233
|
|
|
12234
|
+
/**
|
|
12235
|
+
* @generated from field: norsk.api.common.OptionalInt default_segment_count = 7;
|
|
12236
|
+
*/
|
|
12237
|
+
defaultSegmentCount?: OptionalInt;
|
|
12238
|
+
|
|
12239
|
+
/**
|
|
12240
|
+
* @generated from field: float hold_back_seconds = 8;
|
|
12241
|
+
*/
|
|
12242
|
+
holdBackSeconds = 0;
|
|
12243
|
+
|
|
12244
|
+
/**
|
|
12245
|
+
* @generated from field: float part_hold_back_seconds = 9;
|
|
12246
|
+
*/
|
|
12247
|
+
partHoldBackSeconds = 0;
|
|
12248
|
+
|
|
12142
12249
|
constructor(data?: PartialMessage<HlsPushDestination>) {
|
|
12143
12250
|
super();
|
|
12144
12251
|
proto3.util.initPartial(data, this);
|
|
@@ -12153,6 +12260,9 @@ export class HlsPushDestination extends Message<HlsPushDestination> {
|
|
|
12153
12260
|
{ no: 4, name: "session_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
12154
12261
|
{ no: 5, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
12155
12262
|
{ no: 6, name: "retention_period_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
12263
|
+
{ no: 7, name: "default_segment_count", kind: "message", T: OptionalInt },
|
|
12264
|
+
{ no: 8, name: "hold_back_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
12265
|
+
{ no: 9, name: "part_hold_back_seconds", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
12156
12266
|
]);
|
|
12157
12267
|
|
|
12158
12268
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HlsPushDestination {
|
|
@@ -12542,6 +12652,31 @@ export class SrtOutputConfiguration extends Message<SrtOutputConfiguration> {
|
|
|
12542
12652
|
*/
|
|
12543
12653
|
avDelayMs?: OptionalInt;
|
|
12544
12654
|
|
|
12655
|
+
/**
|
|
12656
|
+
* @generated from field: norsk.api.common.OptionalInt receive_latency = 11;
|
|
12657
|
+
*/
|
|
12658
|
+
receiveLatency?: OptionalInt;
|
|
12659
|
+
|
|
12660
|
+
/**
|
|
12661
|
+
* @generated from field: norsk.api.common.OptionalInt peer_latency = 12;
|
|
12662
|
+
*/
|
|
12663
|
+
peerLatency?: OptionalInt;
|
|
12664
|
+
|
|
12665
|
+
/**
|
|
12666
|
+
* @generated from field: norsk.api.common.OptionalInt input_bandwidth = 13;
|
|
12667
|
+
*/
|
|
12668
|
+
inputBandwidth?: OptionalInt;
|
|
12669
|
+
|
|
12670
|
+
/**
|
|
12671
|
+
* @generated from field: norsk.api.common.OptionalInt overhead_bandwidth = 14;
|
|
12672
|
+
*/
|
|
12673
|
+
overheadBandwidth?: OptionalInt;
|
|
12674
|
+
|
|
12675
|
+
/**
|
|
12676
|
+
* @generated from field: norsk.api.common.OptionalInt max_bandwidth = 15;
|
|
12677
|
+
*/
|
|
12678
|
+
maxBandwidth?: OptionalInt;
|
|
12679
|
+
|
|
12545
12680
|
constructor(data?: PartialMessage<SrtOutputConfiguration>) {
|
|
12546
12681
|
super();
|
|
12547
12682
|
proto3.util.initPartial(data, this);
|
|
@@ -12559,6 +12694,11 @@ export class SrtOutputConfiguration extends Message<SrtOutputConfiguration> {
|
|
|
12559
12694
|
{ no: 8, name: "stats_sampling", kind: "message", T: StreamStatisticsSampling },
|
|
12560
12695
|
{ no: 9, name: "buffer_delay_ms", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
12561
12696
|
{ no: 10, name: "av_delay_ms", kind: "message", T: OptionalInt },
|
|
12697
|
+
{ no: 11, name: "receive_latency", kind: "message", T: OptionalInt },
|
|
12698
|
+
{ no: 12, name: "peer_latency", kind: "message", T: OptionalInt },
|
|
12699
|
+
{ no: 13, name: "input_bandwidth", kind: "message", T: OptionalInt },
|
|
12700
|
+
{ no: 14, name: "overhead_bandwidth", kind: "message", T: OptionalInt },
|
|
12701
|
+
{ no: 15, name: "max_bandwidth", kind: "message", T: OptionalInt },
|
|
12562
12702
|
]);
|
|
12563
12703
|
|
|
12564
12704
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SrtOutputConfiguration {
|
|
@@ -14147,7 +14287,7 @@ export class X264Codec extends Message<X264Codec> {
|
|
|
14147
14287
|
cabac?: OptionalBool;
|
|
14148
14288
|
|
|
14149
14289
|
/**
|
|
14150
|
-
* Sets the maximum rate the VBV buffer should be assumed to refill at
|
|
14290
|
+
* Sets the maximum rate the VBV buffer should be assumed to refill at (kbit/s)
|
|
14151
14291
|
*
|
|
14152
14292
|
* @generated from field: norsk.api.common.OptionalInt vbv_max_rate = 11;
|
|
14153
14293
|
*/
|
|
@@ -14567,7 +14707,7 @@ export class X265Codec extends Message<X265Codec> {
|
|
|
14567
14707
|
frameReference?: OptionalInt;
|
|
14568
14708
|
|
|
14569
14709
|
/**
|
|
14570
|
-
* Sets the maximum rate the VBV buffer should be assumed to refill at
|
|
14710
|
+
* Sets the maximum rate the VBV buffer should be assumed to refill at (kbit/s)
|
|
14571
14711
|
*
|
|
14572
14712
|
* @generated from field: norsk.api.common.OptionalInt vbv_max_rate = 11;
|
|
14573
14713
|
*/
|
|
@@ -15121,6 +15261,201 @@ export class VideoEncodeEvent extends Message<VideoEncodeEvent> {
|
|
|
15121
15261
|
}
|
|
15122
15262
|
}
|
|
15123
15263
|
|
|
15264
|
+
/**
|
|
15265
|
+
* @generated from message norsk.api.media.VideoDecodeConfiguration
|
|
15266
|
+
*/
|
|
15267
|
+
export class VideoDecodeConfiguration extends Message<VideoDecodeConfiguration> {
|
|
15268
|
+
/**
|
|
15269
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
15270
|
+
*/
|
|
15271
|
+
id?: MediaNodeId;
|
|
15272
|
+
|
|
15273
|
+
/**
|
|
15274
|
+
* @generated from field: norsk.api.media.VideoDecodeConfiguration.VideoDecoder decoder = 2;
|
|
15275
|
+
*/
|
|
15276
|
+
decoder = VideoDecodeConfiguration_VideoDecoder.SOFTWARE;
|
|
15277
|
+
|
|
15278
|
+
constructor(data?: PartialMessage<VideoDecodeConfiguration>) {
|
|
15279
|
+
super();
|
|
15280
|
+
proto3.util.initPartial(data, this);
|
|
15281
|
+
}
|
|
15282
|
+
|
|
15283
|
+
static readonly runtime = proto3;
|
|
15284
|
+
static readonly typeName = "norsk.api.media.VideoDecodeConfiguration";
|
|
15285
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
15286
|
+
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
15287
|
+
{ no: 2, name: "decoder", kind: "enum", T: proto3.getEnumType(VideoDecodeConfiguration_VideoDecoder) },
|
|
15288
|
+
]);
|
|
15289
|
+
|
|
15290
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoDecodeConfiguration {
|
|
15291
|
+
return new VideoDecodeConfiguration().fromBinary(bytes, options);
|
|
15292
|
+
}
|
|
15293
|
+
|
|
15294
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoDecodeConfiguration {
|
|
15295
|
+
return new VideoDecodeConfiguration().fromJson(jsonValue, options);
|
|
15296
|
+
}
|
|
15297
|
+
|
|
15298
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoDecodeConfiguration {
|
|
15299
|
+
return new VideoDecodeConfiguration().fromJsonString(jsonString, options);
|
|
15300
|
+
}
|
|
15301
|
+
|
|
15302
|
+
static equals(a: VideoDecodeConfiguration | PlainMessage<VideoDecodeConfiguration> | undefined, b: VideoDecodeConfiguration | PlainMessage<VideoDecodeConfiguration> | undefined): boolean {
|
|
15303
|
+
return proto3.util.equals(VideoDecodeConfiguration, a, b);
|
|
15304
|
+
}
|
|
15305
|
+
}
|
|
15306
|
+
|
|
15307
|
+
/**
|
|
15308
|
+
* @generated from enum norsk.api.media.VideoDecodeConfiguration.VideoDecoder
|
|
15309
|
+
*/
|
|
15310
|
+
export enum VideoDecodeConfiguration_VideoDecoder {
|
|
15311
|
+
/**
|
|
15312
|
+
* @generated from enum value: VIDEO_DECODER_SOFTWARE = 0;
|
|
15313
|
+
*/
|
|
15314
|
+
SOFTWARE = 0,
|
|
15315
|
+
|
|
15316
|
+
/**
|
|
15317
|
+
* @generated from enum value: VIDEO_DECODER_LOGAN = 1;
|
|
15318
|
+
*/
|
|
15319
|
+
LOGAN = 1,
|
|
15320
|
+
|
|
15321
|
+
/**
|
|
15322
|
+
* @generated from enum value: VIDEO_DECODER_QUADRA = 2;
|
|
15323
|
+
*/
|
|
15324
|
+
QUADRA = 2,
|
|
15325
|
+
|
|
15326
|
+
/**
|
|
15327
|
+
* @generated from enum value: VIDEO_DECODER_NVIDIA = 3;
|
|
15328
|
+
*/
|
|
15329
|
+
NVIDIA = 3,
|
|
15330
|
+
|
|
15331
|
+
/**
|
|
15332
|
+
* @generated from enum value: VIDEO_DECODER_XILINX = 4;
|
|
15333
|
+
*/
|
|
15334
|
+
XILINX = 4,
|
|
15335
|
+
}
|
|
15336
|
+
// Retrieve enum metadata with: proto3.getEnumType(VideoDecodeConfiguration_VideoDecoder)
|
|
15337
|
+
proto3.util.setEnumType(VideoDecodeConfiguration_VideoDecoder, "norsk.api.media.VideoDecodeConfiguration.VideoDecoder", [
|
|
15338
|
+
{ no: 0, name: "VIDEO_DECODER_SOFTWARE" },
|
|
15339
|
+
{ no: 1, name: "VIDEO_DECODER_LOGAN" },
|
|
15340
|
+
{ no: 2, name: "VIDEO_DECODER_QUADRA" },
|
|
15341
|
+
{ no: 3, name: "VIDEO_DECODER_NVIDIA" },
|
|
15342
|
+
{ no: 4, name: "VIDEO_DECODER_XILINX" },
|
|
15343
|
+
]);
|
|
15344
|
+
|
|
15345
|
+
/**
|
|
15346
|
+
* @generated from message norsk.api.media.VideoDecodeMessage
|
|
15347
|
+
*/
|
|
15348
|
+
export class VideoDecodeMessage extends Message<VideoDecodeMessage> {
|
|
15349
|
+
/**
|
|
15350
|
+
* @generated from oneof norsk.api.media.VideoDecodeMessage.message
|
|
15351
|
+
*/
|
|
15352
|
+
message: {
|
|
15353
|
+
/**
|
|
15354
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
15355
|
+
*/
|
|
15356
|
+
value: Subscription;
|
|
15357
|
+
case: "subscription";
|
|
15358
|
+
} | {
|
|
15359
|
+
/**
|
|
15360
|
+
* @generated from field: norsk.api.media.VideoDecodeConfiguration configuration = 2;
|
|
15361
|
+
*/
|
|
15362
|
+
value: VideoDecodeConfiguration;
|
|
15363
|
+
case: "configuration";
|
|
15364
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
15365
|
+
|
|
15366
|
+
constructor(data?: PartialMessage<VideoDecodeMessage>) {
|
|
15367
|
+
super();
|
|
15368
|
+
proto3.util.initPartial(data, this);
|
|
15369
|
+
}
|
|
15370
|
+
|
|
15371
|
+
static readonly runtime = proto3;
|
|
15372
|
+
static readonly typeName = "norsk.api.media.VideoDecodeMessage";
|
|
15373
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
15374
|
+
{ no: 1, name: "subscription", kind: "message", T: Subscription, oneof: "message" },
|
|
15375
|
+
{ no: 2, name: "configuration", kind: "message", T: VideoDecodeConfiguration, oneof: "message" },
|
|
15376
|
+
]);
|
|
15377
|
+
|
|
15378
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoDecodeMessage {
|
|
15379
|
+
return new VideoDecodeMessage().fromBinary(bytes, options);
|
|
15380
|
+
}
|
|
15381
|
+
|
|
15382
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoDecodeMessage {
|
|
15383
|
+
return new VideoDecodeMessage().fromJson(jsonValue, options);
|
|
15384
|
+
}
|
|
15385
|
+
|
|
15386
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoDecodeMessage {
|
|
15387
|
+
return new VideoDecodeMessage().fromJsonString(jsonString, options);
|
|
15388
|
+
}
|
|
15389
|
+
|
|
15390
|
+
static equals(a: VideoDecodeMessage | PlainMessage<VideoDecodeMessage> | undefined, b: VideoDecodeMessage | PlainMessage<VideoDecodeMessage> | undefined): boolean {
|
|
15391
|
+
return proto3.util.equals(VideoDecodeMessage, a, b);
|
|
15392
|
+
}
|
|
15393
|
+
}
|
|
15394
|
+
|
|
15395
|
+
/**
|
|
15396
|
+
* @generated from message norsk.api.media.VideoDecodeEvent
|
|
15397
|
+
*/
|
|
15398
|
+
export class VideoDecodeEvent extends Message<VideoDecodeEvent> {
|
|
15399
|
+
/**
|
|
15400
|
+
* @generated from oneof norsk.api.media.VideoDecodeEvent.message
|
|
15401
|
+
*/
|
|
15402
|
+
message: {
|
|
15403
|
+
/**
|
|
15404
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
15405
|
+
*/
|
|
15406
|
+
value: MediaNodeId;
|
|
15407
|
+
case: "nodeId";
|
|
15408
|
+
} | {
|
|
15409
|
+
/**
|
|
15410
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
15411
|
+
*/
|
|
15412
|
+
value: Context;
|
|
15413
|
+
case: "outboundContext";
|
|
15414
|
+
} | {
|
|
15415
|
+
/**
|
|
15416
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
|
|
15417
|
+
*/
|
|
15418
|
+
value: SubscriptionResponse;
|
|
15419
|
+
case: "subscriptionResponse";
|
|
15420
|
+
} | {
|
|
15421
|
+
/**
|
|
15422
|
+
* @generated from field: norsk.api.media.Context inbound_context = 4;
|
|
15423
|
+
*/
|
|
15424
|
+
value: Context;
|
|
15425
|
+
case: "inboundContext";
|
|
15426
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
15427
|
+
|
|
15428
|
+
constructor(data?: PartialMessage<VideoDecodeEvent>) {
|
|
15429
|
+
super();
|
|
15430
|
+
proto3.util.initPartial(data, this);
|
|
15431
|
+
}
|
|
15432
|
+
|
|
15433
|
+
static readonly runtime = proto3;
|
|
15434
|
+
static readonly typeName = "norsk.api.media.VideoDecodeEvent";
|
|
15435
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
15436
|
+
{ no: 1, name: "node_id", kind: "message", T: MediaNodeId, oneof: "message" },
|
|
15437
|
+
{ no: 2, name: "outbound_context", kind: "message", T: Context, oneof: "message" },
|
|
15438
|
+
{ no: 3, name: "subscription_response", kind: "message", T: SubscriptionResponse, oneof: "message" },
|
|
15439
|
+
{ no: 4, name: "inbound_context", kind: "message", T: Context, oneof: "message" },
|
|
15440
|
+
]);
|
|
15441
|
+
|
|
15442
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoDecodeEvent {
|
|
15443
|
+
return new VideoDecodeEvent().fromBinary(bytes, options);
|
|
15444
|
+
}
|
|
15445
|
+
|
|
15446
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoDecodeEvent {
|
|
15447
|
+
return new VideoDecodeEvent().fromJson(jsonValue, options);
|
|
15448
|
+
}
|
|
15449
|
+
|
|
15450
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoDecodeEvent {
|
|
15451
|
+
return new VideoDecodeEvent().fromJsonString(jsonString, options);
|
|
15452
|
+
}
|
|
15453
|
+
|
|
15454
|
+
static equals(a: VideoDecodeEvent | PlainMessage<VideoDecodeEvent> | undefined, b: VideoDecodeEvent | PlainMessage<VideoDecodeEvent> | undefined): boolean {
|
|
15455
|
+
return proto3.util.equals(VideoDecodeEvent, a, b);
|
|
15456
|
+
}
|
|
15457
|
+
}
|
|
15458
|
+
|
|
15124
15459
|
/**
|
|
15125
15460
|
* @generated from message norsk.api.media.NvidiaRateControl
|
|
15126
15461
|
*/
|
|
@@ -15131,26 +15466,39 @@ export class NvidiaRateControl extends Message<NvidiaRateControl> {
|
|
|
15131
15466
|
mode = NvidiaRateControl_NvidiaRateControlMode.NVIDIA_RATE_CONTROL_CON_STQP;
|
|
15132
15467
|
|
|
15133
15468
|
/**
|
|
15469
|
+
* * The average bitrate of this encode (bits/sec)
|
|
15470
|
+
*
|
|
15134
15471
|
* @generated from field: norsk.api.common.OptionalInt averageBitrate = 2;
|
|
15135
15472
|
*/
|
|
15136
15473
|
averageBitrate?: OptionalInt;
|
|
15137
15474
|
|
|
15138
15475
|
/**
|
|
15476
|
+
* * The maximum bitrate of this encode (bits/sec)
|
|
15477
|
+
*
|
|
15139
15478
|
* @generated from field: norsk.api.common.OptionalInt maxBitrate = 3;
|
|
15140
15479
|
*/
|
|
15141
15480
|
maxBitrate?: OptionalInt;
|
|
15142
15481
|
|
|
15143
15482
|
/**
|
|
15483
|
+
* * The vbv buffer size used for this encode (bits)
|
|
15484
|
+
*
|
|
15144
15485
|
* @generated from field: norsk.api.common.OptionalInt vbvBufferSize = 4;
|
|
15145
15486
|
*/
|
|
15146
15487
|
vbvBufferSize?: OptionalInt;
|
|
15147
15488
|
|
|
15148
15489
|
/**
|
|
15490
|
+
* * The vbv initial delay used for this encode (bits)
|
|
15491
|
+
*
|
|
15149
15492
|
* @generated from field: norsk.api.common.OptionalInt vbvInitialDelay = 5;
|
|
15150
15493
|
*/
|
|
15151
15494
|
vbvInitialDelay?: OptionalInt;
|
|
15152
15495
|
|
|
15153
15496
|
/**
|
|
15497
|
+
* * Enable lookahead or not:
|
|
15498
|
+
* Note: enabling lookahead will introduce scene cuts unless this is specifically disabled
|
|
15499
|
+
* elswhere in the codec settings
|
|
15500
|
+
*
|
|
15501
|
+
*
|
|
15154
15502
|
* @generated from field: norsk.api.common.OptionalBool enableLookahead = 6;
|
|
15155
15503
|
*/
|
|
15156
15504
|
enableLookahead?: OptionalBool;
|
|
@@ -16515,6 +16863,112 @@ proto3.util.setEnumType(XilinxHevc_XilinxHevcTier, "norsk.api.media.XilinxHevc.X
|
|
|
16515
16863
|
{ no: 1, name: "XILINX_HEVC_TIER_HIGH" },
|
|
16516
16864
|
]);
|
|
16517
16865
|
|
|
16866
|
+
/**
|
|
16867
|
+
* @generated from message norsk.api.media.NoDeinterlace
|
|
16868
|
+
*/
|
|
16869
|
+
export class NoDeinterlace extends Message<NoDeinterlace> {
|
|
16870
|
+
constructor(data?: PartialMessage<NoDeinterlace>) {
|
|
16871
|
+
super();
|
|
16872
|
+
proto3.util.initPartial(data, this);
|
|
16873
|
+
}
|
|
16874
|
+
|
|
16875
|
+
static readonly runtime = proto3;
|
|
16876
|
+
static readonly typeName = "norsk.api.media.NoDeinterlace";
|
|
16877
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
16878
|
+
]);
|
|
16879
|
+
|
|
16880
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NoDeinterlace {
|
|
16881
|
+
return new NoDeinterlace().fromBinary(bytes, options);
|
|
16882
|
+
}
|
|
16883
|
+
|
|
16884
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NoDeinterlace {
|
|
16885
|
+
return new NoDeinterlace().fromJson(jsonValue, options);
|
|
16886
|
+
}
|
|
16887
|
+
|
|
16888
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NoDeinterlace {
|
|
16889
|
+
return new NoDeinterlace().fromJsonString(jsonString, options);
|
|
16890
|
+
}
|
|
16891
|
+
|
|
16892
|
+
static equals(a: NoDeinterlace | PlainMessage<NoDeinterlace> | undefined, b: NoDeinterlace | PlainMessage<NoDeinterlace> | undefined): boolean {
|
|
16893
|
+
return proto3.util.equals(NoDeinterlace, a, b);
|
|
16894
|
+
}
|
|
16895
|
+
}
|
|
16896
|
+
|
|
16897
|
+
/**
|
|
16898
|
+
* @generated from message norsk.api.media.SoftwareDeinterlace
|
|
16899
|
+
*/
|
|
16900
|
+
export class SoftwareDeinterlace extends Message<SoftwareDeinterlace> {
|
|
16901
|
+
/**
|
|
16902
|
+
* @generated from field: norsk.api.media.SoftwareDeinterlace.SoftwareDeinterlaceAlgorithm algorithm = 1;
|
|
16903
|
+
*/
|
|
16904
|
+
algorithm = SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm.SoftwareBwdif;
|
|
16905
|
+
|
|
16906
|
+
constructor(data?: PartialMessage<SoftwareDeinterlace>) {
|
|
16907
|
+
super();
|
|
16908
|
+
proto3.util.initPartial(data, this);
|
|
16909
|
+
}
|
|
16910
|
+
|
|
16911
|
+
static readonly runtime = proto3;
|
|
16912
|
+
static readonly typeName = "norsk.api.media.SoftwareDeinterlace";
|
|
16913
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
16914
|
+
{ no: 1, name: "algorithm", kind: "enum", T: proto3.getEnumType(SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm) },
|
|
16915
|
+
]);
|
|
16916
|
+
|
|
16917
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SoftwareDeinterlace {
|
|
16918
|
+
return new SoftwareDeinterlace().fromBinary(bytes, options);
|
|
16919
|
+
}
|
|
16920
|
+
|
|
16921
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SoftwareDeinterlace {
|
|
16922
|
+
return new SoftwareDeinterlace().fromJson(jsonValue, options);
|
|
16923
|
+
}
|
|
16924
|
+
|
|
16925
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SoftwareDeinterlace {
|
|
16926
|
+
return new SoftwareDeinterlace().fromJsonString(jsonString, options);
|
|
16927
|
+
}
|
|
16928
|
+
|
|
16929
|
+
static equals(a: SoftwareDeinterlace | PlainMessage<SoftwareDeinterlace> | undefined, b: SoftwareDeinterlace | PlainMessage<SoftwareDeinterlace> | undefined): boolean {
|
|
16930
|
+
return proto3.util.equals(SoftwareDeinterlace, a, b);
|
|
16931
|
+
}
|
|
16932
|
+
}
|
|
16933
|
+
|
|
16934
|
+
/**
|
|
16935
|
+
* @generated from enum norsk.api.media.SoftwareDeinterlace.SoftwareDeinterlaceAlgorithm
|
|
16936
|
+
*/
|
|
16937
|
+
export enum SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm {
|
|
16938
|
+
/**
|
|
16939
|
+
* @generated from enum value: SoftwareBwdif = 0;
|
|
16940
|
+
*/
|
|
16941
|
+
SoftwareBwdif = 0,
|
|
16942
|
+
|
|
16943
|
+
/**
|
|
16944
|
+
* @generated from enum value: SoftwareKerndeint = 1;
|
|
16945
|
+
*/
|
|
16946
|
+
SoftwareKerndeint = 1,
|
|
16947
|
+
|
|
16948
|
+
/**
|
|
16949
|
+
* @generated from enum value: SoftwareNnedi = 2;
|
|
16950
|
+
*/
|
|
16951
|
+
SoftwareNnedi = 2,
|
|
16952
|
+
|
|
16953
|
+
/**
|
|
16954
|
+
* @generated from enum value: SoftwareW3fdif = 3;
|
|
16955
|
+
*/
|
|
16956
|
+
SoftwareW3fdif = 3,
|
|
16957
|
+
|
|
16958
|
+
/**
|
|
16959
|
+
* @generated from enum value: SoftwareYadif = 4;
|
|
16960
|
+
*/
|
|
16961
|
+
SoftwareYadif = 4,
|
|
16962
|
+
}
|
|
16963
|
+
// Retrieve enum metadata with: proto3.getEnumType(SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm)
|
|
16964
|
+
proto3.util.setEnumType(SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm, "norsk.api.media.SoftwareDeinterlace.SoftwareDeinterlaceAlgorithm", [
|
|
16965
|
+
{ no: 0, name: "SoftwareBwdif" },
|
|
16966
|
+
{ no: 1, name: "SoftwareKerndeint" },
|
|
16967
|
+
{ no: 2, name: "SoftwareNnedi" },
|
|
16968
|
+
{ no: 3, name: "SoftwareW3fdif" },
|
|
16969
|
+
{ no: 4, name: "SoftwareYadif" },
|
|
16970
|
+
]);
|
|
16971
|
+
|
|
16518
16972
|
/**
|
|
16519
16973
|
* @generated from message norsk.api.media.VideoTransformConfiguration
|
|
16520
16974
|
*/
|
|
@@ -16539,6 +16993,23 @@ export class VideoTransformConfiguration extends Message<VideoTransformConfigura
|
|
|
16539
16993
|
*/
|
|
16540
16994
|
frameRate?: FrameRate;
|
|
16541
16995
|
|
|
16996
|
+
/**
|
|
16997
|
+
* @generated from oneof norsk.api.media.VideoTransformConfiguration.deinterlace
|
|
16998
|
+
*/
|
|
16999
|
+
deinterlace: {
|
|
17000
|
+
/**
|
|
17001
|
+
* @generated from field: norsk.api.media.NoDeinterlace none = 6;
|
|
17002
|
+
*/
|
|
17003
|
+
value: NoDeinterlace;
|
|
17004
|
+
case: "none";
|
|
17005
|
+
} | {
|
|
17006
|
+
/**
|
|
17007
|
+
* @generated from field: norsk.api.media.SoftwareDeinterlace software = 7;
|
|
17008
|
+
*/
|
|
17009
|
+
value: SoftwareDeinterlace;
|
|
17010
|
+
case: "software";
|
|
17011
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
17012
|
+
|
|
16542
17013
|
constructor(data?: PartialMessage<VideoTransformConfiguration>) {
|
|
16543
17014
|
super();
|
|
16544
17015
|
proto3.util.initPartial(data, this);
|
|
@@ -16551,6 +17022,8 @@ export class VideoTransformConfiguration extends Message<VideoTransformConfigura
|
|
|
16551
17022
|
{ no: 2, name: "resolution", kind: "message", T: Resolution },
|
|
16552
17023
|
{ no: 4, name: "sample_aspect_ratio", kind: "message", T: SampleAspectRatio },
|
|
16553
17024
|
{ no: 5, name: "frame_rate", kind: "message", T: FrameRate },
|
|
17025
|
+
{ no: 6, name: "none", kind: "message", T: NoDeinterlace, oneof: "deinterlace" },
|
|
17026
|
+
{ no: 7, name: "software", kind: "message", T: SoftwareDeinterlace, oneof: "deinterlace" },
|
|
16554
17027
|
]);
|
|
16555
17028
|
|
|
16556
17029
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTransformConfiguration {
|
|
@@ -17229,6 +17702,20 @@ export class StreamMetadataOverrideConfiguration extends Message<StreamMetadataO
|
|
|
17229
17702
|
*/
|
|
17230
17703
|
subtitlesLanguage?: OptionalString;
|
|
17231
17704
|
|
|
17705
|
+
/**
|
|
17706
|
+
* * Override the property of whether a subtitles string is the default/primary rendition or not
|
|
17707
|
+
*
|
|
17708
|
+
* @generated from field: norsk.api.common.OptionalBool subtitles_default = 6;
|
|
17709
|
+
*/
|
|
17710
|
+
subtitlesDefault?: OptionalBool;
|
|
17711
|
+
|
|
17712
|
+
/**
|
|
17713
|
+
* * Override the name of a playlist
|
|
17714
|
+
*
|
|
17715
|
+
* @generated from field: norsk.api.common.OptionalString playlist_name = 7;
|
|
17716
|
+
*/
|
|
17717
|
+
playlistName?: OptionalString;
|
|
17718
|
+
|
|
17232
17719
|
constructor(data?: PartialMessage<StreamMetadataOverrideConfiguration>) {
|
|
17233
17720
|
super();
|
|
17234
17721
|
proto3.util.initPartial(data, this);
|
|
@@ -17242,6 +17729,8 @@ export class StreamMetadataOverrideConfiguration extends Message<StreamMetadataO
|
|
|
17242
17729
|
{ no: 3, name: "audio_bitrate", kind: "message", T: OptionalInt },
|
|
17243
17730
|
{ no: 4, name: "audio_language", kind: "message", T: OptionalString },
|
|
17244
17731
|
{ no: 5, name: "subtitles_language", kind: "message", T: OptionalString },
|
|
17732
|
+
{ no: 6, name: "subtitles_default", kind: "message", T: OptionalBool },
|
|
17733
|
+
{ no: 7, name: "playlist_name", kind: "message", T: OptionalString },
|
|
17245
17734
|
]);
|
|
17246
17735
|
|
|
17247
17736
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadataOverrideConfiguration {
|
|
@@ -17297,6 +17786,20 @@ export class StreamMetadataOverrideUpdateConfiguration extends Message<StreamMet
|
|
|
17297
17786
|
*/
|
|
17298
17787
|
subtitlesLanguage?: OptionalString;
|
|
17299
17788
|
|
|
17789
|
+
/**
|
|
17790
|
+
* * Override the property of whether a subtitles string is the default/primary rendition or not
|
|
17791
|
+
*
|
|
17792
|
+
* @generated from field: norsk.api.common.OptionalBool subtitles_default = 6;
|
|
17793
|
+
*/
|
|
17794
|
+
subtitlesDefault?: OptionalBool;
|
|
17795
|
+
|
|
17796
|
+
/**
|
|
17797
|
+
* * Override the name of a playlist
|
|
17798
|
+
*
|
|
17799
|
+
* @generated from field: norsk.api.common.OptionalString playlist_name = 7;
|
|
17800
|
+
*/
|
|
17801
|
+
playlistName?: OptionalString;
|
|
17802
|
+
|
|
17300
17803
|
constructor(data?: PartialMessage<StreamMetadataOverrideUpdateConfiguration>) {
|
|
17301
17804
|
super();
|
|
17302
17805
|
proto3.util.initPartial(data, this);
|
|
@@ -17309,6 +17812,8 @@ export class StreamMetadataOverrideUpdateConfiguration extends Message<StreamMet
|
|
|
17309
17812
|
{ no: 3, name: "audio_bitrate", kind: "message", T: OptionalInt },
|
|
17310
17813
|
{ no: 4, name: "audio_language", kind: "message", T: OptionalString },
|
|
17311
17814
|
{ no: 5, name: "subtitles_language", kind: "message", T: OptionalString },
|
|
17815
|
+
{ no: 6, name: "subtitles_default", kind: "message", T: OptionalBool },
|
|
17816
|
+
{ no: 7, name: "playlist_name", kind: "message", T: OptionalString },
|
|
17312
17817
|
]);
|
|
17313
17818
|
|
|
17314
17819
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadataOverrideUpdateConfiguration {
|
|
@@ -20811,6 +21316,189 @@ export class AudioTranscribeWhisperEvent extends Message<AudioTranscribeWhisperE
|
|
|
20811
21316
|
}
|
|
20812
21317
|
}
|
|
20813
21318
|
|
|
21319
|
+
/**
|
|
21320
|
+
* @generated from message norsk.api.media.SubtitleTranslateAwsConfiguration
|
|
21321
|
+
*/
|
|
21322
|
+
export class SubtitleTranslateAwsConfiguration extends Message<SubtitleTranslateAwsConfiguration> {
|
|
21323
|
+
/**
|
|
21324
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
21325
|
+
*/
|
|
21326
|
+
id?: MediaNodeId;
|
|
21327
|
+
|
|
21328
|
+
/**
|
|
21329
|
+
* / Source language code/tag, e.g. de or fr-CA (leave blank to use the source subtitle language / AWS automatic detection)
|
|
21330
|
+
*
|
|
21331
|
+
* @generated from field: string source_language = 2;
|
|
21332
|
+
*/
|
|
21333
|
+
sourceLanguage = "";
|
|
21334
|
+
|
|
21335
|
+
/**
|
|
21336
|
+
* / Target language code/tag, e.g. en or es-MX
|
|
21337
|
+
*
|
|
21338
|
+
* @generated from field: string target_language = 3;
|
|
21339
|
+
*/
|
|
21340
|
+
targetLanguage = "";
|
|
21341
|
+
|
|
21342
|
+
/**
|
|
21343
|
+
* / Enable brevity option
|
|
21344
|
+
*
|
|
21345
|
+
* @generated from field: bool brevity = 4;
|
|
21346
|
+
*/
|
|
21347
|
+
brevity = false;
|
|
21348
|
+
|
|
21349
|
+
/**
|
|
21350
|
+
* / Enable profanity masking
|
|
21351
|
+
*
|
|
21352
|
+
* @generated from field: bool mask_profanity = 5;
|
|
21353
|
+
*/
|
|
21354
|
+
maskProfanity = false;
|
|
21355
|
+
|
|
21356
|
+
constructor(data?: PartialMessage<SubtitleTranslateAwsConfiguration>) {
|
|
21357
|
+
super();
|
|
21358
|
+
proto3.util.initPartial(data, this);
|
|
21359
|
+
}
|
|
21360
|
+
|
|
21361
|
+
static readonly runtime = proto3;
|
|
21362
|
+
static readonly typeName = "norsk.api.media.SubtitleTranslateAwsConfiguration";
|
|
21363
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
21364
|
+
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
21365
|
+
{ no: 2, name: "source_language", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
21366
|
+
{ no: 3, name: "target_language", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
21367
|
+
{ no: 4, name: "brevity", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
21368
|
+
{ no: 5, name: "mask_profanity", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
21369
|
+
]);
|
|
21370
|
+
|
|
21371
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubtitleTranslateAwsConfiguration {
|
|
21372
|
+
return new SubtitleTranslateAwsConfiguration().fromBinary(bytes, options);
|
|
21373
|
+
}
|
|
21374
|
+
|
|
21375
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubtitleTranslateAwsConfiguration {
|
|
21376
|
+
return new SubtitleTranslateAwsConfiguration().fromJson(jsonValue, options);
|
|
21377
|
+
}
|
|
21378
|
+
|
|
21379
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubtitleTranslateAwsConfiguration {
|
|
21380
|
+
return new SubtitleTranslateAwsConfiguration().fromJsonString(jsonString, options);
|
|
21381
|
+
}
|
|
21382
|
+
|
|
21383
|
+
static equals(a: SubtitleTranslateAwsConfiguration | PlainMessage<SubtitleTranslateAwsConfiguration> | undefined, b: SubtitleTranslateAwsConfiguration | PlainMessage<SubtitleTranslateAwsConfiguration> | undefined): boolean {
|
|
21384
|
+
return proto3.util.equals(SubtitleTranslateAwsConfiguration, a, b);
|
|
21385
|
+
}
|
|
21386
|
+
}
|
|
21387
|
+
|
|
21388
|
+
/**
|
|
21389
|
+
* @generated from message norsk.api.media.SubtitleTranslateAwsMessage
|
|
21390
|
+
*/
|
|
21391
|
+
export class SubtitleTranslateAwsMessage extends Message<SubtitleTranslateAwsMessage> {
|
|
21392
|
+
/**
|
|
21393
|
+
* @generated from oneof norsk.api.media.SubtitleTranslateAwsMessage.message
|
|
21394
|
+
*/
|
|
21395
|
+
message: {
|
|
21396
|
+
/**
|
|
21397
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
21398
|
+
*/
|
|
21399
|
+
value: Subscription;
|
|
21400
|
+
case: "subscription";
|
|
21401
|
+
} | {
|
|
21402
|
+
/**
|
|
21403
|
+
* @generated from field: norsk.api.media.SubtitleTranslateAwsConfiguration configuration = 2;
|
|
21404
|
+
*/
|
|
21405
|
+
value: SubtitleTranslateAwsConfiguration;
|
|
21406
|
+
case: "configuration";
|
|
21407
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
21408
|
+
|
|
21409
|
+
constructor(data?: PartialMessage<SubtitleTranslateAwsMessage>) {
|
|
21410
|
+
super();
|
|
21411
|
+
proto3.util.initPartial(data, this);
|
|
21412
|
+
}
|
|
21413
|
+
|
|
21414
|
+
static readonly runtime = proto3;
|
|
21415
|
+
static readonly typeName = "norsk.api.media.SubtitleTranslateAwsMessage";
|
|
21416
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
21417
|
+
{ no: 1, name: "subscription", kind: "message", T: Subscription, oneof: "message" },
|
|
21418
|
+
{ no: 2, name: "configuration", kind: "message", T: SubtitleTranslateAwsConfiguration, oneof: "message" },
|
|
21419
|
+
]);
|
|
21420
|
+
|
|
21421
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubtitleTranslateAwsMessage {
|
|
21422
|
+
return new SubtitleTranslateAwsMessage().fromBinary(bytes, options);
|
|
21423
|
+
}
|
|
21424
|
+
|
|
21425
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubtitleTranslateAwsMessage {
|
|
21426
|
+
return new SubtitleTranslateAwsMessage().fromJson(jsonValue, options);
|
|
21427
|
+
}
|
|
21428
|
+
|
|
21429
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubtitleTranslateAwsMessage {
|
|
21430
|
+
return new SubtitleTranslateAwsMessage().fromJsonString(jsonString, options);
|
|
21431
|
+
}
|
|
21432
|
+
|
|
21433
|
+
static equals(a: SubtitleTranslateAwsMessage | PlainMessage<SubtitleTranslateAwsMessage> | undefined, b: SubtitleTranslateAwsMessage | PlainMessage<SubtitleTranslateAwsMessage> | undefined): boolean {
|
|
21434
|
+
return proto3.util.equals(SubtitleTranslateAwsMessage, a, b);
|
|
21435
|
+
}
|
|
21436
|
+
}
|
|
21437
|
+
|
|
21438
|
+
/**
|
|
21439
|
+
* @generated from message norsk.api.media.SubtitleTranslateAwsEvent
|
|
21440
|
+
*/
|
|
21441
|
+
export class SubtitleTranslateAwsEvent extends Message<SubtitleTranslateAwsEvent> {
|
|
21442
|
+
/**
|
|
21443
|
+
* @generated from oneof norsk.api.media.SubtitleTranslateAwsEvent.message
|
|
21444
|
+
*/
|
|
21445
|
+
message: {
|
|
21446
|
+
/**
|
|
21447
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
21448
|
+
*/
|
|
21449
|
+
value: MediaNodeId;
|
|
21450
|
+
case: "nodeId";
|
|
21451
|
+
} | {
|
|
21452
|
+
/**
|
|
21453
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
21454
|
+
*/
|
|
21455
|
+
value: Context;
|
|
21456
|
+
case: "outboundContext";
|
|
21457
|
+
} | {
|
|
21458
|
+
/**
|
|
21459
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
|
|
21460
|
+
*/
|
|
21461
|
+
value: SubscriptionResponse;
|
|
21462
|
+
case: "subscriptionResponse";
|
|
21463
|
+
} | {
|
|
21464
|
+
/**
|
|
21465
|
+
* @generated from field: norsk.api.media.Context inbound_context = 4;
|
|
21466
|
+
*/
|
|
21467
|
+
value: Context;
|
|
21468
|
+
case: "inboundContext";
|
|
21469
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
21470
|
+
|
|
21471
|
+
constructor(data?: PartialMessage<SubtitleTranslateAwsEvent>) {
|
|
21472
|
+
super();
|
|
21473
|
+
proto3.util.initPartial(data, this);
|
|
21474
|
+
}
|
|
21475
|
+
|
|
21476
|
+
static readonly runtime = proto3;
|
|
21477
|
+
static readonly typeName = "norsk.api.media.SubtitleTranslateAwsEvent";
|
|
21478
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
21479
|
+
{ no: 1, name: "node_id", kind: "message", T: MediaNodeId, oneof: "message" },
|
|
21480
|
+
{ no: 2, name: "outbound_context", kind: "message", T: Context, oneof: "message" },
|
|
21481
|
+
{ no: 3, name: "subscription_response", kind: "message", T: SubscriptionResponse, oneof: "message" },
|
|
21482
|
+
{ no: 4, name: "inbound_context", kind: "message", T: Context, oneof: "message" },
|
|
21483
|
+
]);
|
|
21484
|
+
|
|
21485
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubtitleTranslateAwsEvent {
|
|
21486
|
+
return new SubtitleTranslateAwsEvent().fromBinary(bytes, options);
|
|
21487
|
+
}
|
|
21488
|
+
|
|
21489
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubtitleTranslateAwsEvent {
|
|
21490
|
+
return new SubtitleTranslateAwsEvent().fromJson(jsonValue, options);
|
|
21491
|
+
}
|
|
21492
|
+
|
|
21493
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubtitleTranslateAwsEvent {
|
|
21494
|
+
return new SubtitleTranslateAwsEvent().fromJsonString(jsonString, options);
|
|
21495
|
+
}
|
|
21496
|
+
|
|
21497
|
+
static equals(a: SubtitleTranslateAwsEvent | PlainMessage<SubtitleTranslateAwsEvent> | undefined, b: SubtitleTranslateAwsEvent | PlainMessage<SubtitleTranslateAwsEvent> | undefined): boolean {
|
|
21498
|
+
return proto3.util.equals(SubtitleTranslateAwsEvent, a, b);
|
|
21499
|
+
}
|
|
21500
|
+
}
|
|
21501
|
+
|
|
20814
21502
|
/**
|
|
20815
21503
|
* @generated from message norsk.api.media.AncillaryConfiguration
|
|
20816
21504
|
*/
|
|
@@ -23329,48 +24017,48 @@ export class FrameStorePlayerEvent extends Message<FrameStorePlayerEvent> {
|
|
|
23329
24017
|
}
|
|
23330
24018
|
|
|
23331
24019
|
/**
|
|
23332
|
-
* @generated from message norsk.api.media.
|
|
24020
|
+
* @generated from message norsk.api.media.MoqOutputConfiguration
|
|
23333
24021
|
*/
|
|
23334
|
-
export class
|
|
24022
|
+
export class MoqOutputConfiguration extends Message<MoqOutputConfiguration> {
|
|
23335
24023
|
/**
|
|
23336
24024
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
23337
24025
|
*/
|
|
23338
24026
|
id?: MediaNodeId;
|
|
23339
24027
|
|
|
23340
|
-
constructor(data?: PartialMessage<
|
|
24028
|
+
constructor(data?: PartialMessage<MoqOutputConfiguration>) {
|
|
23341
24029
|
super();
|
|
23342
24030
|
proto3.util.initPartial(data, this);
|
|
23343
24031
|
}
|
|
23344
24032
|
|
|
23345
24033
|
static readonly runtime = proto3;
|
|
23346
|
-
static readonly typeName = "norsk.api.media.
|
|
24034
|
+
static readonly typeName = "norsk.api.media.MoqOutputConfiguration";
|
|
23347
24035
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
23348
24036
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
23349
24037
|
]);
|
|
23350
24038
|
|
|
23351
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
23352
|
-
return new
|
|
24039
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoqOutputConfiguration {
|
|
24040
|
+
return new MoqOutputConfiguration().fromBinary(bytes, options);
|
|
23353
24041
|
}
|
|
23354
24042
|
|
|
23355
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
23356
|
-
return new
|
|
24043
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoqOutputConfiguration {
|
|
24044
|
+
return new MoqOutputConfiguration().fromJson(jsonValue, options);
|
|
23357
24045
|
}
|
|
23358
24046
|
|
|
23359
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
23360
|
-
return new
|
|
24047
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoqOutputConfiguration {
|
|
24048
|
+
return new MoqOutputConfiguration().fromJsonString(jsonString, options);
|
|
23361
24049
|
}
|
|
23362
24050
|
|
|
23363
|
-
static equals(a:
|
|
23364
|
-
return proto3.util.equals(
|
|
24051
|
+
static equals(a: MoqOutputConfiguration | PlainMessage<MoqOutputConfiguration> | undefined, b: MoqOutputConfiguration | PlainMessage<MoqOutputConfiguration> | undefined): boolean {
|
|
24052
|
+
return proto3.util.equals(MoqOutputConfiguration, a, b);
|
|
23365
24053
|
}
|
|
23366
24054
|
}
|
|
23367
24055
|
|
|
23368
24056
|
/**
|
|
23369
|
-
* @generated from message norsk.api.media.
|
|
24057
|
+
* @generated from message norsk.api.media.MoqOutputMessage
|
|
23370
24058
|
*/
|
|
23371
|
-
export class
|
|
24059
|
+
export class MoqOutputMessage extends Message<MoqOutputMessage> {
|
|
23372
24060
|
/**
|
|
23373
|
-
* @generated from oneof norsk.api.media.
|
|
24061
|
+
* @generated from oneof norsk.api.media.MoqOutputMessage.message
|
|
23374
24062
|
*/
|
|
23375
24063
|
message: {
|
|
23376
24064
|
/**
|
|
@@ -23380,47 +24068,47 @@ export class MoqEgestMessage extends Message<MoqEgestMessage> {
|
|
|
23380
24068
|
case: "subscription";
|
|
23381
24069
|
} | {
|
|
23382
24070
|
/**
|
|
23383
|
-
* @generated from field: norsk.api.media.
|
|
24071
|
+
* @generated from field: norsk.api.media.MoqOutputConfiguration configuration = 2;
|
|
23384
24072
|
*/
|
|
23385
|
-
value:
|
|
24073
|
+
value: MoqOutputConfiguration;
|
|
23386
24074
|
case: "configuration";
|
|
23387
24075
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
23388
24076
|
|
|
23389
|
-
constructor(data?: PartialMessage<
|
|
24077
|
+
constructor(data?: PartialMessage<MoqOutputMessage>) {
|
|
23390
24078
|
super();
|
|
23391
24079
|
proto3.util.initPartial(data, this);
|
|
23392
24080
|
}
|
|
23393
24081
|
|
|
23394
24082
|
static readonly runtime = proto3;
|
|
23395
|
-
static readonly typeName = "norsk.api.media.
|
|
24083
|
+
static readonly typeName = "norsk.api.media.MoqOutputMessage";
|
|
23396
24084
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
23397
24085
|
{ no: 1, name: "subscription", kind: "message", T: Subscription, oneof: "message" },
|
|
23398
|
-
{ no: 2, name: "configuration", kind: "message", T:
|
|
24086
|
+
{ no: 2, name: "configuration", kind: "message", T: MoqOutputConfiguration, oneof: "message" },
|
|
23399
24087
|
]);
|
|
23400
24088
|
|
|
23401
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
23402
|
-
return new
|
|
24089
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoqOutputMessage {
|
|
24090
|
+
return new MoqOutputMessage().fromBinary(bytes, options);
|
|
23403
24091
|
}
|
|
23404
24092
|
|
|
23405
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
23406
|
-
return new
|
|
24093
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoqOutputMessage {
|
|
24094
|
+
return new MoqOutputMessage().fromJson(jsonValue, options);
|
|
23407
24095
|
}
|
|
23408
24096
|
|
|
23409
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
23410
|
-
return new
|
|
24097
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoqOutputMessage {
|
|
24098
|
+
return new MoqOutputMessage().fromJsonString(jsonString, options);
|
|
23411
24099
|
}
|
|
23412
24100
|
|
|
23413
|
-
static equals(a:
|
|
23414
|
-
return proto3.util.equals(
|
|
24101
|
+
static equals(a: MoqOutputMessage | PlainMessage<MoqOutputMessage> | undefined, b: MoqOutputMessage | PlainMessage<MoqOutputMessage> | undefined): boolean {
|
|
24102
|
+
return proto3.util.equals(MoqOutputMessage, a, b);
|
|
23415
24103
|
}
|
|
23416
24104
|
}
|
|
23417
24105
|
|
|
23418
24106
|
/**
|
|
23419
|
-
* @generated from message norsk.api.media.
|
|
24107
|
+
* @generated from message norsk.api.media.MoqOutputEvent
|
|
23420
24108
|
*/
|
|
23421
|
-
export class
|
|
24109
|
+
export class MoqOutputEvent extends Message<MoqOutputEvent> {
|
|
23422
24110
|
/**
|
|
23423
|
-
* @generated from oneof norsk.api.media.
|
|
24111
|
+
* @generated from oneof norsk.api.media.MoqOutputEvent.message
|
|
23424
24112
|
*/
|
|
23425
24113
|
message: {
|
|
23426
24114
|
/**
|
|
@@ -23442,33 +24130,33 @@ export class MoqEgestEvent extends Message<MoqEgestEvent> {
|
|
|
23442
24130
|
case: "inboundContext";
|
|
23443
24131
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
23444
24132
|
|
|
23445
|
-
constructor(data?: PartialMessage<
|
|
24133
|
+
constructor(data?: PartialMessage<MoqOutputEvent>) {
|
|
23446
24134
|
super();
|
|
23447
24135
|
proto3.util.initPartial(data, this);
|
|
23448
24136
|
}
|
|
23449
24137
|
|
|
23450
24138
|
static readonly runtime = proto3;
|
|
23451
|
-
static readonly typeName = "norsk.api.media.
|
|
24139
|
+
static readonly typeName = "norsk.api.media.MoqOutputEvent";
|
|
23452
24140
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
23453
24141
|
{ no: 1, name: "node_id", kind: "message", T: MediaNodeId, oneof: "message" },
|
|
23454
24142
|
{ no: 2, name: "subscription_response", kind: "message", T: SubscriptionResponse, oneof: "message" },
|
|
23455
24143
|
{ no: 3, name: "inbound_context", kind: "message", T: Context, oneof: "message" },
|
|
23456
24144
|
]);
|
|
23457
24145
|
|
|
23458
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
23459
|
-
return new
|
|
24146
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoqOutputEvent {
|
|
24147
|
+
return new MoqOutputEvent().fromBinary(bytes, options);
|
|
23460
24148
|
}
|
|
23461
24149
|
|
|
23462
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
23463
|
-
return new
|
|
24150
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoqOutputEvent {
|
|
24151
|
+
return new MoqOutputEvent().fromJson(jsonValue, options);
|
|
23464
24152
|
}
|
|
23465
24153
|
|
|
23466
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
23467
|
-
return new
|
|
24154
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoqOutputEvent {
|
|
24155
|
+
return new MoqOutputEvent().fromJsonString(jsonString, options);
|
|
23468
24156
|
}
|
|
23469
24157
|
|
|
23470
|
-
static equals(a:
|
|
23471
|
-
return proto3.util.equals(
|
|
24158
|
+
static equals(a: MoqOutputEvent | PlainMessage<MoqOutputEvent> | undefined, b: MoqOutputEvent | PlainMessage<MoqOutputEvent> | undefined): boolean {
|
|
24159
|
+
return proto3.util.equals(MoqOutputEvent, a, b);
|
|
23472
24160
|
}
|
|
23473
24161
|
}
|
|
23474
24162
|
|