@norskvideo/norsk-api 1.0.350 → 1.0.352
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/media_grpc_pb.d.ts +16 -0
- package/lib/media_grpc_pb.js +38 -1
- package/lib/media_pb.d.ts +488 -66
- package/lib/media_pb.js +483 -76
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +765 -99
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -1796,7 +1796,11 @@ export declare enum ValidationResponse_ContextValidationResponse {
|
|
|
1796
1796
|
/**
|
|
1797
1797
|
* @generated from enum value: CONTEXT_VALIDATION_ALLOW_AND_TERMINATE = 2;
|
|
1798
1798
|
*/
|
|
1799
|
-
CONTEXT_VALIDATION_ALLOW_AND_TERMINATE = 2
|
|
1799
|
+
CONTEXT_VALIDATION_ALLOW_AND_TERMINATE = 2,
|
|
1800
|
+
/**
|
|
1801
|
+
* @generated from enum value: CONTEXT_VALIDATION_DENY_AND_QUEUE = 3;
|
|
1802
|
+
*/
|
|
1803
|
+
CONTEXT_VALIDATION_DENY_AND_QUEUE = 3
|
|
1800
1804
|
}
|
|
1801
1805
|
/**
|
|
1802
1806
|
* @generated from message norsk.api.media.ValidationResponseAck
|
|
@@ -2809,7 +2813,11 @@ export declare enum TsProgram_TsStreamType {
|
|
|
2809
2813
|
/**
|
|
2810
2814
|
* @generated from enum value: SCTE35 = 11;
|
|
2811
2815
|
*/
|
|
2812
|
-
SCTE35 = 11
|
|
2816
|
+
SCTE35 = 11,
|
|
2817
|
+
/**
|
|
2818
|
+
* @generated from enum value: PES_METADATA = 12;
|
|
2819
|
+
*/
|
|
2820
|
+
PES_METADATA = 12
|
|
2813
2821
|
}
|
|
2814
2822
|
/**
|
|
2815
2823
|
* @generated from message norsk.api.media.TsProgram.TsPid
|
|
@@ -5038,17 +5046,17 @@ export declare class VideoComposeConfiguration extends Message<VideoComposeConfi
|
|
|
5038
5046
|
*/
|
|
5039
5047
|
export declare enum VideoComposeConfiguration_ComposeHardwareAcceleration {
|
|
5040
5048
|
/**
|
|
5041
|
-
* @generated from enum value:
|
|
5049
|
+
* @generated from enum value: COMPOSE_NONE = 0;
|
|
5042
5050
|
*/
|
|
5043
|
-
|
|
5051
|
+
COMPOSE_NONE = 0,
|
|
5044
5052
|
/**
|
|
5045
|
-
* @generated from enum value:
|
|
5053
|
+
* @generated from enum value: COMPOSE_QUADRA = 1;
|
|
5046
5054
|
*/
|
|
5047
|
-
|
|
5055
|
+
COMPOSE_QUADRA = 1,
|
|
5048
5056
|
/**
|
|
5049
|
-
* @generated from enum value:
|
|
5057
|
+
* @generated from enum value: COMPOSE_NVIDIA = 2;
|
|
5050
5058
|
*/
|
|
5051
|
-
|
|
5059
|
+
COMPOSE_NVIDIA = 2
|
|
5052
5060
|
}
|
|
5053
5061
|
/**
|
|
5054
5062
|
* @generated from enum norsk.api.media.VideoComposeConfiguration.PixelFormat
|
|
@@ -5200,6 +5208,113 @@ export declare class TransitionComplete extends Message<TransitionComplete> {
|
|
|
5200
5208
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TransitionComplete;
|
|
5201
5209
|
static equals(a: TransitionComplete | PlainMessage<TransitionComplete> | undefined, b: TransitionComplete | PlainMessage<TransitionComplete> | undefined): boolean;
|
|
5202
5210
|
}
|
|
5211
|
+
/**
|
|
5212
|
+
* @generated from message norsk.api.media.MetadataCombineMessage
|
|
5213
|
+
*/
|
|
5214
|
+
export declare class MetadataCombineMessage extends Message<MetadataCombineMessage> {
|
|
5215
|
+
/**
|
|
5216
|
+
* @generated from oneof norsk.api.media.MetadataCombineMessage.message
|
|
5217
|
+
*/
|
|
5218
|
+
message: {
|
|
5219
|
+
/**
|
|
5220
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
5221
|
+
*/
|
|
5222
|
+
value: Subscription;
|
|
5223
|
+
case: "subscription";
|
|
5224
|
+
} | {
|
|
5225
|
+
/**
|
|
5226
|
+
* @generated from field: norsk.api.media.MetadataCombineConfiguration initial_config = 2;
|
|
5227
|
+
*/
|
|
5228
|
+
value: MetadataCombineConfiguration;
|
|
5229
|
+
case: "initialConfig";
|
|
5230
|
+
} | {
|
|
5231
|
+
case: undefined;
|
|
5232
|
+
value?: undefined;
|
|
5233
|
+
};
|
|
5234
|
+
constructor(data?: PartialMessage<MetadataCombineMessage>);
|
|
5235
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5236
|
+
static readonly typeName = "norsk.api.media.MetadataCombineMessage";
|
|
5237
|
+
static readonly fields: FieldList;
|
|
5238
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetadataCombineMessage;
|
|
5239
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetadataCombineMessage;
|
|
5240
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetadataCombineMessage;
|
|
5241
|
+
static equals(a: MetadataCombineMessage | PlainMessage<MetadataCombineMessage> | undefined, b: MetadataCombineMessage | PlainMessage<MetadataCombineMessage> | undefined): boolean;
|
|
5242
|
+
}
|
|
5243
|
+
/**
|
|
5244
|
+
* @generated from message norsk.api.media.MetadataCombineConfiguration
|
|
5245
|
+
*/
|
|
5246
|
+
export declare class MetadataCombineConfiguration extends Message<MetadataCombineConfiguration> {
|
|
5247
|
+
/**
|
|
5248
|
+
* The Media Node Id
|
|
5249
|
+
*
|
|
5250
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5251
|
+
*/
|
|
5252
|
+
id?: MediaNodeId;
|
|
5253
|
+
/**
|
|
5254
|
+
* The stream key for the merged output metadata stream
|
|
5255
|
+
*
|
|
5256
|
+
* @generated from field: norsk.api.media.StreamKey stream_key = 2;
|
|
5257
|
+
*/
|
|
5258
|
+
streamKey?: StreamKey;
|
|
5259
|
+
/**
|
|
5260
|
+
* Max delta to allow for sync purposes, may vary according to source offsets and message frequency
|
|
5261
|
+
*
|
|
5262
|
+
* @generated from field: norsk.api.common.OptionalInt max_sync_delta = 3;
|
|
5263
|
+
*/
|
|
5264
|
+
maxSyncDelta?: OptionalInt;
|
|
5265
|
+
constructor(data?: PartialMessage<MetadataCombineConfiguration>);
|
|
5266
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5267
|
+
static readonly typeName = "norsk.api.media.MetadataCombineConfiguration";
|
|
5268
|
+
static readonly fields: FieldList;
|
|
5269
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetadataCombineConfiguration;
|
|
5270
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetadataCombineConfiguration;
|
|
5271
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetadataCombineConfiguration;
|
|
5272
|
+
static equals(a: MetadataCombineConfiguration | PlainMessage<MetadataCombineConfiguration> | undefined, b: MetadataCombineConfiguration | PlainMessage<MetadataCombineConfiguration> | undefined): boolean;
|
|
5273
|
+
}
|
|
5274
|
+
/**
|
|
5275
|
+
* @generated from message norsk.api.media.MetadataCombineEvent
|
|
5276
|
+
*/
|
|
5277
|
+
export declare class MetadataCombineEvent extends Message<MetadataCombineEvent> {
|
|
5278
|
+
/**
|
|
5279
|
+
* @generated from oneof norsk.api.media.MetadataCombineEvent.message
|
|
5280
|
+
*/
|
|
5281
|
+
message: {
|
|
5282
|
+
/**
|
|
5283
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
5284
|
+
*/
|
|
5285
|
+
value: MediaNodeId;
|
|
5286
|
+
case: "nodeId";
|
|
5287
|
+
} | {
|
|
5288
|
+
/**
|
|
5289
|
+
* @generated from field: norsk.api.media.Context inbound_context = 2;
|
|
5290
|
+
*/
|
|
5291
|
+
value: Context;
|
|
5292
|
+
case: "inboundContext";
|
|
5293
|
+
} | {
|
|
5294
|
+
/**
|
|
5295
|
+
* @generated from field: norsk.api.media.Context outbound_context = 3;
|
|
5296
|
+
*/
|
|
5297
|
+
value: Context;
|
|
5298
|
+
case: "outboundContext";
|
|
5299
|
+
} | {
|
|
5300
|
+
/**
|
|
5301
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 4;
|
|
5302
|
+
*/
|
|
5303
|
+
value: SubscriptionResponse;
|
|
5304
|
+
case: "subscriptionResponse";
|
|
5305
|
+
} | {
|
|
5306
|
+
case: undefined;
|
|
5307
|
+
value?: undefined;
|
|
5308
|
+
};
|
|
5309
|
+
constructor(data?: PartialMessage<MetadataCombineEvent>);
|
|
5310
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5311
|
+
static readonly typeName = "norsk.api.media.MetadataCombineEvent";
|
|
5312
|
+
static readonly fields: FieldList;
|
|
5313
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MetadataCombineEvent;
|
|
5314
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MetadataCombineEvent;
|
|
5315
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MetadataCombineEvent;
|
|
5316
|
+
static equals(a: MetadataCombineEvent | PlainMessage<MetadataCombineEvent> | undefined, b: MetadataCombineEvent | PlainMessage<MetadataCombineEvent> | undefined): boolean;
|
|
5317
|
+
}
|
|
5203
5318
|
/**
|
|
5204
5319
|
* *
|
|
5205
5320
|
* Describe an audio source with the output gain mapping for a mixer.
|
|
@@ -5793,6 +5908,10 @@ export declare class AudioBuildMultichannelConfiguration extends Message<AudioBu
|
|
|
5793
5908
|
* @generated from field: repeated norsk.api.media.StreamKey channel_list = 7;
|
|
5794
5909
|
*/
|
|
5795
5910
|
channelList: StreamKey[];
|
|
5911
|
+
/**
|
|
5912
|
+
* @generated from field: norsk.api.media.SampleRate sample_rate = 8;
|
|
5913
|
+
*/
|
|
5914
|
+
sampleRate: SampleRate;
|
|
5796
5915
|
constructor(data?: PartialMessage<AudioBuildMultichannelConfiguration>);
|
|
5797
5916
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5798
5917
|
static readonly typeName = "norsk.api.media.AudioBuildMultichannelConfiguration";
|
|
@@ -6676,7 +6795,8 @@ export declare class UpdateCredentials extends Message<UpdateCredentials> {
|
|
|
6676
6795
|
*/
|
|
6677
6796
|
export declare class UpdateDestinationPlaylist extends Message<UpdateDestinationPlaylist> {
|
|
6678
6797
|
/**
|
|
6679
|
-
* TODO this doesn't have to be a list anymore, as we're only getting at most
|
|
6798
|
+
* TODO this doesn't have to be a list anymore, as we're only getting at most
|
|
6799
|
+
* one update from the sdk
|
|
6680
6800
|
*
|
|
6681
6801
|
* @generated from field: repeated norsk.api.media.UpdatePlaylist playlists = 1;
|
|
6682
6802
|
*/
|
|
@@ -7355,6 +7475,10 @@ export declare class UdpTsOutputConfiguration extends Message<UdpTsOutputConfigu
|
|
|
7355
7475
|
* @generated from field: bool rtp_encapsulate = 7;
|
|
7356
7476
|
*/
|
|
7357
7477
|
rtpEncapsulate: boolean;
|
|
7478
|
+
/**
|
|
7479
|
+
* @generated from field: norsk.api.common.OptionalInt av_delay_ms = 8;
|
|
7480
|
+
*/
|
|
7481
|
+
avDelayMs?: OptionalInt;
|
|
7358
7482
|
constructor(data?: PartialMessage<UdpTsOutputConfiguration>);
|
|
7359
7483
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7360
7484
|
static readonly typeName = "norsk.api.media.UdpTsOutputConfiguration";
|
|
@@ -7476,6 +7600,10 @@ export declare class SrtOutputConfiguration extends Message<SrtOutputConfigurati
|
|
|
7476
7600
|
* @generated from field: uint32 buffer_delay_ms = 9;
|
|
7477
7601
|
*/
|
|
7478
7602
|
bufferDelayMs: number;
|
|
7603
|
+
/**
|
|
7604
|
+
* @generated from field: norsk.api.common.OptionalInt av_delay_ms = 10;
|
|
7605
|
+
*/
|
|
7606
|
+
avDelayMs?: OptionalInt;
|
|
7479
7607
|
constructor(data?: PartialMessage<SrtOutputConfiguration>);
|
|
7480
7608
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7481
7609
|
static readonly typeName = "norsk.api.media.SrtOutputConfiguration";
|
|
@@ -7924,6 +8052,10 @@ export declare class RtmpOutputConfiguration extends Message<RtmpOutputConfigura
|
|
|
7924
8052
|
* @generated from field: int32 retry_connection_timeout = 6;
|
|
7925
8053
|
*/
|
|
7926
8054
|
retryConnectionTimeout: number;
|
|
8055
|
+
/**
|
|
8056
|
+
* @generated from field: norsk.api.common.OptionalInt av_delay_ms = 7;
|
|
8057
|
+
*/
|
|
8058
|
+
avDelayMs?: OptionalInt;
|
|
7927
8059
|
constructor(data?: PartialMessage<RtmpOutputConfiguration>);
|
|
7928
8060
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7929
8061
|
static readonly typeName = "norsk.api.media.RtmpOutputConfiguration";
|
|
@@ -8065,6 +8197,10 @@ export declare class FileTsOutputConfiguration extends Message<FileTsOutputConfi
|
|
|
8065
8197
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
8066
8198
|
*/
|
|
8067
8199
|
statsSampling?: StreamStatisticsSampling;
|
|
8200
|
+
/**
|
|
8201
|
+
* @generated from field: norsk.api.common.OptionalInt av_delay_ms = 4;
|
|
8202
|
+
*/
|
|
8203
|
+
avDelayMs?: OptionalInt;
|
|
8068
8204
|
constructor(data?: PartialMessage<FileTsOutputConfiguration>);
|
|
8069
8205
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8070
8206
|
static readonly typeName = "norsk.api.media.FileTsOutputConfiguration";
|
|
@@ -9850,6 +9986,61 @@ export declare class XilinxH264 extends Message<XilinxH264> {
|
|
|
9850
9986
|
* @generated from field: norsk.api.common.OptionalInt level = 2;
|
|
9851
9987
|
*/
|
|
9852
9988
|
level?: OptionalInt;
|
|
9989
|
+
/**
|
|
9990
|
+
* @generated from oneof norsk.api.media.XilinxH264.rateControl
|
|
9991
|
+
*/
|
|
9992
|
+
rateControl: {
|
|
9993
|
+
/**
|
|
9994
|
+
* @generated from field: uint32 const_qp = 3;
|
|
9995
|
+
*/
|
|
9996
|
+
value: number;
|
|
9997
|
+
case: "constQp";
|
|
9998
|
+
} | {
|
|
9999
|
+
/**
|
|
10000
|
+
* @generated from field: uint32 cbr = 4;
|
|
10001
|
+
*/
|
|
10002
|
+
value: number;
|
|
10003
|
+
case: "cbr";
|
|
10004
|
+
} | {
|
|
10005
|
+
/**
|
|
10006
|
+
* @generated from field: uint32 vbr = 5;
|
|
10007
|
+
*/
|
|
10008
|
+
value: number;
|
|
10009
|
+
case: "vbr";
|
|
10010
|
+
} | {
|
|
10011
|
+
/**
|
|
10012
|
+
* @generated from field: uint32 low_latency = 6;
|
|
10013
|
+
*/
|
|
10014
|
+
value: number;
|
|
10015
|
+
case: "lowLatency";
|
|
10016
|
+
} | {
|
|
10017
|
+
case: undefined;
|
|
10018
|
+
value?: undefined;
|
|
10019
|
+
};
|
|
10020
|
+
/**
|
|
10021
|
+
* @generated from field: norsk.api.common.OptionalInt lookahead_depth = 7;
|
|
10022
|
+
*/
|
|
10023
|
+
lookaheadDepth?: OptionalInt;
|
|
10024
|
+
/**
|
|
10025
|
+
* @generated from field: norsk.api.common.OptionalInt idr_period = 8;
|
|
10026
|
+
*/
|
|
10027
|
+
idrPeriod?: OptionalInt;
|
|
10028
|
+
/**
|
|
10029
|
+
* @generated from field: norsk.api.common.OptionalInt bframes = 9;
|
|
10030
|
+
*/
|
|
10031
|
+
bframes?: OptionalInt;
|
|
10032
|
+
/**
|
|
10033
|
+
* @generated from field: norsk.api.common.OptionalInt gop_size = 10;
|
|
10034
|
+
*/
|
|
10035
|
+
gopSize?: OptionalInt;
|
|
10036
|
+
/**
|
|
10037
|
+
* @generated from field: norsk.api.common.OptionalInt min_qp = 11;
|
|
10038
|
+
*/
|
|
10039
|
+
minQp?: OptionalInt;
|
|
10040
|
+
/**
|
|
10041
|
+
* @generated from field: norsk.api.common.OptionalInt max_qp = 12;
|
|
10042
|
+
*/
|
|
10043
|
+
maxQp?: OptionalInt;
|
|
9853
10044
|
constructor(data?: PartialMessage<XilinxH264>);
|
|
9854
10045
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9855
10046
|
static readonly typeName = "norsk.api.media.XilinxH264";
|
|
@@ -10282,7 +10473,7 @@ export declare class StreamKeyOverrideConfiguration extends Message<StreamKeyOve
|
|
|
10282
10473
|
*/
|
|
10283
10474
|
id?: MediaNodeId;
|
|
10284
10475
|
/**
|
|
10285
|
-
* @generated from field: norsk.api.media.StreamKey
|
|
10476
|
+
* @generated from field: norsk.api.media.StreamKey stream_key = 2;
|
|
10286
10477
|
*/
|
|
10287
10478
|
streamKey?: StreamKey;
|
|
10288
10479
|
constructor(data?: PartialMessage<StreamKeyOverrideConfiguration>);
|
|
@@ -10393,13 +10584,15 @@ export declare class StreamMetadataOverrideConfiguration extends Message<StreamM
|
|
|
10393
10584
|
*/
|
|
10394
10585
|
audioBitrate?: OptionalInt;
|
|
10395
10586
|
/**
|
|
10396
|
-
* * Override the language metadata of an audio stream, or `""` to clear. RFC
|
|
10587
|
+
* * Override the language metadata of an audio stream, or `""` to clear. RFC
|
|
10588
|
+
* 5646 language tag.
|
|
10397
10589
|
*
|
|
10398
10590
|
* @generated from field: norsk.api.common.OptionalString audio_language = 4;
|
|
10399
10591
|
*/
|
|
10400
10592
|
audioLanguage?: OptionalString;
|
|
10401
10593
|
/**
|
|
10402
|
-
* * Override the language metadata of a subtitles stream, or `""` to clear RFC
|
|
10594
|
+
* * Override the language metadata of a subtitles stream, or `""` to clear RFC
|
|
10595
|
+
* 5646 language tag.
|
|
10403
10596
|
*
|
|
10404
10597
|
* @generated from field: norsk.api.common.OptionalString subtitles_language = 5;
|
|
10405
10598
|
*/
|
|
@@ -10432,13 +10625,15 @@ export declare class StreamMetadataOverrideUpdateConfiguration extends Message<S
|
|
|
10432
10625
|
*/
|
|
10433
10626
|
audioBitrate?: OptionalInt;
|
|
10434
10627
|
/**
|
|
10435
|
-
* * Override the language metadata of an audio stream, or `""` to clear. RFC
|
|
10628
|
+
* * Override the language metadata of an audio stream, or `""` to clear. RFC
|
|
10629
|
+
* 5646 language tag.
|
|
10436
10630
|
*
|
|
10437
10631
|
* @generated from field: norsk.api.common.OptionalString audio_language = 4;
|
|
10438
10632
|
*/
|
|
10439
10633
|
audioLanguage?: OptionalString;
|
|
10440
10634
|
/**
|
|
10441
|
-
* * Override the language metadata of a subtitles stream, or `""` to clear.
|
|
10635
|
+
* * Override the language metadata of a subtitles stream, or `""` to clear.
|
|
10636
|
+
* RFC 5646 language tag.
|
|
10442
10637
|
*
|
|
10443
10638
|
* @generated from field: norsk.api.common.OptionalString subtitles_language = 5;
|
|
10444
10639
|
*/
|
|
@@ -11088,6 +11283,13 @@ export declare class StreamSwitchSmoothConfiguration extends Message<StreamSwitc
|
|
|
11088
11283
|
* @generated from field: norsk.api.media.StreamSwitchSmoothConfiguration.Alignment alignment = 9;
|
|
11089
11284
|
*/
|
|
11090
11285
|
alignment: StreamSwitchSmoothConfiguration_Alignment;
|
|
11286
|
+
/**
|
|
11287
|
+
* Whether to do the video compose operation in memory or on the specified
|
|
11288
|
+
* hardware
|
|
11289
|
+
*
|
|
11290
|
+
* @generated from field: norsk.api.media.StreamSwitchSmoothConfiguration.StreamSwitchSmoothHardwareAcceleration hardware_acceleration = 10;
|
|
11291
|
+
*/
|
|
11292
|
+
hardwareAcceleration: StreamSwitchSmoothConfiguration_StreamSwitchSmoothHardwareAcceleration;
|
|
11091
11293
|
constructor(data?: PartialMessage<StreamSwitchSmoothConfiguration>);
|
|
11092
11294
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11093
11295
|
static readonly typeName = "norsk.api.media.StreamSwitchSmoothConfiguration";
|
|
@@ -11097,6 +11299,23 @@ export declare class StreamSwitchSmoothConfiguration extends Message<StreamSwitc
|
|
|
11097
11299
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothConfiguration;
|
|
11098
11300
|
static equals(a: StreamSwitchSmoothConfiguration | PlainMessage<StreamSwitchSmoothConfiguration> | undefined, b: StreamSwitchSmoothConfiguration | PlainMessage<StreamSwitchSmoothConfiguration> | undefined): boolean;
|
|
11099
11301
|
}
|
|
11302
|
+
/**
|
|
11303
|
+
* @generated from enum norsk.api.media.StreamSwitchSmoothConfiguration.StreamSwitchSmoothHardwareAcceleration
|
|
11304
|
+
*/
|
|
11305
|
+
export declare enum StreamSwitchSmoothConfiguration_StreamSwitchSmoothHardwareAcceleration {
|
|
11306
|
+
/**
|
|
11307
|
+
* @generated from enum value: SS_NONE = 0;
|
|
11308
|
+
*/
|
|
11309
|
+
SS_NONE = 0,
|
|
11310
|
+
/**
|
|
11311
|
+
* @generated from enum value: SS_QUADRA = 1;
|
|
11312
|
+
*/
|
|
11313
|
+
SS_QUADRA = 1,
|
|
11314
|
+
/**
|
|
11315
|
+
* @generated from enum value: SS_NVIDIA = 2;
|
|
11316
|
+
*/
|
|
11317
|
+
SS_NVIDIA = 2
|
|
11318
|
+
}
|
|
11100
11319
|
/**
|
|
11101
11320
|
* Whether to align all the incoming timestamps
|
|
11102
11321
|
*
|
|
@@ -12285,15 +12504,16 @@ export declare class AudioTranscribeAzureConfiguration extends Message<AudioTran
|
|
|
12285
12504
|
*/
|
|
12286
12505
|
outputStreamId: number;
|
|
12287
12506
|
/**
|
|
12288
|
-
* The source language to recognise - an RFC 5646/ IETF BCP 47 language tag,
|
|
12289
|
-
* en-GB, de-DE. Supported languages are found at
|
|
12507
|
+
* The source language to recognise - an RFC 5646/ IETF BCP 47 language tag,
|
|
12508
|
+
* eg en-US, en-GB, de-DE. Supported languages are found at
|
|
12290
12509
|
* https://learn.microsoft.com/en-us/azure/ai-services/speech-service/language-support?tabs=stt
|
|
12291
12510
|
*
|
|
12292
12511
|
* @generated from field: string source_language = 3;
|
|
12293
12512
|
*/
|
|
12294
12513
|
sourceLanguage: string;
|
|
12295
12514
|
/**
|
|
12296
|
-
* The target output languages for translation - technically a RFC 5646
|
|
12515
|
+
* The target output languages for translation - technically a RFC 5646
|
|
12516
|
+
* language
|
|
12297
12517
|
* tag but but in most cases omitting region, e.g. en, de, zh-Hant.
|
|
12298
12518
|
*
|
|
12299
12519
|
* Leave this field absent/empty to use the transcription service without
|
|
@@ -12457,6 +12677,36 @@ export declare class AudioTranscribeWhisperConfiguration extends Message<AudioTr
|
|
|
12457
12677
|
* @generated from field: string model = 12;
|
|
12458
12678
|
*/
|
|
12459
12679
|
model: string;
|
|
12680
|
+
/**
|
|
12681
|
+
* Translate (to English)
|
|
12682
|
+
*
|
|
12683
|
+
* @generated from field: bool translate = 13;
|
|
12684
|
+
*/
|
|
12685
|
+
translate: boolean;
|
|
12686
|
+
/**
|
|
12687
|
+
* @generated from field: bool tiny_diarize = 14;
|
|
12688
|
+
*/
|
|
12689
|
+
tinyDiarize: boolean;
|
|
12690
|
+
/**
|
|
12691
|
+
* @generated from field: string initial_prompt = 15;
|
|
12692
|
+
*/
|
|
12693
|
+
initialPrompt: string;
|
|
12694
|
+
/**
|
|
12695
|
+
* @generated from field: norsk.api.common.OptionalBool suppress_non_speech_tokens = 16;
|
|
12696
|
+
*/
|
|
12697
|
+
suppressNonSpeechTokens?: OptionalBool;
|
|
12698
|
+
/**
|
|
12699
|
+
* @generated from field: norsk.api.media.AudioTranscribeWhisperConfiguration.SamplingStrategy sampling_strategy = 17;
|
|
12700
|
+
*/
|
|
12701
|
+
samplingStrategy: AudioTranscribeWhisperConfiguration_SamplingStrategy;
|
|
12702
|
+
/**
|
|
12703
|
+
* @generated from field: norsk.api.common.OptionalInt best_of = 18;
|
|
12704
|
+
*/
|
|
12705
|
+
bestOf?: OptionalInt;
|
|
12706
|
+
/**
|
|
12707
|
+
* @generated from field: norsk.api.common.OptionalInt beam_size = 19;
|
|
12708
|
+
*/
|
|
12709
|
+
beamSize?: OptionalInt;
|
|
12460
12710
|
constructor(data?: PartialMessage<AudioTranscribeWhisperConfiguration>);
|
|
12461
12711
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
12462
12712
|
static readonly typeName = "norsk.api.media.AudioTranscribeWhisperConfiguration";
|
|
@@ -12466,6 +12716,19 @@ export declare class AudioTranscribeWhisperConfiguration extends Message<AudioTr
|
|
|
12466
12716
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioTranscribeWhisperConfiguration;
|
|
12467
12717
|
static equals(a: AudioTranscribeWhisperConfiguration | PlainMessage<AudioTranscribeWhisperConfiguration> | undefined, b: AudioTranscribeWhisperConfiguration | PlainMessage<AudioTranscribeWhisperConfiguration> | undefined): boolean;
|
|
12468
12718
|
}
|
|
12719
|
+
/**
|
|
12720
|
+
* @generated from enum norsk.api.media.AudioTranscribeWhisperConfiguration.SamplingStrategy
|
|
12721
|
+
*/
|
|
12722
|
+
export declare enum AudioTranscribeWhisperConfiguration_SamplingStrategy {
|
|
12723
|
+
/**
|
|
12724
|
+
* @generated from enum value: WHISPER_SAMPLING_GREEDY = 0;
|
|
12725
|
+
*/
|
|
12726
|
+
WHISPER_SAMPLING_GREEDY = 0,
|
|
12727
|
+
/**
|
|
12728
|
+
* @generated from enum value: WHISPER_SAMPLING_BEAM_SEARCH = 1;
|
|
12729
|
+
*/
|
|
12730
|
+
WHISPER_SAMPLING_BEAM_SEARCH = 1
|
|
12731
|
+
}
|
|
12469
12732
|
/**
|
|
12470
12733
|
* @generated from message norsk.api.media.AudioTranscribeWhisperMessage
|
|
12471
12734
|
*/
|
|
@@ -13525,6 +13788,38 @@ export declare class Scte35SegmentationComponent extends Message<Scte35Segmentat
|
|
|
13525
13788
|
* ////////////////////////////////////////////////////////////////////////////
|
|
13526
13789
|
* FrameStore
|
|
13527
13790
|
*
|
|
13791
|
+
* @generated from message norsk.api.media.FrameStoreExpiry
|
|
13792
|
+
*/
|
|
13793
|
+
export declare class FrameStoreExpiry extends Message<FrameStoreExpiry> {
|
|
13794
|
+
/**
|
|
13795
|
+
* @generated from oneof norsk.api.media.FrameStoreExpiry.message
|
|
13796
|
+
*/
|
|
13797
|
+
message: {
|
|
13798
|
+
/**
|
|
13799
|
+
* @generated from field: uint32 by_size = 1;
|
|
13800
|
+
*/
|
|
13801
|
+
value: number;
|
|
13802
|
+
case: "bySize";
|
|
13803
|
+
} | {
|
|
13804
|
+
/**
|
|
13805
|
+
* @generated from field: uint32 by_duration = 2;
|
|
13806
|
+
*/
|
|
13807
|
+
value: number;
|
|
13808
|
+
case: "byDuration";
|
|
13809
|
+
} | {
|
|
13810
|
+
case: undefined;
|
|
13811
|
+
value?: undefined;
|
|
13812
|
+
};
|
|
13813
|
+
constructor(data?: PartialMessage<FrameStoreExpiry>);
|
|
13814
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13815
|
+
static readonly typeName = "norsk.api.media.FrameStoreExpiry";
|
|
13816
|
+
static readonly fields: FieldList;
|
|
13817
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStoreExpiry;
|
|
13818
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStoreExpiry;
|
|
13819
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreExpiry;
|
|
13820
|
+
static equals(a: FrameStoreExpiry | PlainMessage<FrameStoreExpiry> | undefined, b: FrameStoreExpiry | PlainMessage<FrameStoreExpiry> | undefined): boolean;
|
|
13821
|
+
}
|
|
13822
|
+
/**
|
|
13528
13823
|
* @generated from message norsk.api.media.FrameStoreRecorderConfiguration
|
|
13529
13824
|
*/
|
|
13530
13825
|
export declare class FrameStoreRecorderConfiguration extends Message<FrameStoreRecorderConfiguration> {
|
|
@@ -13544,6 +13839,10 @@ export declare class FrameStoreRecorderConfiguration extends Message<FrameStoreR
|
|
|
13544
13839
|
* @generated from field: uint32 chunk_file_duration_seconds = 4;
|
|
13545
13840
|
*/
|
|
13546
13841
|
chunkFileDurationSeconds: number;
|
|
13842
|
+
/**
|
|
13843
|
+
* @generated from field: norsk.api.media.FrameStoreExpiry expiry = 5;
|
|
13844
|
+
*/
|
|
13845
|
+
expiry?: FrameStoreExpiry;
|
|
13547
13846
|
constructor(data?: PartialMessage<FrameStoreRecorderConfiguration>);
|
|
13548
13847
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13549
13848
|
static readonly typeName = "norsk.api.media.FrameStoreRecorderConfiguration";
|
|
@@ -13553,6 +13852,94 @@ export declare class FrameStoreRecorderConfiguration extends Message<FrameStoreR
|
|
|
13553
13852
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreRecorderConfiguration;
|
|
13554
13853
|
static equals(a: FrameStoreRecorderConfiguration | PlainMessage<FrameStoreRecorderConfiguration> | undefined, b: FrameStoreRecorderConfiguration | PlainMessage<FrameStoreRecorderConfiguration> | undefined): boolean;
|
|
13555
13854
|
}
|
|
13855
|
+
/**
|
|
13856
|
+
* @generated from message norsk.api.media.FrameStoreCutRequest
|
|
13857
|
+
*/
|
|
13858
|
+
export declare class FrameStoreCutRequest extends Message<FrameStoreCutRequest> {
|
|
13859
|
+
/**
|
|
13860
|
+
* @generated from field: string id = 1;
|
|
13861
|
+
*/
|
|
13862
|
+
id: string;
|
|
13863
|
+
/**
|
|
13864
|
+
* @generated from field: norsk.api.media.StreamSelection stream_selection = 2;
|
|
13865
|
+
*/
|
|
13866
|
+
streamSelection?: StreamSelection;
|
|
13867
|
+
/**
|
|
13868
|
+
* @generated from field: repeated norsk.api.media.SingleCut cuts = 3;
|
|
13869
|
+
*/
|
|
13870
|
+
cuts: SingleCut[];
|
|
13871
|
+
/**
|
|
13872
|
+
* @generated from field: bool trim_partial_segments = 4;
|
|
13873
|
+
*/
|
|
13874
|
+
trimPartialSegments: boolean;
|
|
13875
|
+
/**
|
|
13876
|
+
* @generated from field: string file_name = 5;
|
|
13877
|
+
*/
|
|
13878
|
+
fileName: string;
|
|
13879
|
+
/**
|
|
13880
|
+
* @generated from field: norsk.api.media.FrameStoreCutRequest.FileFormat file_format = 6;
|
|
13881
|
+
*/
|
|
13882
|
+
fileFormat: FrameStoreCutRequest_FileFormat;
|
|
13883
|
+
constructor(data?: PartialMessage<FrameStoreCutRequest>);
|
|
13884
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13885
|
+
static readonly typeName = "norsk.api.media.FrameStoreCutRequest";
|
|
13886
|
+
static readonly fields: FieldList;
|
|
13887
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStoreCutRequest;
|
|
13888
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStoreCutRequest;
|
|
13889
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreCutRequest;
|
|
13890
|
+
static equals(a: FrameStoreCutRequest | PlainMessage<FrameStoreCutRequest> | undefined, b: FrameStoreCutRequest | PlainMessage<FrameStoreCutRequest> | undefined): boolean;
|
|
13891
|
+
}
|
|
13892
|
+
/**
|
|
13893
|
+
* @generated from enum norsk.api.media.FrameStoreCutRequest.FileFormat
|
|
13894
|
+
*/
|
|
13895
|
+
export declare enum FrameStoreCutRequest_FileFormat {
|
|
13896
|
+
/**
|
|
13897
|
+
* @generated from enum value: CUT_MP4 = 0;
|
|
13898
|
+
*/
|
|
13899
|
+
CUT_MP4 = 0
|
|
13900
|
+
}
|
|
13901
|
+
/**
|
|
13902
|
+
* @generated from message norsk.api.media.FrameStoreCutProgress
|
|
13903
|
+
*/
|
|
13904
|
+
export declare class FrameStoreCutProgress extends Message<FrameStoreCutProgress> {
|
|
13905
|
+
/**
|
|
13906
|
+
* @generated from field: string id = 1;
|
|
13907
|
+
*/
|
|
13908
|
+
id: string;
|
|
13909
|
+
/**
|
|
13910
|
+
* @generated from field: uint32 progress = 2;
|
|
13911
|
+
*/
|
|
13912
|
+
progress: number;
|
|
13913
|
+
constructor(data?: PartialMessage<FrameStoreCutProgress>);
|
|
13914
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13915
|
+
static readonly typeName = "norsk.api.media.FrameStoreCutProgress";
|
|
13916
|
+
static readonly fields: FieldList;
|
|
13917
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStoreCutProgress;
|
|
13918
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStoreCutProgress;
|
|
13919
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreCutProgress;
|
|
13920
|
+
static equals(a: FrameStoreCutProgress | PlainMessage<FrameStoreCutProgress> | undefined, b: FrameStoreCutProgress | PlainMessage<FrameStoreCutProgress> | undefined): boolean;
|
|
13921
|
+
}
|
|
13922
|
+
/**
|
|
13923
|
+
* @generated from message norsk.api.media.FrameStoreCutComplete
|
|
13924
|
+
*/
|
|
13925
|
+
export declare class FrameStoreCutComplete extends Message<FrameStoreCutComplete> {
|
|
13926
|
+
/**
|
|
13927
|
+
* @generated from field: string id = 1;
|
|
13928
|
+
*/
|
|
13929
|
+
id: string;
|
|
13930
|
+
/**
|
|
13931
|
+
* @generated from field: uint64 size = 2;
|
|
13932
|
+
*/
|
|
13933
|
+
size: bigint;
|
|
13934
|
+
constructor(data?: PartialMessage<FrameStoreCutComplete>);
|
|
13935
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13936
|
+
static readonly typeName = "norsk.api.media.FrameStoreCutComplete";
|
|
13937
|
+
static readonly fields: FieldList;
|
|
13938
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStoreCutComplete;
|
|
13939
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStoreCutComplete;
|
|
13940
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStoreCutComplete;
|
|
13941
|
+
static equals(a: FrameStoreCutComplete | PlainMessage<FrameStoreCutComplete> | undefined, b: FrameStoreCutComplete | PlainMessage<FrameStoreCutComplete> | undefined): boolean;
|
|
13942
|
+
}
|
|
13556
13943
|
/**
|
|
13557
13944
|
* @generated from message norsk.api.media.FrameStoreRecorderMessage
|
|
13558
13945
|
*/
|
|
@@ -13572,6 +13959,12 @@ export declare class FrameStoreRecorderMessage extends Message<FrameStoreRecorde
|
|
|
13572
13959
|
*/
|
|
13573
13960
|
value: FrameStoreRecorderConfiguration;
|
|
13574
13961
|
case: "configuration";
|
|
13962
|
+
} | {
|
|
13963
|
+
/**
|
|
13964
|
+
* @generated from field: norsk.api.media.FrameStoreCutRequest cut_request = 3;
|
|
13965
|
+
*/
|
|
13966
|
+
value: FrameStoreCutRequest;
|
|
13967
|
+
case: "cutRequest";
|
|
13575
13968
|
} | {
|
|
13576
13969
|
case: undefined;
|
|
13577
13970
|
value?: undefined;
|
|
@@ -13610,6 +14003,18 @@ export declare class FrameStoreRecorderEvent extends Message<FrameStoreRecorderE
|
|
|
13610
14003
|
*/
|
|
13611
14004
|
value: Context;
|
|
13612
14005
|
case: "inboundContext";
|
|
14006
|
+
} | {
|
|
14007
|
+
/**
|
|
14008
|
+
* @generated from field: norsk.api.media.FrameStoreCutProgress cut_progress = 4;
|
|
14009
|
+
*/
|
|
14010
|
+
value: FrameStoreCutProgress;
|
|
14011
|
+
case: "cutProgress";
|
|
14012
|
+
} | {
|
|
14013
|
+
/**
|
|
14014
|
+
* @generated from field: norsk.api.media.FrameStoreCutComplete cut_complete = 5;
|
|
14015
|
+
*/
|
|
14016
|
+
value: FrameStoreCutComplete;
|
|
14017
|
+
case: "cutComplete";
|
|
13613
14018
|
} | {
|
|
13614
14019
|
case: undefined;
|
|
13615
14020
|
value?: undefined;
|
|
@@ -13648,6 +14053,68 @@ export declare class SingleCut extends Message<SingleCut> {
|
|
|
13648
14053
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SingleCut;
|
|
13649
14054
|
static equals(a: SingleCut | PlainMessage<SingleCut> | undefined, b: SingleCut | PlainMessage<SingleCut> | undefined): boolean;
|
|
13650
14055
|
}
|
|
14056
|
+
/**
|
|
14057
|
+
* @generated from message norsk.api.media.StreamSelection
|
|
14058
|
+
*/
|
|
14059
|
+
export declare class StreamSelection extends Message<StreamSelection> {
|
|
14060
|
+
/**
|
|
14061
|
+
* @generated from oneof norsk.api.media.StreamSelection.stream_selection
|
|
14062
|
+
*/
|
|
14063
|
+
streamSelection: {
|
|
14064
|
+
/**
|
|
14065
|
+
* @generated from field: norsk.api.media.StreamSelection.All all = 1;
|
|
14066
|
+
*/
|
|
14067
|
+
value: StreamSelection_All;
|
|
14068
|
+
case: "all";
|
|
14069
|
+
} | {
|
|
14070
|
+
/**
|
|
14071
|
+
* @generated from field: norsk.api.media.StreamSelection.Subset subset = 2;
|
|
14072
|
+
*/
|
|
14073
|
+
value: StreamSelection_Subset;
|
|
14074
|
+
case: "subset";
|
|
14075
|
+
} | {
|
|
14076
|
+
case: undefined;
|
|
14077
|
+
value?: undefined;
|
|
14078
|
+
};
|
|
14079
|
+
constructor(data?: PartialMessage<StreamSelection>);
|
|
14080
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
14081
|
+
static readonly typeName = "norsk.api.media.StreamSelection";
|
|
14082
|
+
static readonly fields: FieldList;
|
|
14083
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSelection;
|
|
14084
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSelection;
|
|
14085
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSelection;
|
|
14086
|
+
static equals(a: StreamSelection | PlainMessage<StreamSelection> | undefined, b: StreamSelection | PlainMessage<StreamSelection> | undefined): boolean;
|
|
14087
|
+
}
|
|
14088
|
+
/**
|
|
14089
|
+
* @generated from message norsk.api.media.StreamSelection.All
|
|
14090
|
+
*/
|
|
14091
|
+
export declare class StreamSelection_All extends Message<StreamSelection_All> {
|
|
14092
|
+
constructor(data?: PartialMessage<StreamSelection_All>);
|
|
14093
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
14094
|
+
static readonly typeName = "norsk.api.media.StreamSelection.All";
|
|
14095
|
+
static readonly fields: FieldList;
|
|
14096
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSelection_All;
|
|
14097
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSelection_All;
|
|
14098
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSelection_All;
|
|
14099
|
+
static equals(a: StreamSelection_All | PlainMessage<StreamSelection_All> | undefined, b: StreamSelection_All | PlainMessage<StreamSelection_All> | undefined): boolean;
|
|
14100
|
+
}
|
|
14101
|
+
/**
|
|
14102
|
+
* @generated from message norsk.api.media.StreamSelection.Subset
|
|
14103
|
+
*/
|
|
14104
|
+
export declare class StreamSelection_Subset extends Message<StreamSelection_Subset> {
|
|
14105
|
+
/**
|
|
14106
|
+
* @generated from field: repeated norsk.api.media.StreamKey stream_list = 1;
|
|
14107
|
+
*/
|
|
14108
|
+
streamList: StreamKey[];
|
|
14109
|
+
constructor(data?: PartialMessage<StreamSelection_Subset>);
|
|
14110
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
14111
|
+
static readonly typeName = "norsk.api.media.StreamSelection.Subset";
|
|
14112
|
+
static readonly fields: FieldList;
|
|
14113
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSelection_Subset;
|
|
14114
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSelection_Subset;
|
|
14115
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSelection_Subset;
|
|
14116
|
+
static equals(a: StreamSelection_Subset | PlainMessage<StreamSelection_Subset> | undefined, b: StreamSelection_Subset | PlainMessage<StreamSelection_Subset> | undefined): boolean;
|
|
14117
|
+
}
|
|
13651
14118
|
/**
|
|
13652
14119
|
* @generated from message norsk.api.media.FrameStorePlayerConfiguration
|
|
13653
14120
|
*/
|
|
@@ -13669,30 +14136,15 @@ export declare class FrameStorePlayerConfiguration extends Message<FrameStorePla
|
|
|
13669
14136
|
*/
|
|
13670
14137
|
statsSampling?: StreamStatisticsSampling;
|
|
13671
14138
|
/**
|
|
13672
|
-
* @generated from
|
|
14139
|
+
* @generated from field: norsk.api.media.StreamSelection stream_selection = 5;
|
|
13673
14140
|
*/
|
|
13674
|
-
streamSelection
|
|
13675
|
-
/**
|
|
13676
|
-
* @generated from field: norsk.api.media.FrameStorePlayerConfiguration.All all = 5;
|
|
13677
|
-
*/
|
|
13678
|
-
value: FrameStorePlayerConfiguration_All;
|
|
13679
|
-
case: "all";
|
|
13680
|
-
} | {
|
|
13681
|
-
/**
|
|
13682
|
-
* @generated from field: norsk.api.media.FrameStorePlayerConfiguration.Subset subset = 6;
|
|
13683
|
-
*/
|
|
13684
|
-
value: FrameStorePlayerConfiguration_Subset;
|
|
13685
|
-
case: "subset";
|
|
13686
|
-
} | {
|
|
13687
|
-
case: undefined;
|
|
13688
|
-
value?: undefined;
|
|
13689
|
-
};
|
|
14141
|
+
streamSelection?: StreamSelection;
|
|
13690
14142
|
/**
|
|
13691
|
-
* @generated from field: repeated norsk.api.media.SingleCut cuts =
|
|
14143
|
+
* @generated from field: repeated norsk.api.media.SingleCut cuts = 6;
|
|
13692
14144
|
*/
|
|
13693
14145
|
cuts: SingleCut[];
|
|
13694
14146
|
/**
|
|
13695
|
-
* @generated from field: bool trim_partial_segments =
|
|
14147
|
+
* @generated from field: bool trim_partial_segments = 7;
|
|
13696
14148
|
*/
|
|
13697
14149
|
trimPartialSegments: boolean;
|
|
13698
14150
|
constructor(data?: PartialMessage<FrameStorePlayerConfiguration>);
|
|
@@ -13704,36 +14156,6 @@ export declare class FrameStorePlayerConfiguration extends Message<FrameStorePla
|
|
|
13704
14156
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration;
|
|
13705
14157
|
static equals(a: FrameStorePlayerConfiguration | PlainMessage<FrameStorePlayerConfiguration> | undefined, b: FrameStorePlayerConfiguration | PlainMessage<FrameStorePlayerConfiguration> | undefined): boolean;
|
|
13706
14158
|
}
|
|
13707
|
-
/**
|
|
13708
|
-
* @generated from message norsk.api.media.FrameStorePlayerConfiguration.All
|
|
13709
|
-
*/
|
|
13710
|
-
export declare class FrameStorePlayerConfiguration_All extends Message<FrameStorePlayerConfiguration_All> {
|
|
13711
|
-
constructor(data?: PartialMessage<FrameStorePlayerConfiguration_All>);
|
|
13712
|
-
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13713
|
-
static readonly typeName = "norsk.api.media.FrameStorePlayerConfiguration.All";
|
|
13714
|
-
static readonly fields: FieldList;
|
|
13715
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStorePlayerConfiguration_All;
|
|
13716
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_All;
|
|
13717
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_All;
|
|
13718
|
-
static equals(a: FrameStorePlayerConfiguration_All | PlainMessage<FrameStorePlayerConfiguration_All> | undefined, b: FrameStorePlayerConfiguration_All | PlainMessage<FrameStorePlayerConfiguration_All> | undefined): boolean;
|
|
13719
|
-
}
|
|
13720
|
-
/**
|
|
13721
|
-
* @generated from message norsk.api.media.FrameStorePlayerConfiguration.Subset
|
|
13722
|
-
*/
|
|
13723
|
-
export declare class FrameStorePlayerConfiguration_Subset extends Message<FrameStorePlayerConfiguration_Subset> {
|
|
13724
|
-
/**
|
|
13725
|
-
* @generated from field: repeated norsk.api.media.StreamKey stream_list = 1;
|
|
13726
|
-
*/
|
|
13727
|
-
streamList: StreamKey[];
|
|
13728
|
-
constructor(data?: PartialMessage<FrameStorePlayerConfiguration_Subset>);
|
|
13729
|
-
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
13730
|
-
static readonly typeName = "norsk.api.media.FrameStorePlayerConfiguration.Subset";
|
|
13731
|
-
static readonly fields: FieldList;
|
|
13732
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FrameStorePlayerConfiguration_Subset;
|
|
13733
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_Subset;
|
|
13734
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FrameStorePlayerConfiguration_Subset;
|
|
13735
|
-
static equals(a: FrameStorePlayerConfiguration_Subset | PlainMessage<FrameStorePlayerConfiguration_Subset> | undefined, b: FrameStorePlayerConfiguration_Subset | PlainMessage<FrameStorePlayerConfiguration_Subset> | undefined): boolean;
|
|
13736
|
-
}
|
|
13737
14159
|
/**
|
|
13738
14160
|
* @generated from message norsk.api.media.FrameStorePlayerMessage
|
|
13739
14161
|
*/
|