@norskvideo/norsk-api 1.0.357 → 1.0.359

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_pb.d.ts CHANGED
@@ -1183,13 +1183,13 @@ export declare class Resolution extends Message<Resolution> {
1183
1183
  */
1184
1184
  export declare class Interval extends Message<Interval> {
1185
1185
  /**
1186
- * @generated from field: uint32 n = 1;
1186
+ * @generated from field: uint64 n = 1;
1187
1187
  */
1188
- n: number;
1188
+ n: bigint;
1189
1189
  /**
1190
- * @generated from field: uint32 d = 2;
1190
+ * @generated from field: uint64 d = 2;
1191
1191
  */
1192
- d: number;
1192
+ d: bigint;
1193
1193
  constructor(data?: PartialMessage<Interval>);
1194
1194
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
1195
1195
  static readonly typeName = "norsk.api.media.Interval";
@@ -1800,7 +1800,11 @@ export declare enum ValidationResponse_ContextValidationResponse {
1800
1800
  /**
1801
1801
  * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_QUEUE = 3;
1802
1802
  */
1803
- CONTEXT_VALIDATION_DENY_AND_QUEUE = 3
1803
+ CONTEXT_VALIDATION_DENY_AND_QUEUE = 3,
1804
+ /**
1805
+ * @generated from enum value: CONTEXT_VALIDATION_DENY_AND_DROP = 4;
1806
+ */
1807
+ CONTEXT_VALIDATION_DENY_AND_DROP = 4
1804
1808
  }
1805
1809
  /**
1806
1810
  * @generated from message norsk.api.media.ValidationResponseAck
@@ -3874,6 +3878,109 @@ export declare class DeckLinkInputEvent extends Message<DeckLinkInputEvent> {
3874
3878
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeckLinkInputEvent;
3875
3879
  static equals(a: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined, b: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined): boolean;
3876
3880
  }
3881
+ /**
3882
+ * @generated from message norsk.api.media.DeltacastInputConfiguration
3883
+ */
3884
+ export declare class DeltacastInputConfiguration extends Message<DeltacastInputConfiguration> {
3885
+ /**
3886
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
3887
+ */
3888
+ id?: MediaNodeId;
3889
+ /**
3890
+ * @generated from field: string source_name = 2;
3891
+ */
3892
+ sourceName: string;
3893
+ /**
3894
+ * @generated from field: uint32 device_id = 3;
3895
+ */
3896
+ deviceId: number;
3897
+ /**
3898
+ * @generated from field: uint32 card_index = 4;
3899
+ */
3900
+ cardIndex: number;
3901
+ /**
3902
+ * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
3903
+ */
3904
+ statsSampling?: StreamStatisticsSampling;
3905
+ constructor(data?: PartialMessage<DeltacastInputConfiguration>);
3906
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3907
+ static readonly typeName = "norsk.api.media.DeltacastInputConfiguration";
3908
+ static readonly fields: FieldList;
3909
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputConfiguration;
3910
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration;
3911
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputConfiguration;
3912
+ static equals(a: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined, b: DeltacastInputConfiguration | PlainMessage<DeltacastInputConfiguration> | undefined): boolean;
3913
+ }
3914
+ /**
3915
+ * @generated from message norsk.api.media.DeltacastInputMessage
3916
+ */
3917
+ export declare class DeltacastInputMessage extends Message<DeltacastInputMessage> {
3918
+ /**
3919
+ * @generated from oneof norsk.api.media.DeltacastInputMessage.message
3920
+ */
3921
+ message: {
3922
+ /**
3923
+ * @generated from field: norsk.api.media.DeltacastInputConfiguration initial_config = 1;
3924
+ */
3925
+ value: DeltacastInputConfiguration;
3926
+ case: "initialConfig";
3927
+ } | {
3928
+ /**
3929
+ * @generated from field: norsk.api.media.TimestampNudge nudge = 2;
3930
+ */
3931
+ value: TimestampNudge;
3932
+ case: "nudge";
3933
+ } | {
3934
+ case: undefined;
3935
+ value?: undefined;
3936
+ };
3937
+ constructor(data?: PartialMessage<DeltacastInputMessage>);
3938
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3939
+ static readonly typeName = "norsk.api.media.DeltacastInputMessage";
3940
+ static readonly fields: FieldList;
3941
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputMessage;
3942
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputMessage;
3943
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputMessage;
3944
+ static equals(a: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined, b: DeltacastInputMessage | PlainMessage<DeltacastInputMessage> | undefined): boolean;
3945
+ }
3946
+ /**
3947
+ * @generated from message norsk.api.media.DeltacastInputEvent
3948
+ */
3949
+ export declare class DeltacastInputEvent extends Message<DeltacastInputEvent> {
3950
+ /**
3951
+ * @generated from oneof norsk.api.media.DeltacastInputEvent.message
3952
+ */
3953
+ message: {
3954
+ /**
3955
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
3956
+ */
3957
+ value: MediaNodeId;
3958
+ case: "nodeId";
3959
+ } | {
3960
+ /**
3961
+ * @generated from field: norsk.api.media.Context outbound_context = 2;
3962
+ */
3963
+ value: Context;
3964
+ case: "outboundContext";
3965
+ } | {
3966
+ /**
3967
+ * @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
3968
+ */
3969
+ value: MultiStreamStatistics;
3970
+ case: "streamStatistics";
3971
+ } | {
3972
+ case: undefined;
3973
+ value?: undefined;
3974
+ };
3975
+ constructor(data?: PartialMessage<DeltacastInputEvent>);
3976
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3977
+ static readonly typeName = "norsk.api.media.DeltacastInputEvent";
3978
+ static readonly fields: FieldList;
3979
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeltacastInputEvent;
3980
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeltacastInputEvent;
3981
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeltacastInputEvent;
3982
+ static equals(a: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined, b: DeltacastInputEvent | PlainMessage<DeltacastInputEvent> | undefined): boolean;
3983
+ }
3877
3984
  /**
3878
3985
  * @generated from message norsk.api.media.FileImageInputConfiguration
3879
3986
  */
@@ -3898,6 +4005,10 @@ export declare class FileImageInputConfiguration extends Message<FileImageInputC
3898
4005
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
3899
4006
  */
3900
4007
  statsSampling?: StreamStatisticsSampling;
4008
+ /**
4009
+ * @generated from field: norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration hardware_acceleration = 6;
4010
+ */
4011
+ hardwareAcceleration: FileImageInputConfiguration_FileImageHardwareAcceleration;
3901
4012
  constructor(data?: PartialMessage<FileImageInputConfiguration>);
3902
4013
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
3903
4014
  static readonly typeName = "norsk.api.media.FileImageInputConfiguration";
@@ -3907,6 +4018,19 @@ export declare class FileImageInputConfiguration extends Message<FileImageInputC
3907
4018
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileImageInputConfiguration;
3908
4019
  static equals(a: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined, b: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined): boolean;
3909
4020
  }
4021
+ /**
4022
+ * @generated from enum norsk.api.media.FileImageInputConfiguration.FileImageHardwareAcceleration
4023
+ */
4024
+ export declare enum FileImageInputConfiguration_FileImageHardwareAcceleration {
4025
+ /**
4026
+ * @generated from enum value: FILEIMAGE_NONE = 0;
4027
+ */
4028
+ FILEIMAGE_NONE = 0,
4029
+ /**
4030
+ * @generated from enum value: FILEIMAGE_QUADRA = 1;
4031
+ */
4032
+ FILEIMAGE_QUADRA = 1
4033
+ }
3910
4034
  /**
3911
4035
  * @generated from enum norsk.api.media.FileImageInputConfiguration.ImageFormat
3912
4036
  */
@@ -4968,8 +5092,6 @@ export declare enum Easing_SimpleEasing {
4968
5092
  */
4969
5093
  LINEAR = 0,
4970
5094
  /**
4971
- * EASE = 1;
4972
- *
4973
5095
  * @generated from enum value: EASE_IN = 2;
4974
5096
  */
4975
5097
  EASE_IN = 2,
@@ -5335,7 +5457,8 @@ export declare class MetadataCombineConfiguration extends Message<MetadataCombin
5335
5457
  */
5336
5458
  streamKey?: StreamKey;
5337
5459
  /**
5338
- * Max delta to allow for sync purposes, may vary according to source offsets and message frequency
5460
+ * Max delta to allow for sync purposes, may vary according to source offsets
5461
+ * and message frequency
5339
5462
  *
5340
5463
  * @generated from field: norsk.api.common.OptionalInt max_sync_delta = 3;
5341
5464
  */
@@ -6338,8 +6461,6 @@ export declare class CMAFDestination extends Message<CMAFDestination> {
6338
6461
  */
6339
6462
  message: {
6340
6463
  /**
6341
- * GenericPushDestination generic_destination = 1;
6342
- *
6343
6464
  * @generated from field: norsk.api.media.HlsPushDestination hls_push_destination = 1;
6344
6465
  */
6345
6466
  value: HlsPushDestination;
@@ -6386,8 +6507,6 @@ export declare class CmafVideoConfiguration extends Message<CmafVideoConfigurati
6386
6507
  */
6387
6508
  partDurationSeconds: number;
6388
6509
  /**
6389
- * float delay_output_ms = 4;
6390
- *
6391
6510
  * @generated from field: norsk.api.media.Mp4Encryption encryption = 5;
6392
6511
  */
6393
6512
  encryption?: Mp4Encryption;
@@ -6400,7 +6519,7 @@ export declare class CmafVideoConfiguration extends Message<CmafVideoConfigurati
6400
6519
  */
6401
6520
  destinations: CMAFDestination[];
6402
6521
  /**
6403
- * Directives to add to the m3u media playlist
6522
+ * Directives to add to the m3u8 media playlist
6404
6523
  *
6405
6524
  * @generated from field: string m3u_additions = 8;
6406
6525
  */
@@ -6485,8 +6604,6 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
6485
6604
  */
6486
6605
  segmentDurationSeconds: number;
6487
6606
  /**
6488
- * float delay_output_ms = 3;
6489
- *
6490
6607
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
6491
6608
  */
6492
6609
  statsSampling?: StreamStatisticsSampling;
@@ -6584,8 +6701,6 @@ export declare class CmafAudioConfiguration extends Message<CmafAudioConfigurati
6584
6701
  */
6585
6702
  partDurationSeconds: number;
6586
6703
  /**
6587
- * float delay_output_ms = 4;
6588
- *
6589
6704
  * @generated from field: norsk.api.media.Mp4Encryption encryption = 6;
6590
6705
  */
6591
6706
  encryption?: Mp4Encryption;
@@ -6683,8 +6798,6 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
6683
6798
  */
6684
6799
  segmentDurationSeconds: number;
6685
6800
  /**
6686
- * float delay_output_ms = 3;
6687
- *
6688
6801
  * @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
6689
6802
  */
6690
6803
  statsSampling?: StreamStatisticsSampling;
@@ -6778,19 +6891,9 @@ export declare class CmafWebVttConfiguration extends Message<CmafWebVttConfigura
6778
6891
  */
6779
6892
  segmentDurationSeconds: number;
6780
6893
  /**
6781
- * float delay_output_ms = 3;
6782
- *
6783
6894
  * @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
6784
6895
  */
6785
6896
  destinations: CMAFDestination[];
6786
- /**
6787
- * @generated from field: string hls_cache_directory = 6;
6788
- */
6789
- hlsCacheDirectory: string;
6790
- /**
6791
- * @generated from field: norsk.api.media.Interval pts_adjustment = 8;
6792
- */
6793
- ptsAdjustment?: Interval;
6794
6897
  /**
6795
6898
  * @generated from field: norsk.api.common.OptionalString name = 9;
6796
6899
  */
@@ -7384,8 +7487,6 @@ export declare class HlsTsCombinedPushConfiguration extends Message<HlsTsCombine
7384
7487
  */
7385
7488
  segmentDurationSeconds: number;
7386
7489
  /**
7387
- * float delay_output_ms = 4;
7388
- *
7389
7490
  * @generated from field: string playlist_name = 5;
7390
7491
  */
7391
7492
  playlistName: string;
@@ -7394,7 +7495,7 @@ export declare class HlsTsCombinedPushConfiguration extends Message<HlsTsCombine
7394
7495
  */
7395
7496
  statsSampling?: StreamStatisticsSampling;
7396
7497
  /**
7397
- * Directives to add to the m3u media playlists
7498
+ * Directives to add to the m3u8 media playlists
7398
7499
  *
7399
7500
  * @generated from field: string m3u_additions = 7;
7400
7501
  */
@@ -8137,6 +8238,12 @@ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
8137
8238
  */
8138
8239
  value: MultiStreamStatistics;
8139
8240
  case: "streamStatistics";
8241
+ } | {
8242
+ /**
8243
+ * @generated from field: norsk.api.media.WhepOutputEvent.State status = 5;
8244
+ */
8245
+ value: WhepOutputEvent_State;
8246
+ case: "status";
8140
8247
  } | {
8141
8248
  case: undefined;
8142
8249
  value?: undefined;
@@ -8150,6 +8257,19 @@ export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
8150
8257
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputEvent;
8151
8258
  static equals(a: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined, b: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined): boolean;
8152
8259
  }
8260
+ /**
8261
+ * @generated from enum norsk.api.media.WhepOutputEvent.State
8262
+ */
8263
+ export declare enum WhepOutputEvent_State {
8264
+ /**
8265
+ * @generated from enum value: WHEP_OUTPUT_STATUS_UNKNOWN = 0;
8266
+ */
8267
+ WHEP_OUTPUT_STATUS_UNKNOWN = 0,
8268
+ /**
8269
+ * @generated from enum value: WHEP_OUTPUT_STATUS_READY = 1;
8270
+ */
8271
+ WHEP_OUTPUT_STATUS_READY = 1
8272
+ }
8153
8273
  /**
8154
8274
  * @generated from message norsk.api.media.RtmpOutputConfiguration
8155
8275
  */
@@ -8584,6 +8704,97 @@ export declare class FileMp4OutputEvent extends Message<FileMp4OutputEvent> {
8584
8704
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4OutputEvent;
8585
8705
  static equals(a: FileMp4OutputEvent | PlainMessage<FileMp4OutputEvent> | undefined, b: FileMp4OutputEvent | PlainMessage<FileMp4OutputEvent> | undefined): boolean;
8586
8706
  }
8707
+ /**
8708
+ * @generated from message norsk.api.media.FileWebVttOutputConfiguration
8709
+ */
8710
+ export declare class FileWebVttOutputConfiguration extends Message<FileWebVttOutputConfiguration> {
8711
+ /**
8712
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
8713
+ */
8714
+ id?: MediaNodeId;
8715
+ /**
8716
+ * @generated from field: string file_name = 2;
8717
+ */
8718
+ fileName: string;
8719
+ constructor(data?: PartialMessage<FileWebVttOutputConfiguration>);
8720
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8721
+ static readonly typeName = "norsk.api.media.FileWebVttOutputConfiguration";
8722
+ static readonly fields: FieldList;
8723
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWebVttOutputConfiguration;
8724
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWebVttOutputConfiguration;
8725
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWebVttOutputConfiguration;
8726
+ static equals(a: FileWebVttOutputConfiguration | PlainMessage<FileWebVttOutputConfiguration> | undefined, b: FileWebVttOutputConfiguration | PlainMessage<FileWebVttOutputConfiguration> | undefined): boolean;
8727
+ }
8728
+ /**
8729
+ * @generated from message norsk.api.media.FileWebVttOutputMessage
8730
+ */
8731
+ export declare class FileWebVttOutputMessage extends Message<FileWebVttOutputMessage> {
8732
+ /**
8733
+ * @generated from oneof norsk.api.media.FileWebVttOutputMessage.message
8734
+ */
8735
+ message: {
8736
+ /**
8737
+ * @generated from field: norsk.api.media.Subscription subscription = 1;
8738
+ */
8739
+ value: Subscription;
8740
+ case: "subscription";
8741
+ } | {
8742
+ /**
8743
+ * @generated from field: norsk.api.media.FileWebVttOutputConfiguration configuration = 2;
8744
+ */
8745
+ value: FileWebVttOutputConfiguration;
8746
+ case: "configuration";
8747
+ } | {
8748
+ case: undefined;
8749
+ value?: undefined;
8750
+ };
8751
+ constructor(data?: PartialMessage<FileWebVttOutputMessage>);
8752
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8753
+ static readonly typeName = "norsk.api.media.FileWebVttOutputMessage";
8754
+ static readonly fields: FieldList;
8755
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWebVttOutputMessage;
8756
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWebVttOutputMessage;
8757
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWebVttOutputMessage;
8758
+ static equals(a: FileWebVttOutputMessage | PlainMessage<FileWebVttOutputMessage> | undefined, b: FileWebVttOutputMessage | PlainMessage<FileWebVttOutputMessage> | undefined): boolean;
8759
+ }
8760
+ /**
8761
+ * @generated from message norsk.api.media.FileWebVttOutputEvent
8762
+ */
8763
+ export declare class FileWebVttOutputEvent extends Message<FileWebVttOutputEvent> {
8764
+ /**
8765
+ * @generated from oneof norsk.api.media.FileWebVttOutputEvent.message
8766
+ */
8767
+ message: {
8768
+ /**
8769
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
8770
+ */
8771
+ value: MediaNodeId;
8772
+ case: "nodeId";
8773
+ } | {
8774
+ /**
8775
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 2;
8776
+ */
8777
+ value: SubscriptionResponse;
8778
+ case: "subscriptionResponse";
8779
+ } | {
8780
+ /**
8781
+ * @generated from field: norsk.api.media.Context inbound_context = 3;
8782
+ */
8783
+ value: Context;
8784
+ case: "inboundContext";
8785
+ } | {
8786
+ case: undefined;
8787
+ value?: undefined;
8788
+ };
8789
+ constructor(data?: PartialMessage<FileWebVttOutputEvent>);
8790
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
8791
+ static readonly typeName = "norsk.api.media.FileWebVttOutputEvent";
8792
+ static readonly fields: FieldList;
8793
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWebVttOutputEvent;
8794
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWebVttOutputEvent;
8795
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWebVttOutputEvent;
8796
+ static equals(a: FileWebVttOutputEvent | PlainMessage<FileWebVttOutputEvent> | undefined, b: FileWebVttOutputEvent | PlainMessage<FileWebVttOutputEvent> | undefined): boolean;
8797
+ }
8587
8798
  /**
8588
8799
  * @generated from message norsk.api.media.FrameRate
8589
8800
  */
@@ -8741,7 +8952,8 @@ export declare class X264Codec extends Message<X264Codec> {
8741
8952
  */
8742
8953
  cabac?: OptionalBool;
8743
8954
  /**
8744
- * Sets the maximum rate the VBV buffer should be assumed to refill at (kbit/s)
8955
+ * Sets the maximum rate the VBV buffer should be assumed to refill at
8956
+ * (kbit/s)
8745
8957
  *
8746
8958
  * @generated from field: norsk.api.common.OptionalInt vbv_max_rate = 11;
8747
8959
  */
@@ -9039,7 +9251,8 @@ export declare class X265Codec extends Message<X265Codec> {
9039
9251
  */
9040
9252
  frameReference?: OptionalInt;
9041
9253
  /**
9042
- * Sets the maximum rate the VBV buffer should be assumed to refill at (kbit/s)
9254
+ * Sets the maximum rate the VBV buffer should be assumed to refill at
9255
+ * (kbit/s)
9043
9256
  *
9044
9257
  * @generated from field: norsk.api.common.OptionalInt vbv_max_rate = 11;
9045
9258
  */
@@ -9567,8 +9780,8 @@ export declare class NvidiaRateControl extends Message<NvidiaRateControl> {
9567
9780
  vbvInitialDelay?: OptionalInt;
9568
9781
  /**
9569
9782
  * * Enable lookahead or not:
9570
- * Note: enabling lookahead will introduce scene cuts unless this is specifically disabled
9571
- * elswhere in the codec settings
9783
+ * Note: enabling lookahead will introduce scene cuts unless this is
9784
+ * specifically disabled elswhere in the codec settings
9572
9785
  *
9573
9786
  *
9574
9787
  * @generated from field: norsk.api.common.OptionalBool enableLookahead = 6;
@@ -10411,6 +10624,52 @@ export declare enum AmdU30Hevc_AmdU30HevcTier {
10411
10624
  */
10412
10625
  HIGH = 1
10413
10626
  }
10627
+ /**
10628
+ * @generated from message norsk.api.media.AmdMA35DLoad
10629
+ */
10630
+ export declare class AmdMA35DLoad extends Message<AmdMA35DLoad> {
10631
+ /**
10632
+ * @generated from field: uint32 device_index = 1;
10633
+ */
10634
+ deviceIndex: number;
10635
+ /**
10636
+ * @generated from field: repeated norsk.api.media.AmdMA35DLoad.ComputeUnitLoad compute_unit_load = 2;
10637
+ */
10638
+ computeUnitLoad: AmdMA35DLoad_ComputeUnitLoad[];
10639
+ constructor(data?: PartialMessage<AmdMA35DLoad>);
10640
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
10641
+ static readonly typeName = "norsk.api.media.AmdMA35DLoad";
10642
+ static readonly fields: FieldList;
10643
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DLoad;
10644
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DLoad;
10645
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DLoad;
10646
+ static equals(a: AmdMA35DLoad | PlainMessage<AmdMA35DLoad> | undefined, b: AmdMA35DLoad | PlainMessage<AmdMA35DLoad> | undefined): boolean;
10647
+ }
10648
+ /**
10649
+ * @generated from message norsk.api.media.AmdMA35DLoad.ComputeUnitLoad
10650
+ */
10651
+ export declare class AmdMA35DLoad_ComputeUnitLoad extends Message<AmdMA35DLoad_ComputeUnitLoad> {
10652
+ /**
10653
+ * @generated from field: string name = 1;
10654
+ */
10655
+ name: string;
10656
+ /**
10657
+ * @generated from field: uint32 instances = 2;
10658
+ */
10659
+ instances: number;
10660
+ /**
10661
+ * @generated from field: float load = 3;
10662
+ */
10663
+ load: number;
10664
+ constructor(data?: PartialMessage<AmdMA35DLoad_ComputeUnitLoad>);
10665
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
10666
+ static readonly typeName = "norsk.api.media.AmdMA35DLoad.ComputeUnitLoad";
10667
+ static readonly fields: FieldList;
10668
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DLoad_ComputeUnitLoad;
10669
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DLoad_ComputeUnitLoad;
10670
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DLoad_ComputeUnitLoad;
10671
+ static equals(a: AmdMA35DLoad_ComputeUnitLoad | PlainMessage<AmdMA35DLoad_ComputeUnitLoad> | undefined, b: AmdMA35DLoad_ComputeUnitLoad | PlainMessage<AmdMA35DLoad_ComputeUnitLoad> | undefined): boolean;
10672
+ }
10414
10673
  /**
10415
10674
  * @generated from message norsk.api.media.AmdMA35DEncodeCommon
10416
10675
  */
@@ -10444,10 +10703,10 @@ export declare class AmdMA35DEncodeCommon extends Message<AmdMA35DEncodeCommon>
10444
10703
  case: "constrainedVbr";
10445
10704
  } | {
10446
10705
  /**
10447
- * @generated from field: norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR constrained_abr = 5;
10706
+ * @generated from field: norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive content_adaptive = 5;
10448
10707
  */
10449
- value: AmdMA35DEncodeCommon_ConstrainedABR;
10450
- case: "constrainedAbr";
10708
+ value: AmdMA35DEncodeCommon_ContentAdaptive;
10709
+ case: "contentAdaptive";
10451
10710
  } | {
10452
10711
  case: undefined;
10453
10712
  value?: undefined;
@@ -10686,9 +10945,9 @@ export declare class AmdMA35DEncodeCommon_ConstrainedVBR extends Message<AmdMA35
10686
10945
  static equals(a: AmdMA35DEncodeCommon_ConstrainedVBR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedVBR> | undefined, b: AmdMA35DEncodeCommon_ConstrainedVBR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedVBR> | undefined): boolean;
10687
10946
  }
10688
10947
  /**
10689
- * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR
10948
+ * @generated from message norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive
10690
10949
  */
10691
- export declare class AmdMA35DEncodeCommon_ConstrainedABR extends Message<AmdMA35DEncodeCommon_ConstrainedABR> {
10950
+ export declare class AmdMA35DEncodeCommon_ContentAdaptive extends Message<AmdMA35DEncodeCommon_ContentAdaptive> {
10692
10951
  /**
10693
10952
  * @generated from field: uint32 bitrate = 1;
10694
10953
  */
@@ -10701,14 +10960,14 @@ export declare class AmdMA35DEncodeCommon_ConstrainedABR extends Message<AmdMA35
10701
10960
  * @generated from field: uint32 buf_size = 3;
10702
10961
  */
10703
10962
  bufSize: number;
10704
- constructor(data?: PartialMessage<AmdMA35DEncodeCommon_ConstrainedABR>);
10963
+ constructor(data?: PartialMessage<AmdMA35DEncodeCommon_ContentAdaptive>);
10705
10964
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
10706
- static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.ConstrainedABR";
10965
+ static readonly typeName = "norsk.api.media.AmdMA35DEncodeCommon.ContentAdaptive";
10707
10966
  static readonly fields: FieldList;
10708
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10709
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10710
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ConstrainedABR;
10711
- static equals(a: AmdMA35DEncodeCommon_ConstrainedABR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedABR> | undefined, b: AmdMA35DEncodeCommon_ConstrainedABR | PlainMessage<AmdMA35DEncodeCommon_ConstrainedABR> | undefined): boolean;
10967
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
10968
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
10969
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AmdMA35DEncodeCommon_ContentAdaptive;
10970
+ static equals(a: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined, b: AmdMA35DEncodeCommon_ContentAdaptive | PlainMessage<AmdMA35DEncodeCommon_ContentAdaptive> | undefined): boolean;
10712
10971
  }
10713
10972
  /**
10714
10973
  * @generated from message norsk.api.media.AmdMA35DH264
@@ -11357,7 +11616,8 @@ export declare class StreamMetadataOverrideConfiguration extends Message<StreamM
11357
11616
  */
11358
11617
  subtitlesLanguage?: OptionalString;
11359
11618
  /**
11360
- * * Override the property of whether a subtitles string is the default/primary rendition or not
11619
+ * * Override the property of whether a subtitles string is the default/primary
11620
+ * rendition or not
11361
11621
  *
11362
11622
  * @generated from field: norsk.api.common.OptionalBool subtitles_default = 6;
11363
11623
  */
@@ -11410,7 +11670,8 @@ export declare class StreamMetadataOverrideUpdateConfiguration extends Message<S
11410
11670
  */
11411
11671
  subtitlesLanguage?: OptionalString;
11412
11672
  /**
11413
- * * Override the property of whether a subtitles string is the default/primary rendition or not
11673
+ * * Override the property of whether a subtitles string is the default/primary
11674
+ * rendition or not
11414
11675
  *
11415
11676
  * @generated from field: norsk.api.common.OptionalBool subtitles_default = 6;
11416
11677
  */
@@ -11723,7 +11984,8 @@ export declare class StreamAlignConfiguration extends Message<StreamAlignConfigu
11723
11984
  */
11724
11985
  frameRate?: FrameRate;
11725
11986
  /**
11726
- * Synchronise audio/video sources aggressively to start at the same timestamp by dropping frames until a video keyframe occurs
11987
+ * Synchronise audio/video sources aggressively to start at the same timestamp
11988
+ * by dropping frames until a video keyframe occurs
11727
11989
  *
11728
11990
  * @generated from field: bool sync_av = 4;
11729
11991
  */
@@ -12016,6 +12278,223 @@ export declare class AudioEncodeEvent extends Message<AudioEncodeEvent> {
12016
12278
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioEncodeEvent;
12017
12279
  static equals(a: AudioEncodeEvent | PlainMessage<AudioEncodeEvent> | undefined, b: AudioEncodeEvent | PlainMessage<AudioEncodeEvent> | undefined): boolean;
12018
12280
  }
12281
+ /**
12282
+ * @generated from message norsk.api.media.WebVttEncodeConfiguration
12283
+ */
12284
+ export declare class WebVttEncodeConfiguration extends Message<WebVttEncodeConfiguration> {
12285
+ /**
12286
+ * Maximum length of any line in the cue in characters
12287
+ *
12288
+ * @generated from field: norsk.api.common.OptionalInt maximum_line_length = 1;
12289
+ */
12290
+ maximumLineLength?: OptionalInt;
12291
+ /**
12292
+ * Minimum length of the overall cue in characters
12293
+ *
12294
+ * @generated from field: norsk.api.common.OptionalInt minimum_cue_length = 2;
12295
+ */
12296
+ minimumCueLength?: OptionalInt;
12297
+ /**
12298
+ * Maximum number of lines in a cue.
12299
+ *
12300
+ * Consider using a value of 1 and a longer max line length and allowing the player to break lines: per the WebVTT standard
12301
+ * "In general, therefore, authors are encouraged to write cues all on one line except when a line break is definitely necessary."
12302
+ * However if the player does not do this adequately, using the actual max line length desired and more lines, hard line breaks
12303
+ * will be inserted. Note a maximum subtitle length of two lines is recommended (eg BBC guidance)
12304
+ *
12305
+ * @generated from field: norsk.api.common.OptionalInt maximum_num_lines = 3;
12306
+ */
12307
+ maximumNumLines?: OptionalInt;
12308
+ constructor(data?: PartialMessage<WebVttEncodeConfiguration>);
12309
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
12310
+ static readonly typeName = "norsk.api.media.WebVttEncodeConfiguration";
12311
+ static readonly fields: FieldList;
12312
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebVttEncodeConfiguration;
12313
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebVttEncodeConfiguration;
12314
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebVttEncodeConfiguration;
12315
+ static equals(a: WebVttEncodeConfiguration | PlainMessage<WebVttEncodeConfiguration> | undefined, b: WebVttEncodeConfiguration | PlainMessage<WebVttEncodeConfiguration> | undefined): boolean;
12316
+ }
12317
+ /**
12318
+ * @generated from message norsk.api.media.Cta608EncodeConfiguration
12319
+ */
12320
+ export declare class Cta608EncodeConfiguration extends Message<Cta608EncodeConfiguration> {
12321
+ /**
12322
+ * Caption style (default: selected according to source)
12323
+ *
12324
+ * @generated from field: norsk.api.media.Cta608EncodeConfiguration.Cta608EncodeStyle style = 1;
12325
+ */
12326
+ style: Cta608EncodeConfiguration_Cta608EncodeStyle;
12327
+ /**
12328
+ * The total/maximum number of lines to use for captioning
12329
+ *
12330
+ * @generated from field: norsk.api.common.OptionalInt lines = 2;
12331
+ */
12332
+ lines?: OptionalInt;
12333
+ constructor(data?: PartialMessage<Cta608EncodeConfiguration>);
12334
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
12335
+ static readonly typeName = "norsk.api.media.Cta608EncodeConfiguration";
12336
+ static readonly fields: FieldList;
12337
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Cta608EncodeConfiguration;
12338
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Cta608EncodeConfiguration;
12339
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Cta608EncodeConfiguration;
12340
+ static equals(a: Cta608EncodeConfiguration | PlainMessage<Cta608EncodeConfiguration> | undefined, b: Cta608EncodeConfiguration | PlainMessage<Cta608EncodeConfiguration> | undefined): boolean;
12341
+ }
12342
+ /**
12343
+ * @generated from enum norsk.api.media.Cta608EncodeConfiguration.Cta608EncodeStyle
12344
+ */
12345
+ export declare enum Cta608EncodeConfiguration_Cta608EncodeStyle {
12346
+ /**
12347
+ * @generated from enum value: CTA_608_STYLE_DEFAULT = 0;
12348
+ */
12349
+ CTA_608_STYLE_DEFAULT = 0,
12350
+ /**
12351
+ * @generated from enum value: CTA_608_STYLE_ROLL_UP = 1;
12352
+ */
12353
+ CTA_608_STYLE_ROLL_UP = 1,
12354
+ /**
12355
+ * @generated from enum value: CTA_608_STYLE_POP_ON = 2;
12356
+ */
12357
+ CTA_608_STYLE_POP_ON = 2
12358
+ }
12359
+ /**
12360
+ * @generated from message norsk.api.media.Cta708EncodeConfiguration
12361
+ */
12362
+ export declare class Cta708EncodeConfiguration extends Message<Cta708EncodeConfiguration> {
12363
+ constructor(data?: PartialMessage<Cta708EncodeConfiguration>);
12364
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
12365
+ static readonly typeName = "norsk.api.media.Cta708EncodeConfiguration";
12366
+ static readonly fields: FieldList;
12367
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Cta708EncodeConfiguration;
12368
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Cta708EncodeConfiguration;
12369
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Cta708EncodeConfiguration;
12370
+ static equals(a: Cta708EncodeConfiguration | PlainMessage<Cta708EncodeConfiguration> | undefined, b: Cta708EncodeConfiguration | PlainMessage<Cta708EncodeConfiguration> | undefined): boolean;
12371
+ }
12372
+ /**
12373
+ * @generated from message norsk.api.media.SubtitleConvertConfiguration
12374
+ */
12375
+ export declare class SubtitleConvertConfiguration extends Message<SubtitleConvertConfiguration> {
12376
+ /**
12377
+ * @generated from field: norsk.api.media.MediaNodeId id = 1;
12378
+ */
12379
+ id?: MediaNodeId;
12380
+ /**
12381
+ * @generated from oneof norsk.api.media.SubtitleConvertConfiguration.format
12382
+ */
12383
+ format: {
12384
+ /**
12385
+ * @generated from field: norsk.api.media.WebVttEncodeConfiguration webvtt = 2;
12386
+ */
12387
+ value: WebVttEncodeConfiguration;
12388
+ case: "webvtt";
12389
+ } | {
12390
+ /**
12391
+ * @generated from field: norsk.api.media.Cta608EncodeConfiguration cta608 = 3;
12392
+ */
12393
+ value: Cta608EncodeConfiguration;
12394
+ case: "cta608";
12395
+ } | {
12396
+ /**
12397
+ * @generated from field: norsk.api.media.Cta708EncodeConfiguration cta708 = 4;
12398
+ */
12399
+ value: Cta708EncodeConfiguration;
12400
+ case: "cta708";
12401
+ } | {
12402
+ case: undefined;
12403
+ value?: undefined;
12404
+ };
12405
+ /**
12406
+ * For conversion from transcribed sources containing partial and complete transcriptions, filter to only include the transcription
12407
+ * from a fully transcribed section/utterance. Note this may be multiple sentences and span up to 30s duration or beyond, making this
12408
+ * generally an option for non-live flows
12409
+ *
12410
+ * @generated from field: bool only_complete = 5;
12411
+ */
12412
+ onlyComplete: boolean;
12413
+ constructor(data?: PartialMessage<SubtitleConvertConfiguration>);
12414
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
12415
+ static readonly typeName = "norsk.api.media.SubtitleConvertConfiguration";
12416
+ static readonly fields: FieldList;
12417
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubtitleConvertConfiguration;
12418
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubtitleConvertConfiguration;
12419
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubtitleConvertConfiguration;
12420
+ static equals(a: SubtitleConvertConfiguration | PlainMessage<SubtitleConvertConfiguration> | undefined, b: SubtitleConvertConfiguration | PlainMessage<SubtitleConvertConfiguration> | undefined): boolean;
12421
+ }
12422
+ /**
12423
+ * @generated from message norsk.api.media.SubtitleConvertMessage
12424
+ */
12425
+ export declare class SubtitleConvertMessage extends Message<SubtitleConvertMessage> {
12426
+ /**
12427
+ * @generated from oneof norsk.api.media.SubtitleConvertMessage.message
12428
+ */
12429
+ message: {
12430
+ /**
12431
+ * @generated from field: norsk.api.media.Subscription subscription = 1;
12432
+ */
12433
+ value: Subscription;
12434
+ case: "subscription";
12435
+ } | {
12436
+ /**
12437
+ * @generated from field: norsk.api.media.SubtitleConvertConfiguration configuration = 2;
12438
+ */
12439
+ value: SubtitleConvertConfiguration;
12440
+ case: "configuration";
12441
+ } | {
12442
+ case: undefined;
12443
+ value?: undefined;
12444
+ };
12445
+ constructor(data?: PartialMessage<SubtitleConvertMessage>);
12446
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
12447
+ static readonly typeName = "norsk.api.media.SubtitleConvertMessage";
12448
+ static readonly fields: FieldList;
12449
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubtitleConvertMessage;
12450
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubtitleConvertMessage;
12451
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubtitleConvertMessage;
12452
+ static equals(a: SubtitleConvertMessage | PlainMessage<SubtitleConvertMessage> | undefined, b: SubtitleConvertMessage | PlainMessage<SubtitleConvertMessage> | undefined): boolean;
12453
+ }
12454
+ /**
12455
+ * @generated from message norsk.api.media.SubtitleConvertEvent
12456
+ */
12457
+ export declare class SubtitleConvertEvent extends Message<SubtitleConvertEvent> {
12458
+ /**
12459
+ * @generated from oneof norsk.api.media.SubtitleConvertEvent.message
12460
+ */
12461
+ message: {
12462
+ /**
12463
+ * @generated from field: norsk.api.media.MediaNodeId node_id = 1;
12464
+ */
12465
+ value: MediaNodeId;
12466
+ case: "nodeId";
12467
+ } | {
12468
+ /**
12469
+ * @generated from field: norsk.api.media.Context outbound_context = 2;
12470
+ */
12471
+ value: Context;
12472
+ case: "outboundContext";
12473
+ } | {
12474
+ /**
12475
+ * @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
12476
+ */
12477
+ value: SubscriptionResponse;
12478
+ case: "subscriptionResponse";
12479
+ } | {
12480
+ /**
12481
+ * @generated from field: norsk.api.media.Context inbound_context = 4;
12482
+ */
12483
+ value: Context;
12484
+ case: "inboundContext";
12485
+ } | {
12486
+ case: undefined;
12487
+ value?: undefined;
12488
+ };
12489
+ constructor(data?: PartialMessage<SubtitleConvertEvent>);
12490
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
12491
+ static readonly typeName = "norsk.api.media.SubtitleConvertEvent";
12492
+ static readonly fields: FieldList;
12493
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubtitleConvertEvent;
12494
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubtitleConvertEvent;
12495
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubtitleConvertEvent;
12496
+ static equals(a: SubtitleConvertEvent | PlainMessage<SubtitleConvertEvent> | undefined, b: SubtitleConvertEvent | PlainMessage<SubtitleConvertEvent> | undefined): boolean;
12497
+ }
12019
12498
  /**
12020
12499
  * @generated from message norsk.api.media.StreamSwitchSmoothConfiguration
12021
12500
  */
@@ -13326,9 +13805,17 @@ export declare class AudioTranscribeAzureConfiguration extends Message<AudioTran
13326
13805
  */
13327
13806
  azureRegion: string;
13328
13807
  /**
13329
- * @generated from field: norsk.api.common.OptionalInt maximum_line_length = 7;
13808
+ * * Enable dictation mode (recognise dictated punctuation etc rather than transcribing the audio verbatim)
13809
+ *
13810
+ * @generated from field: norsk.api.common.OptionalBool dictation = 8;
13330
13811
  */
13331
- maximumLineLength?: OptionalInt;
13812
+ dictation?: OptionalBool;
13813
+ /**
13814
+ * * Profanity behaviour (whether to mask or remove profanity)
13815
+ *
13816
+ * @generated from field: norsk.api.media.AudioTranscribeAzureConfiguration.ProfanityOption profanity = 9;
13817
+ */
13818
+ profanity: AudioTranscribeAzureConfiguration_ProfanityOption;
13332
13819
  constructor(data?: PartialMessage<AudioTranscribeAzureConfiguration>);
13333
13820
  static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
13334
13821
  static readonly typeName = "norsk.api.media.AudioTranscribeAzureConfiguration";
@@ -13338,6 +13825,27 @@ export declare class AudioTranscribeAzureConfiguration extends Message<AudioTran
13338
13825
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioTranscribeAzureConfiguration;
13339
13826
  static equals(a: AudioTranscribeAzureConfiguration | PlainMessage<AudioTranscribeAzureConfiguration> | undefined, b: AudioTranscribeAzureConfiguration | PlainMessage<AudioTranscribeAzureConfiguration> | undefined): boolean;
13340
13827
  }
13828
+ /**
13829
+ * @generated from enum norsk.api.media.AudioTranscribeAzureConfiguration.ProfanityOption
13830
+ */
13831
+ export declare enum AudioTranscribeAzureConfiguration_ProfanityOption {
13832
+ /**
13833
+ * @generated from enum value: AZURE_PROFANITY_DEFAULT = 0;
13834
+ */
13835
+ AZURE_PROFANITY_DEFAULT = 0,
13836
+ /**
13837
+ * @generated from enum value: AZURE_PROFANITY_MASKED = 1;
13838
+ */
13839
+ AZURE_PROFANITY_MASKED = 1,
13840
+ /**
13841
+ * @generated from enum value: AZURE_PROFANITY_REMOVED = 2;
13842
+ */
13843
+ AZURE_PROFANITY_REMOVED = 2,
13844
+ /**
13845
+ * @generated from enum value: AZURE_PROFANITY_RAW = 3;
13846
+ */
13847
+ AZURE_PROFANITY_RAW = 3
13848
+ }
13341
13849
  /**
13342
13850
  * @generated from message norsk.api.media.AudioTranscribeAzureMessage
13343
13851
  */
@@ -13603,7 +14111,8 @@ export declare class SubtitleTranslateAwsConfiguration extends Message<SubtitleT
13603
14111
  */
13604
14112
  id?: MediaNodeId;
13605
14113
  /**
13606
- * / Source language code/tag, e.g. de or fr-CA (leave blank to use the source subtitle language / AWS automatic detection)
14114
+ * / Source language code/tag, e.g. de or fr-CA (leave blank to use the source
14115
+ * / subtitle language / AWS automatic detection)
13607
14116
  *
13608
14117
  * @generated from field: string source_language = 2;
13609
14118
  */
@@ -13749,8 +14258,6 @@ export declare class AncillaryMessage extends Message<AncillaryMessage> {
13749
14258
  case: "subscription";
13750
14259
  } | {
13751
14260
  /**
13752
- * Scte104Event scte104_event = 4;
13753
- *
13754
14261
  * @generated from field: norsk.api.media.Scte35Event scte35_event = 3;
13755
14262
  */
13756
14263
  value: Scte35Event;
@@ -13795,8 +14302,6 @@ export declare class AncillaryEvent extends Message<AncillaryEvent> {
13795
14302
  case: "subscriptionResponse";
13796
14303
  } | {
13797
14304
  /**
13798
- * Scte104Event scte104_event = 5;
13799
- *
13800
14305
  * @generated from field: norsk.api.media.Scte35Event scte35_event = 4;
13801
14306
  */
13802
14307
  value: Scte35Event;
@@ -15886,6 +16391,12 @@ export declare class NorskStatusEvent extends Message<NorskStatusEvent> {
15886
16391
  */
15887
16392
  value: Log;
15888
16393
  case: "logEvent";
16394
+ } | {
16395
+ /**
16396
+ * @generated from field: norsk.api.media.AmdMA35DLoad ma35d_load = 5;
16397
+ */
16398
+ value: AmdMA35DLoad;
16399
+ case: "ma35dLoad";
15889
16400
  } | {
15890
16401
  case: undefined;
15891
16402
  value?: undefined;