@norskvideo/norsk-api 0.0.329 → 1.0.331
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 +572 -572
- package/lib/media_grpc_pb.js +754 -649
- package/lib/media_pb.d.ts +1101 -1092
- package/lib/media_pb.js +1258 -1248
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +1604 -1597
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -371,18 +371,26 @@ export declare enum SampleRate {
|
|
|
371
371
|
*/
|
|
372
372
|
export declare enum SampleFormat {
|
|
373
373
|
/**
|
|
374
|
+
* Signed 16 bits, non-planar
|
|
375
|
+
*
|
|
374
376
|
* @generated from enum value: S16 = 0;
|
|
375
377
|
*/
|
|
376
378
|
S16 = 0,
|
|
377
379
|
/**
|
|
380
|
+
* Signed 16 bits, planar
|
|
381
|
+
*
|
|
378
382
|
* @generated from enum value: S16P = 1;
|
|
379
383
|
*/
|
|
380
384
|
S16P = 1,
|
|
381
385
|
/**
|
|
386
|
+
* 32bit floating point, non-planar
|
|
387
|
+
*
|
|
382
388
|
* @generated from enum value: FLT = 2;
|
|
383
389
|
*/
|
|
384
390
|
FLT = 2,
|
|
385
391
|
/**
|
|
392
|
+
* 32bit floating point, planar
|
|
393
|
+
*
|
|
386
394
|
* @generated from enum value: FLTP = 3;
|
|
387
395
|
*/
|
|
388
396
|
FLTP = 3
|
|
@@ -1717,11 +1725,11 @@ export declare class StreamMetadata_SubtitleMetadata extends Message<StreamMetad
|
|
|
1717
1725
|
}
|
|
1718
1726
|
/**
|
|
1719
1727
|
* *
|
|
1720
|
-
* The Context message is sent from Norsk
|
|
1728
|
+
* The Context message is sent from Norsk in response to a
|
|
1721
1729
|
* change to either the Media Node's inbound or output set of streams.
|
|
1722
|
-
* Once received, your code
|
|
1723
|
-
* with a call to
|
|
1724
|
-
* passing in the
|
|
1730
|
+
* Once received, your code **must** acknowledge the context change
|
|
1731
|
+
* with a call to `Media.UnblockCall`,
|
|
1732
|
+
* passing in the `blockingCallRef`; note that if using the
|
|
1725
1733
|
* JavaScript SDK then this is automatically handled.
|
|
1726
1734
|
*
|
|
1727
1735
|
* @generated from message norsk.api.media.Context
|
|
@@ -1872,33 +1880,33 @@ export declare class TimestampSourceProgramNudge extends Message<TimestampSource
|
|
|
1872
1880
|
* and number of keyframes, measured over configurable sampling windows and
|
|
1873
1881
|
* sent to the client.
|
|
1874
1882
|
*
|
|
1875
|
-
* These are reported on
|
|
1876
|
-
*
|
|
1883
|
+
* These are reported on most input and output media nodes and also for the
|
|
1884
|
+
* dedicated StreamStatistics node.
|
|
1877
1885
|
*
|
|
1878
|
-
* @generated from message norsk.api.media.
|
|
1886
|
+
* @generated from message norsk.api.media.MultiStreamStatistics
|
|
1879
1887
|
*/
|
|
1880
|
-
export declare class
|
|
1888
|
+
export declare class MultiStreamStatistics extends Message<MultiStreamStatistics> {
|
|
1881
1889
|
/**
|
|
1882
1890
|
* @generated from field: double sample_size_seconds = 1;
|
|
1883
1891
|
*/
|
|
1884
1892
|
sampleSizeSeconds: number;
|
|
1885
1893
|
/**
|
|
1886
|
-
* @generated from field: repeated norsk.api.media.
|
|
1894
|
+
* @generated from field: repeated norsk.api.media.MultiStreamStatistics.SingleStreamStatistics all_streams = 2;
|
|
1887
1895
|
*/
|
|
1888
|
-
allStreams:
|
|
1889
|
-
constructor(data?: PartialMessage<
|
|
1896
|
+
allStreams: MultiStreamStatistics_SingleStreamStatistics[];
|
|
1897
|
+
constructor(data?: PartialMessage<MultiStreamStatistics>);
|
|
1890
1898
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1891
|
-
static readonly typeName = "norsk.api.media.
|
|
1899
|
+
static readonly typeName = "norsk.api.media.MultiStreamStatistics";
|
|
1892
1900
|
static readonly fields: FieldList;
|
|
1893
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1894
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1895
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1896
|
-
static equals(a:
|
|
1901
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MultiStreamStatistics;
|
|
1902
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MultiStreamStatistics;
|
|
1903
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MultiStreamStatistics;
|
|
1904
|
+
static equals(a: MultiStreamStatistics | PlainMessage<MultiStreamStatistics> | undefined, b: MultiStreamStatistics | PlainMessage<MultiStreamStatistics> | undefined): boolean;
|
|
1897
1905
|
}
|
|
1898
1906
|
/**
|
|
1899
|
-
* @generated from message norsk.api.media.
|
|
1907
|
+
* @generated from message norsk.api.media.MultiStreamStatistics.SingleStreamStatistics
|
|
1900
1908
|
*/
|
|
1901
|
-
export declare class
|
|
1909
|
+
export declare class MultiStreamStatistics_SingleStreamStatistics extends Message<MultiStreamStatistics_SingleStreamStatistics> {
|
|
1902
1910
|
/**
|
|
1903
1911
|
* @generated from field: norsk.api.media.StreamKey stream_key = 1;
|
|
1904
1912
|
*/
|
|
@@ -1915,31 +1923,31 @@ export declare class MultiStreamStats_SingleStreamStats extends Message<MultiStr
|
|
|
1915
1923
|
* @generated from field: int32 key_frames_for_sample = 5;
|
|
1916
1924
|
*/
|
|
1917
1925
|
keyFramesForSample: number;
|
|
1918
|
-
constructor(data?: PartialMessage<
|
|
1926
|
+
constructor(data?: PartialMessage<MultiStreamStatistics_SingleStreamStatistics>);
|
|
1919
1927
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1920
|
-
static readonly typeName = "norsk.api.media.
|
|
1928
|
+
static readonly typeName = "norsk.api.media.MultiStreamStatistics.SingleStreamStatistics";
|
|
1921
1929
|
static readonly fields: FieldList;
|
|
1922
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1923
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1924
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1925
|
-
static equals(a:
|
|
1930
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MultiStreamStatistics_SingleStreamStatistics;
|
|
1931
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MultiStreamStatistics_SingleStreamStatistics;
|
|
1932
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MultiStreamStatistics_SingleStreamStatistics;
|
|
1933
|
+
static equals(a: MultiStreamStatistics_SingleStreamStatistics | PlainMessage<MultiStreamStatistics_SingleStreamStatistics> | undefined, b: MultiStreamStatistics_SingleStreamStatistics | PlainMessage<MultiStreamStatistics_SingleStreamStatistics> | undefined): boolean;
|
|
1926
1934
|
}
|
|
1927
1935
|
/**
|
|
1928
|
-
* @generated from message norsk.api.media.
|
|
1936
|
+
* @generated from message norsk.api.media.StreamStatisticsSampling
|
|
1929
1937
|
*/
|
|
1930
|
-
export declare class
|
|
1938
|
+
export declare class StreamStatisticsSampling extends Message<StreamStatisticsSampling> {
|
|
1931
1939
|
/**
|
|
1932
1940
|
* @generated from field: repeated double sample_intervals_seconds = 3;
|
|
1933
1941
|
*/
|
|
1934
1942
|
sampleIntervalsSeconds: number[];
|
|
1935
|
-
constructor(data?: PartialMessage<
|
|
1943
|
+
constructor(data?: PartialMessage<StreamStatisticsSampling>);
|
|
1936
1944
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1937
|
-
static readonly typeName = "norsk.api.media.
|
|
1945
|
+
static readonly typeName = "norsk.api.media.StreamStatisticsSampling";
|
|
1938
1946
|
static readonly fields: FieldList;
|
|
1939
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1940
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1941
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1942
|
-
static equals(a:
|
|
1947
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamStatisticsSampling;
|
|
1948
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamStatisticsSampling;
|
|
1949
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamStatisticsSampling;
|
|
1950
|
+
static equals(a: StreamStatisticsSampling | PlainMessage<StreamStatisticsSampling> | undefined, b: StreamStatisticsSampling | PlainMessage<StreamStatisticsSampling> | undefined): boolean;
|
|
1943
1951
|
}
|
|
1944
1952
|
/**
|
|
1945
1953
|
* @generated from message norsk.api.media.ConnectionId
|
|
@@ -1963,9 +1971,9 @@ export declare class ConnectionId extends Message<ConnectionId> {
|
|
|
1963
1971
|
* Configure an RTMP Input Media Node. Should
|
|
1964
1972
|
* be sent once, after the node has been created.
|
|
1965
1973
|
*
|
|
1966
|
-
* @generated from message norsk.api.media.
|
|
1974
|
+
* @generated from message norsk.api.media.RtmpServerInputConfiguration
|
|
1967
1975
|
*/
|
|
1968
|
-
export declare class
|
|
1976
|
+
export declare class RtmpServerInputConfiguration extends Message<RtmpServerInputConfiguration> {
|
|
1969
1977
|
/**
|
|
1970
1978
|
* The Media Node Id
|
|
1971
1979
|
*
|
|
@@ -1979,17 +1987,17 @@ export declare class RtmpInputConfiguration extends Message<RtmpInputConfigurati
|
|
|
1979
1987
|
*/
|
|
1980
1988
|
port: number;
|
|
1981
1989
|
/**
|
|
1982
|
-
* @generated from field: norsk.api.media.
|
|
1990
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
1983
1991
|
*/
|
|
1984
|
-
statsSampling?:
|
|
1985
|
-
constructor(data?: PartialMessage<
|
|
1992
|
+
statsSampling?: StreamStatisticsSampling;
|
|
1993
|
+
constructor(data?: PartialMessage<RtmpServerInputConfiguration>);
|
|
1986
1994
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1987
|
-
static readonly typeName = "norsk.api.media.
|
|
1995
|
+
static readonly typeName = "norsk.api.media.RtmpServerInputConfiguration";
|
|
1988
1996
|
static readonly fields: FieldList;
|
|
1989
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1990
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1991
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1992
|
-
static equals(a:
|
|
1997
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpServerInputConfiguration;
|
|
1998
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpServerInputConfiguration;
|
|
1999
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpServerInputConfiguration;
|
|
2000
|
+
static equals(a: RtmpServerInputConfiguration | PlainMessage<RtmpServerInputConfiguration> | undefined, b: RtmpServerInputConfiguration | PlainMessage<RtmpServerInputConfiguration> | undefined): boolean;
|
|
1993
2001
|
}
|
|
1994
2002
|
/**
|
|
1995
2003
|
* *
|
|
@@ -2106,17 +2114,17 @@ export declare class RtmpStreamReject extends Message<RtmpStreamReject> {
|
|
|
2106
2114
|
* *
|
|
2107
2115
|
* Messages that your code can send to the Norsk RTMP Input Media Node.
|
|
2108
2116
|
*
|
|
2109
|
-
* @generated from message norsk.api.media.
|
|
2117
|
+
* @generated from message norsk.api.media.RtmpServerInputMessage
|
|
2110
2118
|
*/
|
|
2111
|
-
export declare class
|
|
2119
|
+
export declare class RtmpServerInputMessage extends Message<RtmpServerInputMessage> {
|
|
2112
2120
|
/**
|
|
2113
|
-
* @generated from oneof norsk.api.media.
|
|
2121
|
+
* @generated from oneof norsk.api.media.RtmpServerInputMessage.message
|
|
2114
2122
|
*/
|
|
2115
2123
|
message: {
|
|
2116
2124
|
/**
|
|
2117
|
-
* @generated from field: norsk.api.media.
|
|
2125
|
+
* @generated from field: norsk.api.media.RtmpServerInputConfiguration initial_config = 1;
|
|
2118
2126
|
*/
|
|
2119
|
-
value:
|
|
2127
|
+
value: RtmpServerInputConfiguration;
|
|
2120
2128
|
case: "initialConfig";
|
|
2121
2129
|
} | {
|
|
2122
2130
|
/**
|
|
@@ -2152,20 +2160,20 @@ export declare class RtmpInputMessage extends Message<RtmpInputMessage> {
|
|
|
2152
2160
|
case: undefined;
|
|
2153
2161
|
value?: undefined;
|
|
2154
2162
|
};
|
|
2155
|
-
constructor(data?: PartialMessage<
|
|
2163
|
+
constructor(data?: PartialMessage<RtmpServerInputMessage>);
|
|
2156
2164
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2157
|
-
static readonly typeName = "norsk.api.media.
|
|
2165
|
+
static readonly typeName = "norsk.api.media.RtmpServerInputMessage";
|
|
2158
2166
|
static readonly fields: FieldList;
|
|
2159
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2160
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2161
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2162
|
-
static equals(a:
|
|
2167
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpServerInputMessage;
|
|
2168
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpServerInputMessage;
|
|
2169
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpServerInputMessage;
|
|
2170
|
+
static equals(a: RtmpServerInputMessage | PlainMessage<RtmpServerInputMessage> | undefined, b: RtmpServerInputMessage | PlainMessage<RtmpServerInputMessage> | undefined): boolean;
|
|
2163
2171
|
}
|
|
2164
2172
|
/**
|
|
2165
2173
|
* *
|
|
2166
2174
|
* Sent to your code when an inbound remote connection is received. Your code
|
|
2167
|
-
* must reply with either an
|
|
2168
|
-
*
|
|
2175
|
+
* must reply with either an `RtmpConnectionAccept` or an
|
|
2176
|
+
* `RtmpConnectionReject`.
|
|
2169
2177
|
*
|
|
2170
2178
|
* @generated from message norsk.api.media.RtmpConnection
|
|
2171
2179
|
*/
|
|
@@ -2202,30 +2210,30 @@ export declare class RtmpConnection extends Message<RtmpConnection> {
|
|
|
2202
2210
|
* Sent to your code when an active RTMP connection changes state.
|
|
2203
2211
|
* Currently, this is only to indicate that the remote client has disconnected.
|
|
2204
2212
|
*
|
|
2205
|
-
* @generated from message norsk.api.media.
|
|
2213
|
+
* @generated from message norsk.api.media.RtmpServerInputStatus
|
|
2206
2214
|
*/
|
|
2207
|
-
export declare class
|
|
2215
|
+
export declare class RtmpServerInputStatus extends Message<RtmpServerInputStatus> {
|
|
2208
2216
|
/**
|
|
2209
2217
|
* @generated from field: norsk.api.media.ConnectionId connection_id = 1;
|
|
2210
2218
|
*/
|
|
2211
2219
|
connectionId?: ConnectionId;
|
|
2212
2220
|
/**
|
|
2213
|
-
* @generated from field: norsk.api.media.
|
|
2221
|
+
* @generated from field: norsk.api.media.RtmpServerInputStatus.State state = 2;
|
|
2214
2222
|
*/
|
|
2215
|
-
state:
|
|
2216
|
-
constructor(data?: PartialMessage<
|
|
2223
|
+
state: RtmpServerInputStatus_State;
|
|
2224
|
+
constructor(data?: PartialMessage<RtmpServerInputStatus>);
|
|
2217
2225
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2218
|
-
static readonly typeName = "norsk.api.media.
|
|
2226
|
+
static readonly typeName = "norsk.api.media.RtmpServerInputStatus";
|
|
2219
2227
|
static readonly fields: FieldList;
|
|
2220
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2221
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2222
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2223
|
-
static equals(a:
|
|
2228
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpServerInputStatus;
|
|
2229
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpServerInputStatus;
|
|
2230
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpServerInputStatus;
|
|
2231
|
+
static equals(a: RtmpServerInputStatus | PlainMessage<RtmpServerInputStatus> | undefined, b: RtmpServerInputStatus | PlainMessage<RtmpServerInputStatus> | undefined): boolean;
|
|
2224
2232
|
}
|
|
2225
2233
|
/**
|
|
2226
|
-
* @generated from enum norsk.api.media.
|
|
2234
|
+
* @generated from enum norsk.api.media.RtmpServerInputStatus.State
|
|
2227
2235
|
*/
|
|
2228
|
-
export declare enum
|
|
2236
|
+
export declare enum RtmpServerInputStatus_State {
|
|
2229
2237
|
/**
|
|
2230
2238
|
* @generated from enum value: DISCONNECTED = 0;
|
|
2231
2239
|
*/
|
|
@@ -2234,8 +2242,8 @@ export declare enum RtmpInputStatus_State {
|
|
|
2234
2242
|
/**
|
|
2235
2243
|
* *
|
|
2236
2244
|
* Sent to your code when an inbound remote stream is received on an
|
|
2237
|
-
* active connection. You must reply with either an
|
|
2238
|
-
* or an
|
|
2245
|
+
* active connection. You must reply with either an `RtmpStreamAccept`
|
|
2246
|
+
* or an `RtmpStreamReject`.
|
|
2239
2247
|
*
|
|
2240
2248
|
* @generated from message norsk.api.media.RtmpOnStream
|
|
2241
2249
|
*/
|
|
@@ -2278,11 +2286,11 @@ export declare class RtmpOnStream extends Message<RtmpOnStream> {
|
|
|
2278
2286
|
* Messages that Norsk can send to your code in response to various RTMP
|
|
2279
2287
|
* events.
|
|
2280
2288
|
*
|
|
2281
|
-
* @generated from message norsk.api.media.
|
|
2289
|
+
* @generated from message norsk.api.media.RtmpServerInputEvent
|
|
2282
2290
|
*/
|
|
2283
|
-
export declare class
|
|
2291
|
+
export declare class RtmpServerInputEvent extends Message<RtmpServerInputEvent> {
|
|
2284
2292
|
/**
|
|
2285
|
-
* @generated from oneof norsk.api.media.
|
|
2293
|
+
* @generated from oneof norsk.api.media.RtmpServerInputEvent.message
|
|
2286
2294
|
*/
|
|
2287
2295
|
message: {
|
|
2288
2296
|
/**
|
|
@@ -2310,28 +2318,28 @@ export declare class RtmpInputEvent extends Message<RtmpInputEvent> {
|
|
|
2310
2318
|
case: "outboundContext";
|
|
2311
2319
|
} | {
|
|
2312
2320
|
/**
|
|
2313
|
-
* @generated from field: norsk.api.media.
|
|
2321
|
+
* @generated from field: norsk.api.media.RtmpServerInputStatus status = 5;
|
|
2314
2322
|
*/
|
|
2315
|
-
value:
|
|
2323
|
+
value: RtmpServerInputStatus;
|
|
2316
2324
|
case: "status";
|
|
2317
2325
|
} | {
|
|
2318
2326
|
/**
|
|
2319
|
-
* @generated from field: norsk.api.media.
|
|
2327
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 6;
|
|
2320
2328
|
*/
|
|
2321
|
-
value:
|
|
2322
|
-
case: "
|
|
2329
|
+
value: MultiStreamStatistics;
|
|
2330
|
+
case: "streamStatistics";
|
|
2323
2331
|
} | {
|
|
2324
2332
|
case: undefined;
|
|
2325
2333
|
value?: undefined;
|
|
2326
2334
|
};
|
|
2327
|
-
constructor(data?: PartialMessage<
|
|
2335
|
+
constructor(data?: PartialMessage<RtmpServerInputEvent>);
|
|
2328
2336
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2329
|
-
static readonly typeName = "norsk.api.media.
|
|
2337
|
+
static readonly typeName = "norsk.api.media.RtmpServerInputEvent";
|
|
2330
2338
|
static readonly fields: FieldList;
|
|
2331
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2332
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2333
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2334
|
-
static equals(a:
|
|
2339
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RtmpServerInputEvent;
|
|
2340
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RtmpServerInputEvent;
|
|
2341
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RtmpServerInputEvent;
|
|
2342
|
+
static equals(a: RtmpServerInputEvent | PlainMessage<RtmpServerInputEvent> | undefined, b: RtmpServerInputEvent | PlainMessage<RtmpServerInputEvent> | undefined): boolean;
|
|
2335
2343
|
}
|
|
2336
2344
|
/**
|
|
2337
2345
|
* ////////////////////////////////////////////////////////////////////////////
|
|
@@ -2508,10 +2516,10 @@ export declare class TsInputEvent extends Message<TsInputEvent> {
|
|
|
2508
2516
|
case: "outboundContext";
|
|
2509
2517
|
} | {
|
|
2510
2518
|
/**
|
|
2511
|
-
* @generated from field: norsk.api.media.
|
|
2519
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
|
|
2512
2520
|
*/
|
|
2513
|
-
value:
|
|
2514
|
-
case: "
|
|
2521
|
+
value: MultiStreamStatistics;
|
|
2522
|
+
case: "streamStatistics";
|
|
2515
2523
|
} | {
|
|
2516
2524
|
case: undefined;
|
|
2517
2525
|
value?: undefined;
|
|
@@ -2526,9 +2534,9 @@ export declare class TsInputEvent extends Message<TsInputEvent> {
|
|
|
2526
2534
|
static equals(a: TsInputEvent | PlainMessage<TsInputEvent> | undefined, b: TsInputEvent | PlainMessage<TsInputEvent> | undefined): boolean;
|
|
2527
2535
|
}
|
|
2528
2536
|
/**
|
|
2529
|
-
* @generated from message norsk.api.media.
|
|
2537
|
+
* @generated from message norsk.api.media.FileTsInputConfiguration
|
|
2530
2538
|
*/
|
|
2531
|
-
export declare class
|
|
2539
|
+
export declare class FileTsInputConfiguration extends Message<FileTsInputConfiguration> {
|
|
2532
2540
|
/**
|
|
2533
2541
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
2534
2542
|
*/
|
|
@@ -2542,30 +2550,30 @@ export declare class TsFileInputConfiguration extends Message<TsFileInputConfigu
|
|
|
2542
2550
|
*/
|
|
2543
2551
|
filename: string;
|
|
2544
2552
|
/**
|
|
2545
|
-
* @generated from field: norsk.api.media.
|
|
2553
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
2546
2554
|
*/
|
|
2547
|
-
statsSampling?:
|
|
2548
|
-
constructor(data?: PartialMessage<
|
|
2555
|
+
statsSampling?: StreamStatisticsSampling;
|
|
2556
|
+
constructor(data?: PartialMessage<FileTsInputConfiguration>);
|
|
2549
2557
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2550
|
-
static readonly typeName = "norsk.api.media.
|
|
2558
|
+
static readonly typeName = "norsk.api.media.FileTsInputConfiguration";
|
|
2551
2559
|
static readonly fields: FieldList;
|
|
2552
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2553
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2554
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2555
|
-
static equals(a:
|
|
2560
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputConfiguration;
|
|
2561
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsInputConfiguration;
|
|
2562
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputConfiguration;
|
|
2563
|
+
static equals(a: FileTsInputConfiguration | PlainMessage<FileTsInputConfiguration> | undefined, b: FileTsInputConfiguration | PlainMessage<FileTsInputConfiguration> | undefined): boolean;
|
|
2556
2564
|
}
|
|
2557
2565
|
/**
|
|
2558
|
-
* @generated from message norsk.api.media.
|
|
2566
|
+
* @generated from message norsk.api.media.FileTsInputMessage
|
|
2559
2567
|
*/
|
|
2560
|
-
export declare class
|
|
2568
|
+
export declare class FileTsInputMessage extends Message<FileTsInputMessage> {
|
|
2561
2569
|
/**
|
|
2562
|
-
* @generated from oneof norsk.api.media.
|
|
2570
|
+
* @generated from oneof norsk.api.media.FileTsInputMessage.message
|
|
2563
2571
|
*/
|
|
2564
2572
|
message: {
|
|
2565
2573
|
/**
|
|
2566
|
-
* @generated from field: norsk.api.media.
|
|
2574
|
+
* @generated from field: norsk.api.media.FileTsInputConfiguration initial_config = 1;
|
|
2567
2575
|
*/
|
|
2568
|
-
value:
|
|
2576
|
+
value: FileTsInputConfiguration;
|
|
2569
2577
|
case: "initialConfig";
|
|
2570
2578
|
} | {
|
|
2571
2579
|
/**
|
|
@@ -2577,45 +2585,45 @@ export declare class TsFileInputMessage extends Message<TsFileInputMessage> {
|
|
|
2577
2585
|
case: undefined;
|
|
2578
2586
|
value?: undefined;
|
|
2579
2587
|
};
|
|
2580
|
-
constructor(data?: PartialMessage<
|
|
2588
|
+
constructor(data?: PartialMessage<FileTsInputMessage>);
|
|
2581
2589
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2582
|
-
static readonly typeName = "norsk.api.media.
|
|
2590
|
+
static readonly typeName = "norsk.api.media.FileTsInputMessage";
|
|
2583
2591
|
static readonly fields: FieldList;
|
|
2584
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2585
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2586
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2587
|
-
static equals(a:
|
|
2592
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputMessage;
|
|
2593
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsInputMessage;
|
|
2594
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputMessage;
|
|
2595
|
+
static equals(a: FileTsInputMessage | PlainMessage<FileTsInputMessage> | undefined, b: FileTsInputMessage | PlainMessage<FileTsInputMessage> | undefined): boolean;
|
|
2588
2596
|
}
|
|
2589
2597
|
/**
|
|
2590
|
-
* @generated from message norsk.api.media.
|
|
2598
|
+
* @generated from message norsk.api.media.FileTsInputEvent
|
|
2591
2599
|
*/
|
|
2592
|
-
export declare class
|
|
2600
|
+
export declare class FileTsInputEvent extends Message<FileTsInputEvent> {
|
|
2593
2601
|
/**
|
|
2594
|
-
* @generated from oneof norsk.api.media.
|
|
2602
|
+
* @generated from oneof norsk.api.media.FileTsInputEvent.message
|
|
2595
2603
|
*/
|
|
2596
2604
|
message: {
|
|
2597
2605
|
/**
|
|
2598
|
-
* @generated from field: norsk.api.media.
|
|
2606
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 1;
|
|
2599
2607
|
*/
|
|
2600
|
-
value:
|
|
2601
|
-
case: "
|
|
2608
|
+
value: MultiStreamStatistics;
|
|
2609
|
+
case: "streamStatistics";
|
|
2602
2610
|
} | {
|
|
2603
2611
|
case: undefined;
|
|
2604
2612
|
value?: undefined;
|
|
2605
2613
|
};
|
|
2606
|
-
constructor(data?: PartialMessage<
|
|
2614
|
+
constructor(data?: PartialMessage<FileTsInputEvent>);
|
|
2607
2615
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2608
|
-
static readonly typeName = "norsk.api.media.
|
|
2616
|
+
static readonly typeName = "norsk.api.media.FileTsInputEvent";
|
|
2609
2617
|
static readonly fields: FieldList;
|
|
2610
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2611
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2612
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2613
|
-
static equals(a:
|
|
2618
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputEvent;
|
|
2619
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsInputEvent;
|
|
2620
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputEvent;
|
|
2621
|
+
static equals(a: FileTsInputEvent | PlainMessage<FileTsInputEvent> | undefined, b: FileTsInputEvent | PlainMessage<FileTsInputEvent> | undefined): boolean;
|
|
2614
2622
|
}
|
|
2615
2623
|
/**
|
|
2616
|
-
* @generated from message norsk.api.media.
|
|
2624
|
+
* @generated from message norsk.api.media.FileWebVttInputConfiguration
|
|
2617
2625
|
*/
|
|
2618
|
-
export declare class
|
|
2626
|
+
export declare class FileWebVttInputConfiguration extends Message<FileWebVttInputConfiguration> {
|
|
2619
2627
|
/**
|
|
2620
2628
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
2621
2629
|
*/
|
|
@@ -2628,21 +2636,21 @@ export declare class WebVttFileInputConfiguration extends Message<WebVttFileInpu
|
|
|
2628
2636
|
* @generated from field: string filename = 3;
|
|
2629
2637
|
*/
|
|
2630
2638
|
filename: string;
|
|
2631
|
-
constructor(data?: PartialMessage<
|
|
2639
|
+
constructor(data?: PartialMessage<FileWebVttInputConfiguration>);
|
|
2632
2640
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2633
|
-
static readonly typeName = "norsk.api.media.
|
|
2641
|
+
static readonly typeName = "norsk.api.media.FileWebVttInputConfiguration";
|
|
2634
2642
|
static readonly fields: FieldList;
|
|
2635
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2636
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2637
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2638
|
-
static equals(a:
|
|
2643
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWebVttInputConfiguration;
|
|
2644
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWebVttInputConfiguration;
|
|
2645
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWebVttInputConfiguration;
|
|
2646
|
+
static equals(a: FileWebVttInputConfiguration | PlainMessage<FileWebVttInputConfiguration> | undefined, b: FileWebVttInputConfiguration | PlainMessage<FileWebVttInputConfiguration> | undefined): boolean;
|
|
2639
2647
|
}
|
|
2640
2648
|
/**
|
|
2641
|
-
* @generated from message norsk.api.media.
|
|
2649
|
+
* @generated from message norsk.api.media.FileWebVttInputEvent
|
|
2642
2650
|
*/
|
|
2643
|
-
export declare class
|
|
2651
|
+
export declare class FileWebVttInputEvent extends Message<FileWebVttInputEvent> {
|
|
2644
2652
|
/**
|
|
2645
|
-
* @generated from oneof norsk.api.media.
|
|
2653
|
+
* @generated from oneof norsk.api.media.FileWebVttInputEvent.message
|
|
2646
2654
|
*/
|
|
2647
2655
|
message: {
|
|
2648
2656
|
/**
|
|
@@ -2660,14 +2668,14 @@ export declare class WebVttFileInputEvent extends Message<WebVttFileInputEvent>
|
|
|
2660
2668
|
case: undefined;
|
|
2661
2669
|
value?: undefined;
|
|
2662
2670
|
};
|
|
2663
|
-
constructor(data?: PartialMessage<
|
|
2671
|
+
constructor(data?: PartialMessage<FileWebVttInputEvent>);
|
|
2664
2672
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2665
|
-
static readonly typeName = "norsk.api.media.
|
|
2673
|
+
static readonly typeName = "norsk.api.media.FileWebVttInputEvent";
|
|
2666
2674
|
static readonly fields: FieldList;
|
|
2667
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2668
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2669
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2670
|
-
static equals(a:
|
|
2675
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileWebVttInputEvent;
|
|
2676
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileWebVttInputEvent;
|
|
2677
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileWebVttInputEvent;
|
|
2678
|
+
static equals(a: FileWebVttInputEvent | PlainMessage<FileWebVttInputEvent> | undefined, b: FileWebVttInputEvent | PlainMessage<FileWebVttInputEvent> | undefined): boolean;
|
|
2671
2679
|
}
|
|
2672
2680
|
/**
|
|
2673
2681
|
* @generated from message norsk.api.media.SrtInputConfiguration
|
|
@@ -2704,9 +2712,9 @@ export declare class SrtInputConfiguration extends Message<SrtInputConfiguration
|
|
|
2704
2712
|
*/
|
|
2705
2713
|
streamId?: OptionalString;
|
|
2706
2714
|
/**
|
|
2707
|
-
* @generated from field: norsk.api.media.
|
|
2715
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 8;
|
|
2708
2716
|
*/
|
|
2709
|
-
statsSampling?:
|
|
2717
|
+
statsSampling?: StreamStatisticsSampling;
|
|
2710
2718
|
constructor(data?: PartialMessage<SrtInputConfiguration>);
|
|
2711
2719
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2712
2720
|
static readonly typeName = "norsk.api.media.SrtInputConfiguration";
|
|
@@ -2792,7 +2800,7 @@ export declare class SrtTsContext extends Message<SrtTsContext> {
|
|
|
2792
2800
|
*/
|
|
2793
2801
|
export declare class SrtConnectMessage extends Message<SrtConnectMessage> {
|
|
2794
2802
|
/**
|
|
2795
|
-
* The
|
|
2803
|
+
* The stream_id sent on the SRT socket (or empty if none was set)
|
|
2796
2804
|
*
|
|
2797
2805
|
* @generated from field: string srt_stream_id = 1;
|
|
2798
2806
|
*/
|
|
@@ -2967,10 +2975,10 @@ export declare class SrtInputEvent extends Message<SrtInputEvent> {
|
|
|
2967
2975
|
case: "status";
|
|
2968
2976
|
} | {
|
|
2969
2977
|
/**
|
|
2970
|
-
* @generated from field: norsk.api.media.
|
|
2978
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 7;
|
|
2971
2979
|
*/
|
|
2972
|
-
value:
|
|
2973
|
-
case: "
|
|
2980
|
+
value: MultiStreamStatistics;
|
|
2981
|
+
case: "streamStatistics";
|
|
2974
2982
|
} | {
|
|
2975
2983
|
case: undefined;
|
|
2976
2984
|
value?: undefined;
|
|
@@ -3005,9 +3013,9 @@ export declare class UdpTsInputConfiguration extends Message<UdpTsInputConfigura
|
|
|
3005
3013
|
*/
|
|
3006
3014
|
port: number;
|
|
3007
3015
|
/**
|
|
3008
|
-
* @generated from field: norsk.api.media.
|
|
3016
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
3009
3017
|
*/
|
|
3010
|
-
statsSampling?:
|
|
3018
|
+
statsSampling?: StreamStatisticsSampling;
|
|
3011
3019
|
constructor(data?: PartialMessage<UdpTsInputConfiguration>);
|
|
3012
3020
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3013
3021
|
static readonly typeName = "norsk.api.media.UdpTsInputConfiguration";
|
|
@@ -3058,10 +3066,10 @@ export declare class UdpTsInputEvent extends Message<UdpTsInputEvent> {
|
|
|
3058
3066
|
*/
|
|
3059
3067
|
message: {
|
|
3060
3068
|
/**
|
|
3061
|
-
* @generated from field: norsk.api.media.
|
|
3069
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 1;
|
|
3062
3070
|
*/
|
|
3063
|
-
value:
|
|
3064
|
-
case: "
|
|
3071
|
+
value: MultiStreamStatistics;
|
|
3072
|
+
case: "streamStatistics";
|
|
3065
3073
|
} | {
|
|
3066
3074
|
case: undefined;
|
|
3067
3075
|
value?: undefined;
|
|
@@ -3092,11 +3100,9 @@ export declare class M3u8MediaInputConfiguration extends Message<M3u8MediaInputC
|
|
|
3092
3100
|
*/
|
|
3093
3101
|
url: string;
|
|
3094
3102
|
/**
|
|
3095
|
-
*
|
|
3096
|
-
*
|
|
3097
|
-
* @generated from field: norsk.api.media.StreamStatsSampling stats_sampling = 4;
|
|
3103
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
3098
3104
|
*/
|
|
3099
|
-
statsSampling?:
|
|
3105
|
+
statsSampling?: StreamStatisticsSampling;
|
|
3100
3106
|
constructor(data?: PartialMessage<M3u8MediaInputConfiguration>);
|
|
3101
3107
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3102
3108
|
static readonly typeName = "norsk.api.media.M3u8MediaInputConfiguration";
|
|
@@ -3147,10 +3153,10 @@ export declare class M3u8MediaInputEvent extends Message<M3u8MediaInputEvent> {
|
|
|
3147
3153
|
*/
|
|
3148
3154
|
message: {
|
|
3149
3155
|
/**
|
|
3150
|
-
* @generated from field: norsk.api.media.
|
|
3156
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 1;
|
|
3151
3157
|
*/
|
|
3152
|
-
value:
|
|
3153
|
-
case: "
|
|
3158
|
+
value: MultiStreamStatistics;
|
|
3159
|
+
case: "streamStatistics";
|
|
3154
3160
|
} | {
|
|
3155
3161
|
case: undefined;
|
|
3156
3162
|
value?: undefined;
|
|
@@ -3207,11 +3213,11 @@ export declare class TestCardVideoConfiguration extends Message<TestCardVideoCon
|
|
|
3207
3213
|
static equals(a: TestCardVideoConfiguration | PlainMessage<TestCardVideoConfiguration> | undefined, b: TestCardVideoConfiguration | PlainMessage<TestCardVideoConfiguration> | undefined): boolean;
|
|
3208
3214
|
}
|
|
3209
3215
|
/**
|
|
3210
|
-
* @generated from message norsk.api.media.
|
|
3216
|
+
* @generated from message norsk.api.media.VideoTestCardGeneratorMessage
|
|
3211
3217
|
*/
|
|
3212
|
-
export declare class
|
|
3218
|
+
export declare class VideoTestCardGeneratorMessage extends Message<VideoTestCardGeneratorMessage> {
|
|
3213
3219
|
/**
|
|
3214
|
-
* @generated from oneof norsk.api.media.
|
|
3220
|
+
* @generated from oneof norsk.api.media.VideoTestCardGeneratorMessage.message
|
|
3215
3221
|
*/
|
|
3216
3222
|
message: {
|
|
3217
3223
|
/**
|
|
@@ -3229,21 +3235,21 @@ export declare class TestCardVideoGeneratorMessage extends Message<TestCardVideo
|
|
|
3229
3235
|
case: undefined;
|
|
3230
3236
|
value?: undefined;
|
|
3231
3237
|
};
|
|
3232
|
-
constructor(data?: PartialMessage<
|
|
3238
|
+
constructor(data?: PartialMessage<VideoTestCardGeneratorMessage>);
|
|
3233
3239
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3234
|
-
static readonly typeName = "norsk.api.media.
|
|
3240
|
+
static readonly typeName = "norsk.api.media.VideoTestCardGeneratorMessage";
|
|
3235
3241
|
static readonly fields: FieldList;
|
|
3236
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3237
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3238
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3239
|
-
static equals(a:
|
|
3242
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTestCardGeneratorMessage;
|
|
3243
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoTestCardGeneratorMessage;
|
|
3244
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoTestCardGeneratorMessage;
|
|
3245
|
+
static equals(a: VideoTestCardGeneratorMessage | PlainMessage<VideoTestCardGeneratorMessage> | undefined, b: VideoTestCardGeneratorMessage | PlainMessage<VideoTestCardGeneratorMessage> | undefined): boolean;
|
|
3240
3246
|
}
|
|
3241
3247
|
/**
|
|
3242
|
-
* @generated from message norsk.api.media.
|
|
3248
|
+
* @generated from message norsk.api.media.VideoTestCardGeneratorEvent
|
|
3243
3249
|
*/
|
|
3244
|
-
export declare class
|
|
3250
|
+
export declare class VideoTestCardGeneratorEvent extends Message<VideoTestCardGeneratorEvent> {
|
|
3245
3251
|
/**
|
|
3246
|
-
* @generated from oneof norsk.api.media.
|
|
3252
|
+
* @generated from oneof norsk.api.media.VideoTestCardGeneratorEvent.message
|
|
3247
3253
|
*/
|
|
3248
3254
|
message: {
|
|
3249
3255
|
/**
|
|
@@ -3267,14 +3273,14 @@ export declare class TestCardVideoGeneratorEvent extends Message<TestCardVideoGe
|
|
|
3267
3273
|
case: undefined;
|
|
3268
3274
|
value?: undefined;
|
|
3269
3275
|
};
|
|
3270
|
-
constructor(data?: PartialMessage<
|
|
3276
|
+
constructor(data?: PartialMessage<VideoTestCardGeneratorEvent>);
|
|
3271
3277
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3272
|
-
static readonly typeName = "norsk.api.media.
|
|
3278
|
+
static readonly typeName = "norsk.api.media.VideoTestCardGeneratorEvent";
|
|
3273
3279
|
static readonly fields: FieldList;
|
|
3274
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3275
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3276
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3277
|
-
static equals(a:
|
|
3280
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTestCardGeneratorEvent;
|
|
3281
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoTestCardGeneratorEvent;
|
|
3282
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoTestCardGeneratorEvent;
|
|
3283
|
+
static equals(a: VideoTestCardGeneratorEvent | PlainMessage<VideoTestCardGeneratorEvent> | undefined, b: VideoTestCardGeneratorEvent | PlainMessage<VideoTestCardGeneratorEvent> | undefined): boolean;
|
|
3278
3284
|
}
|
|
3279
3285
|
/**
|
|
3280
3286
|
* @generated from message norsk.api.media.DeckLinkCardIndex
|
|
@@ -3326,9 +3332,9 @@ export declare class DeckLinkInputConfiguration extends Message<DeckLinkInputCon
|
|
|
3326
3332
|
*/
|
|
3327
3333
|
pixelFormat: DeckLinkPixelFormat;
|
|
3328
3334
|
/**
|
|
3329
|
-
* @generated from field: norsk.api.media.
|
|
3335
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 8;
|
|
3330
3336
|
*/
|
|
3331
|
-
statsSampling?:
|
|
3337
|
+
statsSampling?: StreamStatisticsSampling;
|
|
3332
3338
|
constructor(data?: PartialMessage<DeckLinkInputConfiguration>);
|
|
3333
3339
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3334
3340
|
static readonly typeName = "norsk.api.media.DeckLinkInputConfiguration";
|
|
@@ -3391,10 +3397,10 @@ export declare class DeckLinkInputEvent extends Message<DeckLinkInputEvent> {
|
|
|
3391
3397
|
case: "outboundContext";
|
|
3392
3398
|
} | {
|
|
3393
3399
|
/**
|
|
3394
|
-
* @generated from field: norsk.api.media.
|
|
3400
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
|
|
3395
3401
|
*/
|
|
3396
|
-
value:
|
|
3397
|
-
case: "
|
|
3402
|
+
value: MultiStreamStatistics;
|
|
3403
|
+
case: "streamStatistics";
|
|
3398
3404
|
} | {
|
|
3399
3405
|
case: undefined;
|
|
3400
3406
|
value?: undefined;
|
|
@@ -3409,9 +3415,9 @@ export declare class DeckLinkInputEvent extends Message<DeckLinkInputEvent> {
|
|
|
3409
3415
|
static equals(a: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined, b: DeckLinkInputEvent | PlainMessage<DeckLinkInputEvent> | undefined): boolean;
|
|
3410
3416
|
}
|
|
3411
3417
|
/**
|
|
3412
|
-
* @generated from message norsk.api.media.
|
|
3418
|
+
* @generated from message norsk.api.media.FileImageInputConfiguration
|
|
3413
3419
|
*/
|
|
3414
|
-
export declare class
|
|
3420
|
+
export declare class FileImageInputConfiguration extends Message<FileImageInputConfiguration> {
|
|
3415
3421
|
/**
|
|
3416
3422
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
3417
3423
|
*/
|
|
@@ -3425,26 +3431,26 @@ export declare class ImageFileInputConfiguration extends Message<ImageFileInputC
|
|
|
3425
3431
|
*/
|
|
3426
3432
|
fileName: string;
|
|
3427
3433
|
/**
|
|
3428
|
-
* @generated from field: norsk.api.media.
|
|
3434
|
+
* @generated from field: norsk.api.media.FileImageInputConfiguration.ImageFormat image_format = 4;
|
|
3429
3435
|
*/
|
|
3430
|
-
imageFormat:
|
|
3436
|
+
imageFormat: FileImageInputConfiguration_ImageFormat;
|
|
3431
3437
|
/**
|
|
3432
|
-
* @generated from field: norsk.api.media.
|
|
3438
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
3433
3439
|
*/
|
|
3434
|
-
statsSampling?:
|
|
3435
|
-
constructor(data?: PartialMessage<
|
|
3440
|
+
statsSampling?: StreamStatisticsSampling;
|
|
3441
|
+
constructor(data?: PartialMessage<FileImageInputConfiguration>);
|
|
3436
3442
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3437
|
-
static readonly typeName = "norsk.api.media.
|
|
3443
|
+
static readonly typeName = "norsk.api.media.FileImageInputConfiguration";
|
|
3438
3444
|
static readonly fields: FieldList;
|
|
3439
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3440
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3441
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3442
|
-
static equals(a:
|
|
3445
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileImageInputConfiguration;
|
|
3446
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileImageInputConfiguration;
|
|
3447
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileImageInputConfiguration;
|
|
3448
|
+
static equals(a: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined, b: FileImageInputConfiguration | PlainMessage<FileImageInputConfiguration> | undefined): boolean;
|
|
3443
3449
|
}
|
|
3444
3450
|
/**
|
|
3445
|
-
* @generated from enum norsk.api.media.
|
|
3451
|
+
* @generated from enum norsk.api.media.FileImageInputConfiguration.ImageFormat
|
|
3446
3452
|
*/
|
|
3447
|
-
export declare enum
|
|
3453
|
+
export declare enum FileImageInputConfiguration_ImageFormat {
|
|
3448
3454
|
/**
|
|
3449
3455
|
* @generated from enum value: INFER = 0;
|
|
3450
3456
|
*/
|
|
@@ -3507,11 +3513,11 @@ export declare enum ImageFileInputConfiguration_ImageFormat {
|
|
|
3507
3513
|
AVIF = 14
|
|
3508
3514
|
}
|
|
3509
3515
|
/**
|
|
3510
|
-
* @generated from message norsk.api.media.
|
|
3516
|
+
* @generated from message norsk.api.media.FileImageInputEvent
|
|
3511
3517
|
*/
|
|
3512
|
-
export declare class
|
|
3518
|
+
export declare class FileImageInputEvent extends Message<FileImageInputEvent> {
|
|
3513
3519
|
/**
|
|
3514
|
-
* @generated from oneof norsk.api.media.
|
|
3520
|
+
* @generated from oneof norsk.api.media.FileImageInputEvent.message
|
|
3515
3521
|
*/
|
|
3516
3522
|
message: {
|
|
3517
3523
|
/**
|
|
@@ -3527,27 +3533,27 @@ export declare class ImageFileInputEvent extends Message<ImageFileInputEvent> {
|
|
|
3527
3533
|
case: "outboundContext";
|
|
3528
3534
|
} | {
|
|
3529
3535
|
/**
|
|
3530
|
-
* @generated from field: norsk.api.media.
|
|
3536
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
|
|
3531
3537
|
*/
|
|
3532
|
-
value:
|
|
3533
|
-
case: "
|
|
3538
|
+
value: MultiStreamStatistics;
|
|
3539
|
+
case: "streamStatistics";
|
|
3534
3540
|
} | {
|
|
3535
3541
|
case: undefined;
|
|
3536
3542
|
value?: undefined;
|
|
3537
3543
|
};
|
|
3538
|
-
constructor(data?: PartialMessage<
|
|
3544
|
+
constructor(data?: PartialMessage<FileImageInputEvent>);
|
|
3539
3545
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3540
|
-
static readonly typeName = "norsk.api.media.
|
|
3546
|
+
static readonly typeName = "norsk.api.media.FileImageInputEvent";
|
|
3541
3547
|
static readonly fields: FieldList;
|
|
3542
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3543
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3544
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3545
|
-
static equals(a:
|
|
3548
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileImageInputEvent;
|
|
3549
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileImageInputEvent;
|
|
3550
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileImageInputEvent;
|
|
3551
|
+
static equals(a: FileImageInputEvent | PlainMessage<FileImageInputEvent> | undefined, b: FileImageInputEvent | PlainMessage<FileImageInputEvent> | undefined): boolean;
|
|
3546
3552
|
}
|
|
3547
3553
|
/**
|
|
3548
|
-
* @generated from message norsk.api.media.
|
|
3554
|
+
* @generated from message norsk.api.media.FileMp4InputConfiguration
|
|
3549
3555
|
*/
|
|
3550
|
-
export declare class
|
|
3556
|
+
export declare class FileMp4InputConfiguration extends Message<FileMp4InputConfiguration> {
|
|
3551
3557
|
/**
|
|
3552
3558
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
3553
3559
|
*/
|
|
@@ -3561,30 +3567,30 @@ export declare class Mp4FileInputConfiguration extends Message<Mp4FileInputConfi
|
|
|
3561
3567
|
*/
|
|
3562
3568
|
fileName: string;
|
|
3563
3569
|
/**
|
|
3564
|
-
* @generated from field: norsk.api.media.
|
|
3570
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
3565
3571
|
*/
|
|
3566
|
-
statsSampling?:
|
|
3567
|
-
constructor(data?: PartialMessage<
|
|
3572
|
+
statsSampling?: StreamStatisticsSampling;
|
|
3573
|
+
constructor(data?: PartialMessage<FileMp4InputConfiguration>);
|
|
3568
3574
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3569
|
-
static readonly typeName = "norsk.api.media.
|
|
3575
|
+
static readonly typeName = "norsk.api.media.FileMp4InputConfiguration";
|
|
3570
3576
|
static readonly fields: FieldList;
|
|
3571
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3572
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3573
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3574
|
-
static equals(a:
|
|
3577
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputConfiguration;
|
|
3578
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputConfiguration;
|
|
3579
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputConfiguration;
|
|
3580
|
+
static equals(a: FileMp4InputConfiguration | PlainMessage<FileMp4InputConfiguration> | undefined, b: FileMp4InputConfiguration | PlainMessage<FileMp4InputConfiguration> | undefined): boolean;
|
|
3575
3581
|
}
|
|
3576
3582
|
/**
|
|
3577
|
-
* @generated from message norsk.api.media.
|
|
3583
|
+
* @generated from message norsk.api.media.FileMp4InputMessage
|
|
3578
3584
|
*/
|
|
3579
|
-
export declare class
|
|
3585
|
+
export declare class FileMp4InputMessage extends Message<FileMp4InputMessage> {
|
|
3580
3586
|
/**
|
|
3581
|
-
* @generated from oneof norsk.api.media.
|
|
3587
|
+
* @generated from oneof norsk.api.media.FileMp4InputMessage.message
|
|
3582
3588
|
*/
|
|
3583
3589
|
message: {
|
|
3584
3590
|
/**
|
|
3585
|
-
* @generated from field: norsk.api.media.
|
|
3591
|
+
* @generated from field: norsk.api.media.FileMp4InputConfiguration initial_config = 1;
|
|
3586
3592
|
*/
|
|
3587
|
-
value:
|
|
3593
|
+
value: FileMp4InputConfiguration;
|
|
3588
3594
|
case: "initialConfig";
|
|
3589
3595
|
} | {
|
|
3590
3596
|
/**
|
|
@@ -3596,36 +3602,36 @@ export declare class Mp4FileInputMessage extends Message<Mp4FileInputMessage> {
|
|
|
3596
3602
|
case: undefined;
|
|
3597
3603
|
value?: undefined;
|
|
3598
3604
|
};
|
|
3599
|
-
constructor(data?: PartialMessage<
|
|
3605
|
+
constructor(data?: PartialMessage<FileMp4InputMessage>);
|
|
3600
3606
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3601
|
-
static readonly typeName = "norsk.api.media.
|
|
3607
|
+
static readonly typeName = "norsk.api.media.FileMp4InputMessage";
|
|
3602
3608
|
static readonly fields: FieldList;
|
|
3603
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3604
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3605
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3606
|
-
static equals(a:
|
|
3609
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputMessage;
|
|
3610
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputMessage;
|
|
3611
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputMessage;
|
|
3612
|
+
static equals(a: FileMp4InputMessage | PlainMessage<FileMp4InputMessage> | undefined, b: FileMp4InputMessage | PlainMessage<FileMp4InputMessage> | undefined): boolean;
|
|
3607
3613
|
}
|
|
3608
3614
|
/**
|
|
3609
|
-
* @generated from message norsk.api.media.
|
|
3615
|
+
* @generated from message norsk.api.media.FileMp4InputStatus
|
|
3610
3616
|
*/
|
|
3611
|
-
export declare class
|
|
3617
|
+
export declare class FileMp4InputStatus extends Message<FileMp4InputStatus> {
|
|
3612
3618
|
/**
|
|
3613
|
-
* @generated from field: norsk.api.media.
|
|
3619
|
+
* @generated from field: norsk.api.media.FileMp4InputStatus.State state = 1;
|
|
3614
3620
|
*/
|
|
3615
|
-
state:
|
|
3616
|
-
constructor(data?: PartialMessage<
|
|
3621
|
+
state: FileMp4InputStatus_State;
|
|
3622
|
+
constructor(data?: PartialMessage<FileMp4InputStatus>);
|
|
3617
3623
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3618
|
-
static readonly typeName = "norsk.api.media.
|
|
3624
|
+
static readonly typeName = "norsk.api.media.FileMp4InputStatus";
|
|
3619
3625
|
static readonly fields: FieldList;
|
|
3620
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3621
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3622
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3623
|
-
static equals(a:
|
|
3626
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputStatus;
|
|
3627
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputStatus;
|
|
3628
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputStatus;
|
|
3629
|
+
static equals(a: FileMp4InputStatus | PlainMessage<FileMp4InputStatus> | undefined, b: FileMp4InputStatus | PlainMessage<FileMp4InputStatus> | undefined): boolean;
|
|
3624
3630
|
}
|
|
3625
3631
|
/**
|
|
3626
|
-
* @generated from enum norsk.api.media.
|
|
3632
|
+
* @generated from enum norsk.api.media.FileMp4InputStatus.State
|
|
3627
3633
|
*/
|
|
3628
|
-
export declare enum
|
|
3634
|
+
export declare enum FileMp4InputStatus_State {
|
|
3629
3635
|
/**
|
|
3630
3636
|
* @generated from enum value: INPUT_STATUS_UNKNOWN = 0;
|
|
3631
3637
|
*/
|
|
@@ -3636,9 +3642,9 @@ export declare enum Mp4FileInputStatus_State {
|
|
|
3636
3642
|
INPUT_STATUS_EOF = 1
|
|
3637
3643
|
}
|
|
3638
3644
|
/**
|
|
3639
|
-
* @generated from message norsk.api.media.
|
|
3645
|
+
* @generated from message norsk.api.media.FileMp4InputInfo
|
|
3640
3646
|
*/
|
|
3641
|
-
export declare class
|
|
3647
|
+
export declare class FileMp4InputInfo extends Message<FileMp4InputInfo> {
|
|
3642
3648
|
/**
|
|
3643
3649
|
* @generated from field: norsk.api.media.OptionalInt byte_length = 1;
|
|
3644
3650
|
*/
|
|
@@ -3647,21 +3653,21 @@ export declare class Mp4FileInputInfo extends Message<Mp4FileInputInfo> {
|
|
|
3647
3653
|
* @generated from field: norsk.api.media.OptionalInt duration_ms = 2;
|
|
3648
3654
|
*/
|
|
3649
3655
|
durationMs?: OptionalInt;
|
|
3650
|
-
constructor(data?: PartialMessage<
|
|
3656
|
+
constructor(data?: PartialMessage<FileMp4InputInfo>);
|
|
3651
3657
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3652
|
-
static readonly typeName = "norsk.api.media.
|
|
3658
|
+
static readonly typeName = "norsk.api.media.FileMp4InputInfo";
|
|
3653
3659
|
static readonly fields: FieldList;
|
|
3654
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3655
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3656
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3657
|
-
static equals(a:
|
|
3660
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputInfo;
|
|
3661
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputInfo;
|
|
3662
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputInfo;
|
|
3663
|
+
static equals(a: FileMp4InputInfo | PlainMessage<FileMp4InputInfo> | undefined, b: FileMp4InputInfo | PlainMessage<FileMp4InputInfo> | undefined): boolean;
|
|
3658
3664
|
}
|
|
3659
3665
|
/**
|
|
3660
|
-
* @generated from message norsk.api.media.
|
|
3666
|
+
* @generated from message norsk.api.media.FileMp4InputEvent
|
|
3661
3667
|
*/
|
|
3662
|
-
export declare class
|
|
3668
|
+
export declare class FileMp4InputEvent extends Message<FileMp4InputEvent> {
|
|
3663
3669
|
/**
|
|
3664
|
-
* @generated from oneof norsk.api.media.
|
|
3670
|
+
* @generated from oneof norsk.api.media.FileMp4InputEvent.message
|
|
3665
3671
|
*/
|
|
3666
3672
|
message: {
|
|
3667
3673
|
/**
|
|
@@ -3677,41 +3683,41 @@ export declare class Mp4FileInputEvent extends Message<Mp4FileInputEvent> {
|
|
|
3677
3683
|
case: "outboundContext";
|
|
3678
3684
|
} | {
|
|
3679
3685
|
/**
|
|
3680
|
-
* @generated from field: norsk.api.media.
|
|
3686
|
+
* @generated from field: norsk.api.media.FileMp4InputStatus status = 3;
|
|
3681
3687
|
*/
|
|
3682
|
-
value:
|
|
3688
|
+
value: FileMp4InputStatus;
|
|
3683
3689
|
case: "status";
|
|
3684
3690
|
} | {
|
|
3685
3691
|
/**
|
|
3686
|
-
* @generated from field: norsk.api.media.
|
|
3692
|
+
* @generated from field: norsk.api.media.FileMp4InputInfo info = 4;
|
|
3687
3693
|
*/
|
|
3688
|
-
value:
|
|
3694
|
+
value: FileMp4InputInfo;
|
|
3689
3695
|
case: "info";
|
|
3690
3696
|
} | {
|
|
3691
3697
|
/**
|
|
3692
|
-
* @generated from field: norsk.api.media.
|
|
3698
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
|
|
3693
3699
|
*/
|
|
3694
|
-
value:
|
|
3695
|
-
case: "
|
|
3700
|
+
value: MultiStreamStatistics;
|
|
3701
|
+
case: "streamStatistics";
|
|
3696
3702
|
} | {
|
|
3697
3703
|
case: undefined;
|
|
3698
3704
|
value?: undefined;
|
|
3699
3705
|
};
|
|
3700
|
-
constructor(data?: PartialMessage<
|
|
3706
|
+
constructor(data?: PartialMessage<FileMp4InputEvent>);
|
|
3701
3707
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3702
|
-
static readonly typeName = "norsk.api.media.
|
|
3708
|
+
static readonly typeName = "norsk.api.media.FileMp4InputEvent";
|
|
3703
3709
|
static readonly fields: FieldList;
|
|
3704
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
3705
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
3706
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
3707
|
-
static equals(a:
|
|
3710
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputEvent;
|
|
3711
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputEvent;
|
|
3712
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputEvent;
|
|
3713
|
+
static equals(a: FileMp4InputEvent | PlainMessage<FileMp4InputEvent> | undefined, b: FileMp4InputEvent | PlainMessage<FileMp4InputEvent> | undefined): boolean;
|
|
3708
3714
|
}
|
|
3709
3715
|
/**
|
|
3710
3716
|
* @generated from message norsk.api.media.SineWave
|
|
3711
3717
|
*/
|
|
3712
3718
|
export declare class SineWave extends Message<SineWave> {
|
|
3713
3719
|
/**
|
|
3714
|
-
* @generated from field:
|
|
3720
|
+
* @generated from field: float freq = 1;
|
|
3715
3721
|
*/
|
|
3716
3722
|
freq: number;
|
|
3717
3723
|
constructor(data?: PartialMessage<SineWave>);
|
|
@@ -3843,9 +3849,9 @@ export declare class BrowserInputConfiguration extends Message<BrowserInputConfi
|
|
|
3843
3849
|
*/
|
|
3844
3850
|
frameRate?: FrameRate;
|
|
3845
3851
|
/**
|
|
3846
|
-
* @generated from field: norsk.api.media.
|
|
3852
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
|
|
3847
3853
|
*/
|
|
3848
|
-
statsSampling?:
|
|
3854
|
+
statsSampling?: StreamStatisticsSampling;
|
|
3849
3855
|
constructor(data?: PartialMessage<BrowserInputConfiguration>);
|
|
3850
3856
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3851
3857
|
static readonly typeName = "norsk.api.media.BrowserInputConfiguration";
|
|
@@ -4027,10 +4033,10 @@ export declare class BrowserEvent extends Message<BrowserEvent> {
|
|
|
4027
4033
|
case: "onLoadError";
|
|
4028
4034
|
} | {
|
|
4029
4035
|
/**
|
|
4030
|
-
* @generated from field: norsk.api.media.
|
|
4036
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
|
|
4031
4037
|
*/
|
|
4032
|
-
value:
|
|
4033
|
-
case: "
|
|
4038
|
+
value: MultiStreamStatistics;
|
|
4039
|
+
case: "streamStatistics";
|
|
4034
4040
|
} | {
|
|
4035
4041
|
case: undefined;
|
|
4036
4042
|
value?: undefined;
|
|
@@ -4071,10 +4077,10 @@ export declare class BrowserInputEvent extends Message<BrowserInputEvent> {
|
|
|
4071
4077
|
case: "browserEvent";
|
|
4072
4078
|
} | {
|
|
4073
4079
|
/**
|
|
4074
|
-
* @generated from field: norsk.api.media.
|
|
4080
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
4075
4081
|
*/
|
|
4076
|
-
value:
|
|
4077
|
-
case: "
|
|
4082
|
+
value: MultiStreamStatistics;
|
|
4083
|
+
case: "streamStatistics";
|
|
4078
4084
|
} | {
|
|
4079
4085
|
case: undefined;
|
|
4080
4086
|
value?: undefined;
|
|
@@ -4101,9 +4107,9 @@ export declare class WhipInputConfiguration extends Message<WhipInputConfigurati
|
|
|
4101
4107
|
*/
|
|
4102
4108
|
sourceName: string;
|
|
4103
4109
|
/**
|
|
4104
|
-
* @generated from field: norsk.api.media.
|
|
4110
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
4105
4111
|
*/
|
|
4106
|
-
statsSampling?:
|
|
4112
|
+
statsSampling?: StreamStatisticsSampling;
|
|
4107
4113
|
constructor(data?: PartialMessage<WhipInputConfiguration>);
|
|
4108
4114
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4109
4115
|
static readonly typeName = "norsk.api.media.WhipInputConfiguration";
|
|
@@ -4166,10 +4172,10 @@ export declare class WhipInputEvent extends Message<WhipInputEvent> {
|
|
|
4166
4172
|
case: "outboundContext";
|
|
4167
4173
|
} | {
|
|
4168
4174
|
/**
|
|
4169
|
-
* @generated from field: norsk.api.media.
|
|
4175
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
|
|
4170
4176
|
*/
|
|
4171
|
-
value:
|
|
4172
|
-
case: "
|
|
4177
|
+
value: MultiStreamStatistics;
|
|
4178
|
+
case: "streamStatistics";
|
|
4173
4179
|
} | {
|
|
4174
4180
|
case: undefined;
|
|
4175
4181
|
value?: undefined;
|
|
@@ -4395,11 +4401,11 @@ export declare class PartId extends Message<PartId> {
|
|
|
4395
4401
|
static equals(a: PartId | PlainMessage<PartId> | undefined, b: PartId | PlainMessage<PartId> | undefined): boolean;
|
|
4396
4402
|
}
|
|
4397
4403
|
/**
|
|
4398
|
-
* @generated from message norsk.api.media.
|
|
4404
|
+
* @generated from message norsk.api.media.VideoComposeMessage
|
|
4399
4405
|
*/
|
|
4400
|
-
export declare class
|
|
4406
|
+
export declare class VideoComposeMessage extends Message<VideoComposeMessage> {
|
|
4401
4407
|
/**
|
|
4402
|
-
* @generated from oneof norsk.api.media.
|
|
4408
|
+
* @generated from oneof norsk.api.media.VideoComposeMessage.message
|
|
4403
4409
|
*/
|
|
4404
4410
|
message: {
|
|
4405
4411
|
/**
|
|
@@ -4409,36 +4415,36 @@ export declare class ComposeVideoMessage extends Message<ComposeVideoMessage> {
|
|
|
4409
4415
|
case: "subscription";
|
|
4410
4416
|
} | {
|
|
4411
4417
|
/**
|
|
4412
|
-
* @generated from field: norsk.api.media.
|
|
4418
|
+
* @generated from field: norsk.api.media.VideoComposeConfiguration initial_config = 2;
|
|
4413
4419
|
*/
|
|
4414
|
-
value:
|
|
4420
|
+
value: VideoComposeConfiguration;
|
|
4415
4421
|
case: "initialConfig";
|
|
4416
4422
|
} | {
|
|
4417
4423
|
/**
|
|
4418
|
-
* @generated from field: norsk.api.media.
|
|
4424
|
+
* @generated from field: norsk.api.media.VideoComposeUpdateConfiguration update_config = 3;
|
|
4419
4425
|
*/
|
|
4420
|
-
value:
|
|
4426
|
+
value: VideoComposeUpdateConfiguration;
|
|
4421
4427
|
case: "updateConfig";
|
|
4422
4428
|
} | {
|
|
4423
4429
|
case: undefined;
|
|
4424
4430
|
value?: undefined;
|
|
4425
4431
|
};
|
|
4426
|
-
constructor(data?: PartialMessage<
|
|
4432
|
+
constructor(data?: PartialMessage<VideoComposeMessage>);
|
|
4427
4433
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4428
|
-
static readonly typeName = "norsk.api.media.
|
|
4434
|
+
static readonly typeName = "norsk.api.media.VideoComposeMessage";
|
|
4429
4435
|
static readonly fields: FieldList;
|
|
4430
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4431
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4432
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4433
|
-
static equals(a:
|
|
4436
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoComposeMessage;
|
|
4437
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoComposeMessage;
|
|
4438
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoComposeMessage;
|
|
4439
|
+
static equals(a: VideoComposeMessage | PlainMessage<VideoComposeMessage> | undefined, b: VideoComposeMessage | PlainMessage<VideoComposeMessage> | undefined): boolean;
|
|
4434
4440
|
}
|
|
4435
4441
|
/**
|
|
4436
4442
|
* *
|
|
4437
4443
|
* Configure a Compose Media Node.
|
|
4438
4444
|
*
|
|
4439
|
-
* @generated from message norsk.api.media.
|
|
4445
|
+
* @generated from message norsk.api.media.VideoComposeConfiguration
|
|
4440
4446
|
*/
|
|
4441
|
-
export declare class
|
|
4447
|
+
export declare class VideoComposeConfiguration extends Message<VideoComposeConfiguration> {
|
|
4442
4448
|
/**
|
|
4443
4449
|
* The Media Node Id
|
|
4444
4450
|
*
|
|
@@ -4487,9 +4493,9 @@ export declare class ComposeVideoConfiguration extends Message<ComposeVideoConfi
|
|
|
4487
4493
|
* Output pixel format to use. If not specified, this will be chosen
|
|
4488
4494
|
* automatically based on the sources present in the initial composition
|
|
4489
4495
|
*
|
|
4490
|
-
* @generated from field: norsk.api.media.
|
|
4496
|
+
* @generated from field: norsk.api.media.VideoComposeConfiguration.PixelFormat output_pixel_format = 6;
|
|
4491
4497
|
*/
|
|
4492
|
-
outputPixelFormat:
|
|
4498
|
+
outputPixelFormat: VideoComposeConfiguration_PixelFormat;
|
|
4493
4499
|
/**
|
|
4494
4500
|
* Behaviour in the case of a missing stream used in an active composition
|
|
4495
4501
|
* part. Note that this does not apply to the reference stream, but to every
|
|
@@ -4498,22 +4504,22 @@ export declare class ComposeVideoConfiguration extends Message<ComposeVideoConfi
|
|
|
4498
4504
|
*
|
|
4499
4505
|
* Missing means not present in the context or never having sent a frame.
|
|
4500
4506
|
*
|
|
4501
|
-
* @generated from field: norsk.api.media.
|
|
4507
|
+
* @generated from field: norsk.api.media.VideoComposeConfiguration.MissingStreamBehaviour missing_stream_behaviour = 7;
|
|
4502
4508
|
*/
|
|
4503
|
-
missingStreamBehaviour:
|
|
4504
|
-
constructor(data?: PartialMessage<
|
|
4509
|
+
missingStreamBehaviour: VideoComposeConfiguration_MissingStreamBehaviour;
|
|
4510
|
+
constructor(data?: PartialMessage<VideoComposeConfiguration>);
|
|
4505
4511
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4506
|
-
static readonly typeName = "norsk.api.media.
|
|
4512
|
+
static readonly typeName = "norsk.api.media.VideoComposeConfiguration";
|
|
4507
4513
|
static readonly fields: FieldList;
|
|
4508
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4509
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4510
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4511
|
-
static equals(a:
|
|
4514
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoComposeConfiguration;
|
|
4515
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoComposeConfiguration;
|
|
4516
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoComposeConfiguration;
|
|
4517
|
+
static equals(a: VideoComposeConfiguration | PlainMessage<VideoComposeConfiguration> | undefined, b: VideoComposeConfiguration | PlainMessage<VideoComposeConfiguration> | undefined): boolean;
|
|
4512
4518
|
}
|
|
4513
4519
|
/**
|
|
4514
|
-
* @generated from enum norsk.api.media.
|
|
4520
|
+
* @generated from enum norsk.api.media.VideoComposeConfiguration.PixelFormat
|
|
4515
4521
|
*/
|
|
4516
|
-
export declare enum
|
|
4522
|
+
export declare enum VideoComposeConfiguration_PixelFormat {
|
|
4517
4523
|
/**
|
|
4518
4524
|
* @generated from enum value: UNSPECIFIED = 0;
|
|
4519
4525
|
*/
|
|
@@ -4552,9 +4558,9 @@ export declare enum ComposeVideoConfiguration_PixelFormat {
|
|
|
4552
4558
|
BGRA = 8
|
|
4553
4559
|
}
|
|
4554
4560
|
/**
|
|
4555
|
-
* @generated from enum norsk.api.media.
|
|
4561
|
+
* @generated from enum norsk.api.media.VideoComposeConfiguration.MissingStreamBehaviour
|
|
4556
4562
|
*/
|
|
4557
|
-
export declare enum
|
|
4563
|
+
export declare enum VideoComposeConfiguration_MissingStreamBehaviour {
|
|
4558
4564
|
/**
|
|
4559
4565
|
* @generated from enum value: UNSPECIFIED_BEHAVIOUR = 0;
|
|
4560
4566
|
*/
|
|
@@ -4574,30 +4580,30 @@ export declare enum ComposeVideoConfiguration_MissingStreamBehaviour {
|
|
|
4574
4580
|
DROP_PART = 2
|
|
4575
4581
|
}
|
|
4576
4582
|
/**
|
|
4577
|
-
* @generated from message norsk.api.media.
|
|
4583
|
+
* @generated from message norsk.api.media.VideoComposeUpdateConfiguration
|
|
4578
4584
|
*/
|
|
4579
|
-
export declare class
|
|
4585
|
+
export declare class VideoComposeUpdateConfiguration extends Message<VideoComposeUpdateConfiguration> {
|
|
4580
4586
|
/**
|
|
4581
4587
|
* Update the parts (images/overlays) to include in the composition
|
|
4582
4588
|
*
|
|
4583
4589
|
* @generated from field: repeated norsk.api.media.ComposePart parts = 1;
|
|
4584
4590
|
*/
|
|
4585
4591
|
parts: ComposePart[];
|
|
4586
|
-
constructor(data?: PartialMessage<
|
|
4592
|
+
constructor(data?: PartialMessage<VideoComposeUpdateConfiguration>);
|
|
4587
4593
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4588
|
-
static readonly typeName = "norsk.api.media.
|
|
4594
|
+
static readonly typeName = "norsk.api.media.VideoComposeUpdateConfiguration";
|
|
4589
4595
|
static readonly fields: FieldList;
|
|
4590
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4591
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4592
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4593
|
-
static equals(a:
|
|
4596
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoComposeUpdateConfiguration;
|
|
4597
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoComposeUpdateConfiguration;
|
|
4598
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoComposeUpdateConfiguration;
|
|
4599
|
+
static equals(a: VideoComposeUpdateConfiguration | PlainMessage<VideoComposeUpdateConfiguration> | undefined, b: VideoComposeUpdateConfiguration | PlainMessage<VideoComposeUpdateConfiguration> | undefined): boolean;
|
|
4594
4600
|
}
|
|
4595
4601
|
/**
|
|
4596
|
-
* @generated from message norsk.api.media.
|
|
4602
|
+
* @generated from message norsk.api.media.VideoComposeSourceEvent
|
|
4597
4603
|
*/
|
|
4598
|
-
export declare class
|
|
4604
|
+
export declare class VideoComposeSourceEvent extends Message<VideoComposeSourceEvent> {
|
|
4599
4605
|
/**
|
|
4600
|
-
* @generated from oneof norsk.api.media.
|
|
4606
|
+
* @generated from oneof norsk.api.media.VideoComposeSourceEvent.message
|
|
4601
4607
|
*/
|
|
4602
4608
|
message: {
|
|
4603
4609
|
/**
|
|
@@ -4627,14 +4633,14 @@ export declare class ComposeVideoSourceEvent extends Message<ComposeVideoSourceE
|
|
|
4627
4633
|
case: undefined;
|
|
4628
4634
|
value?: undefined;
|
|
4629
4635
|
};
|
|
4630
|
-
constructor(data?: PartialMessage<
|
|
4636
|
+
constructor(data?: PartialMessage<VideoComposeSourceEvent>);
|
|
4631
4637
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4632
|
-
static readonly typeName = "norsk.api.media.
|
|
4638
|
+
static readonly typeName = "norsk.api.media.VideoComposeSourceEvent";
|
|
4633
4639
|
static readonly fields: FieldList;
|
|
4634
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4635
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4636
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4637
|
-
static equals(a:
|
|
4640
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoComposeSourceEvent;
|
|
4641
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoComposeSourceEvent;
|
|
4642
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoComposeSourceEvent;
|
|
4643
|
+
static equals(a: VideoComposeSourceEvent | PlainMessage<VideoComposeSourceEvent> | undefined, b: VideoComposeSourceEvent | PlainMessage<VideoComposeSourceEvent> | undefined): boolean;
|
|
4638
4644
|
}
|
|
4639
4645
|
/**
|
|
4640
4646
|
* Indicates that the transitions specified in the last config update have
|
|
@@ -4658,9 +4664,9 @@ export declare class TransitionComplete extends Message<TransitionComplete> {
|
|
|
4658
4664
|
* *
|
|
4659
4665
|
* Describe an audio source with the output gain mapping for a mixer.
|
|
4660
4666
|
*
|
|
4661
|
-
* @generated from message norsk.api.media.
|
|
4667
|
+
* @generated from message norsk.api.media.AudioMixSource
|
|
4662
4668
|
*/
|
|
4663
|
-
export declare class
|
|
4669
|
+
export declare class AudioMixSource extends Message<AudioMixSource> {
|
|
4664
4670
|
/**
|
|
4665
4671
|
* Input pin for this source
|
|
4666
4672
|
*
|
|
@@ -4673,21 +4679,21 @@ export declare class AudioMixerSource extends Message<AudioMixerSource> {
|
|
|
4673
4679
|
* @generated from field: repeated norsk.api.media.Db channel_gains = 2;
|
|
4674
4680
|
*/
|
|
4675
4681
|
channelGains: Db[];
|
|
4676
|
-
constructor(data?: PartialMessage<
|
|
4682
|
+
constructor(data?: PartialMessage<AudioMixSource>);
|
|
4677
4683
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4678
|
-
static readonly typeName = "norsk.api.media.
|
|
4684
|
+
static readonly typeName = "norsk.api.media.AudioMixSource";
|
|
4679
4685
|
static readonly fields: FieldList;
|
|
4680
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4681
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4682
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4683
|
-
static equals(a:
|
|
4686
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixSource;
|
|
4687
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixSource;
|
|
4688
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixSource;
|
|
4689
|
+
static equals(a: AudioMixSource | PlainMessage<AudioMixSource> | undefined, b: AudioMixSource | PlainMessage<AudioMixSource> | undefined): boolean;
|
|
4684
4690
|
}
|
|
4685
4691
|
/**
|
|
4686
|
-
* @generated from message norsk.api.media.
|
|
4692
|
+
* @generated from message norsk.api.media.AudioMixMessage
|
|
4687
4693
|
*/
|
|
4688
|
-
export declare class
|
|
4694
|
+
export declare class AudioMixMessage extends Message<AudioMixMessage> {
|
|
4689
4695
|
/**
|
|
4690
|
-
* @generated from oneof norsk.api.media.
|
|
4696
|
+
* @generated from oneof norsk.api.media.AudioMixMessage.message
|
|
4691
4697
|
*/
|
|
4692
4698
|
message: {
|
|
4693
4699
|
/**
|
|
@@ -4697,36 +4703,36 @@ export declare class AudioMixerMessage extends Message<AudioMixerMessage> {
|
|
|
4697
4703
|
case: "subscription";
|
|
4698
4704
|
} | {
|
|
4699
4705
|
/**
|
|
4700
|
-
* @generated from field: norsk.api.media.
|
|
4706
|
+
* @generated from field: norsk.api.media.AudioMixConfiguration initial_config = 2;
|
|
4701
4707
|
*/
|
|
4702
|
-
value:
|
|
4708
|
+
value: AudioMixConfiguration;
|
|
4703
4709
|
case: "initialConfig";
|
|
4704
4710
|
} | {
|
|
4705
4711
|
/**
|
|
4706
|
-
* @generated from field: norsk.api.media.
|
|
4712
|
+
* @generated from field: norsk.api.media.AudioMixUpdateConfiguration update_config = 3;
|
|
4707
4713
|
*/
|
|
4708
|
-
value:
|
|
4714
|
+
value: AudioMixUpdateConfiguration;
|
|
4709
4715
|
case: "updateConfig";
|
|
4710
4716
|
} | {
|
|
4711
4717
|
case: undefined;
|
|
4712
4718
|
value?: undefined;
|
|
4713
4719
|
};
|
|
4714
|
-
constructor(data?: PartialMessage<
|
|
4720
|
+
constructor(data?: PartialMessage<AudioMixMessage>);
|
|
4715
4721
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4716
|
-
static readonly typeName = "norsk.api.media.
|
|
4722
|
+
static readonly typeName = "norsk.api.media.AudioMixMessage";
|
|
4717
4723
|
static readonly fields: FieldList;
|
|
4718
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4719
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4720
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4721
|
-
static equals(a:
|
|
4724
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixMessage;
|
|
4725
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixMessage;
|
|
4726
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixMessage;
|
|
4727
|
+
static equals(a: AudioMixMessage | PlainMessage<AudioMixMessage> | undefined, b: AudioMixMessage | PlainMessage<AudioMixMessage> | undefined): boolean;
|
|
4722
4728
|
}
|
|
4723
4729
|
/**
|
|
4724
4730
|
* *
|
|
4725
|
-
* Configure an
|
|
4731
|
+
* Configure an AudioMix Media Node.
|
|
4726
4732
|
*
|
|
4727
|
-
* @generated from message norsk.api.media.
|
|
4733
|
+
* @generated from message norsk.api.media.AudioMixConfiguration
|
|
4728
4734
|
*/
|
|
4729
|
-
export declare class
|
|
4735
|
+
export declare class AudioMixConfiguration extends Message<AudioMixConfiguration> {
|
|
4730
4736
|
/**
|
|
4731
4737
|
* The Media Node Id
|
|
4732
4738
|
*
|
|
@@ -4736,9 +4742,9 @@ export declare class AudioMixerConfiguration extends Message<AudioMixerConfigura
|
|
|
4736
4742
|
/**
|
|
4737
4743
|
* The audio sources to mix
|
|
4738
4744
|
*
|
|
4739
|
-
* @generated from field: repeated norsk.api.media.
|
|
4745
|
+
* @generated from field: repeated norsk.api.media.AudioMixSource sources = 2;
|
|
4740
4746
|
*/
|
|
4741
|
-
sources:
|
|
4747
|
+
sources: AudioMixSource[];
|
|
4742
4748
|
/**
|
|
4743
4749
|
* The source name to use for the output stream
|
|
4744
4750
|
*
|
|
@@ -4751,40 +4757,40 @@ export declare class AudioMixerConfiguration extends Message<AudioMixerConfigura
|
|
|
4751
4757
|
* @generated from field: norsk.api.media.SampleRate sample_rate = 4;
|
|
4752
4758
|
*/
|
|
4753
4759
|
sampleRate: SampleRate;
|
|
4754
|
-
constructor(data?: PartialMessage<
|
|
4760
|
+
constructor(data?: PartialMessage<AudioMixConfiguration>);
|
|
4755
4761
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4756
|
-
static readonly typeName = "norsk.api.media.
|
|
4762
|
+
static readonly typeName = "norsk.api.media.AudioMixConfiguration";
|
|
4757
4763
|
static readonly fields: FieldList;
|
|
4758
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4759
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4760
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4761
|
-
static equals(a:
|
|
4764
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixConfiguration;
|
|
4765
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixConfiguration;
|
|
4766
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixConfiguration;
|
|
4767
|
+
static equals(a: AudioMixConfiguration | PlainMessage<AudioMixConfiguration> | undefined, b: AudioMixConfiguration | PlainMessage<AudioMixConfiguration> | undefined): boolean;
|
|
4762
4768
|
}
|
|
4763
4769
|
/**
|
|
4764
|
-
* @generated from message norsk.api.media.
|
|
4770
|
+
* @generated from message norsk.api.media.AudioMixUpdateConfiguration
|
|
4765
4771
|
*/
|
|
4766
|
-
export declare class
|
|
4772
|
+
export declare class AudioMixUpdateConfiguration extends Message<AudioMixUpdateConfiguration> {
|
|
4767
4773
|
/**
|
|
4768
4774
|
* The channels to include in the mix
|
|
4769
4775
|
*
|
|
4770
|
-
* @generated from field: repeated norsk.api.media.
|
|
4776
|
+
* @generated from field: repeated norsk.api.media.AudioMixSource sources = 1;
|
|
4771
4777
|
*/
|
|
4772
|
-
sources:
|
|
4773
|
-
constructor(data?: PartialMessage<
|
|
4778
|
+
sources: AudioMixSource[];
|
|
4779
|
+
constructor(data?: PartialMessage<AudioMixUpdateConfiguration>);
|
|
4774
4780
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4775
|
-
static readonly typeName = "norsk.api.media.
|
|
4781
|
+
static readonly typeName = "norsk.api.media.AudioMixUpdateConfiguration";
|
|
4776
4782
|
static readonly fields: FieldList;
|
|
4777
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4778
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4779
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4780
|
-
static equals(a:
|
|
4783
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixUpdateConfiguration;
|
|
4784
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixUpdateConfiguration;
|
|
4785
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixUpdateConfiguration;
|
|
4786
|
+
static equals(a: AudioMixUpdateConfiguration | PlainMessage<AudioMixUpdateConfiguration> | undefined, b: AudioMixUpdateConfiguration | PlainMessage<AudioMixUpdateConfiguration> | undefined): boolean;
|
|
4781
4787
|
}
|
|
4782
4788
|
/**
|
|
4783
|
-
* @generated from message norsk.api.media.
|
|
4789
|
+
* @generated from message norsk.api.media.AudioMixEvent
|
|
4784
4790
|
*/
|
|
4785
|
-
export declare class
|
|
4791
|
+
export declare class AudioMixEvent extends Message<AudioMixEvent> {
|
|
4786
4792
|
/**
|
|
4787
|
-
* @generated from oneof norsk.api.media.
|
|
4793
|
+
* @generated from oneof norsk.api.media.AudioMixEvent.message
|
|
4788
4794
|
*/
|
|
4789
4795
|
message: {
|
|
4790
4796
|
/**
|
|
@@ -4808,21 +4814,21 @@ export declare class AudioMixerEvent extends Message<AudioMixerEvent> {
|
|
|
4808
4814
|
case: undefined;
|
|
4809
4815
|
value?: undefined;
|
|
4810
4816
|
};
|
|
4811
|
-
constructor(data?: PartialMessage<
|
|
4817
|
+
constructor(data?: PartialMessage<AudioMixEvent>);
|
|
4812
4818
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4813
|
-
static readonly typeName = "norsk.api.media.
|
|
4819
|
+
static readonly typeName = "norsk.api.media.AudioMixEvent";
|
|
4814
4820
|
static readonly fields: FieldList;
|
|
4815
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4816
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4817
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4818
|
-
static equals(a:
|
|
4821
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixEvent;
|
|
4822
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixEvent;
|
|
4823
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixEvent;
|
|
4824
|
+
static equals(a: AudioMixEvent | PlainMessage<AudioMixEvent> | undefined, b: AudioMixEvent | PlainMessage<AudioMixEvent> | undefined): boolean;
|
|
4819
4825
|
}
|
|
4820
4826
|
/**
|
|
4821
|
-
* @generated from message norsk.api.media.
|
|
4827
|
+
* @generated from message norsk.api.media.AudioMixMatrixMessage
|
|
4822
4828
|
*/
|
|
4823
|
-
export declare class
|
|
4829
|
+
export declare class AudioMixMatrixMessage extends Message<AudioMixMatrixMessage> {
|
|
4824
4830
|
/**
|
|
4825
|
-
* @generated from oneof norsk.api.media.
|
|
4831
|
+
* @generated from oneof norsk.api.media.AudioMixMatrixMessage.message
|
|
4826
4832
|
*/
|
|
4827
4833
|
message: {
|
|
4828
4834
|
/**
|
|
@@ -4832,28 +4838,28 @@ export declare class AudioMatrixMixerMessage extends Message<AudioMatrixMixerMes
|
|
|
4832
4838
|
case: "subscription";
|
|
4833
4839
|
} | {
|
|
4834
4840
|
/**
|
|
4835
|
-
* @generated from field: norsk.api.media.
|
|
4841
|
+
* @generated from field: norsk.api.media.AudioMixMatrixConfiguration initial_config = 2;
|
|
4836
4842
|
*/
|
|
4837
|
-
value:
|
|
4843
|
+
value: AudioMixMatrixConfiguration;
|
|
4838
4844
|
case: "initialConfig";
|
|
4839
4845
|
} | {
|
|
4840
4846
|
/**
|
|
4841
|
-
* @generated from field: norsk.api.media.
|
|
4847
|
+
* @generated from field: norsk.api.media.AudioMixMatrixUpdateConfiguration update_config = 3;
|
|
4842
4848
|
*/
|
|
4843
|
-
value:
|
|
4849
|
+
value: AudioMixMatrixUpdateConfiguration;
|
|
4844
4850
|
case: "updateConfig";
|
|
4845
4851
|
} | {
|
|
4846
4852
|
case: undefined;
|
|
4847
4853
|
value?: undefined;
|
|
4848
4854
|
};
|
|
4849
|
-
constructor(data?: PartialMessage<
|
|
4855
|
+
constructor(data?: PartialMessage<AudioMixMatrixMessage>);
|
|
4850
4856
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4851
|
-
static readonly typeName = "norsk.api.media.
|
|
4857
|
+
static readonly typeName = "norsk.api.media.AudioMixMatrixMessage";
|
|
4852
4858
|
static readonly fields: FieldList;
|
|
4853
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4854
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4855
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4856
|
-
static equals(a:
|
|
4859
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixMatrixMessage;
|
|
4860
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixMatrixMessage;
|
|
4861
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixMatrixMessage;
|
|
4862
|
+
static equals(a: AudioMixMatrixMessage | PlainMessage<AudioMixMatrixMessage> | undefined, b: AudioMixMatrixMessage | PlainMessage<AudioMixMatrixMessage> | undefined): boolean;
|
|
4857
4863
|
}
|
|
4858
4864
|
/**
|
|
4859
4865
|
* @generated from message norsk.api.media.ChannelGainMapping
|
|
@@ -4874,11 +4880,11 @@ export declare class ChannelGainMapping extends Message<ChannelGainMapping> {
|
|
|
4874
4880
|
}
|
|
4875
4881
|
/**
|
|
4876
4882
|
* *
|
|
4877
|
-
* Configure an
|
|
4883
|
+
* Configure an AudioMixMatrixMedia Node.
|
|
4878
4884
|
*
|
|
4879
|
-
* @generated from message norsk.api.media.
|
|
4885
|
+
* @generated from message norsk.api.media.AudioMixMatrixConfiguration
|
|
4880
4886
|
*/
|
|
4881
|
-
export declare class
|
|
4887
|
+
export declare class AudioMixMatrixConfiguration extends Message<AudioMixMatrixConfiguration> {
|
|
4882
4888
|
/**
|
|
4883
4889
|
* The Media Node Id
|
|
4884
4890
|
*
|
|
@@ -4914,38 +4920,38 @@ export declare class AudioMatrixMixerConfiguration extends Message<AudioMatrixMi
|
|
|
4914
4920
|
* @generated from field: repeated norsk.api.media.ChannelGainMapping channelGainMappings = 7;
|
|
4915
4921
|
*/
|
|
4916
4922
|
channelGainMappings: ChannelGainMapping[];
|
|
4917
|
-
constructor(data?: PartialMessage<
|
|
4923
|
+
constructor(data?: PartialMessage<AudioMixMatrixConfiguration>);
|
|
4918
4924
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4919
|
-
static readonly typeName = "norsk.api.media.
|
|
4925
|
+
static readonly typeName = "norsk.api.media.AudioMixMatrixConfiguration";
|
|
4920
4926
|
static readonly fields: FieldList;
|
|
4921
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4922
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4923
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4924
|
-
static equals(a:
|
|
4927
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixMatrixConfiguration;
|
|
4928
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixMatrixConfiguration;
|
|
4929
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixMatrixConfiguration;
|
|
4930
|
+
static equals(a: AudioMixMatrixConfiguration | PlainMessage<AudioMixMatrixConfiguration> | undefined, b: AudioMixMatrixConfiguration | PlainMessage<AudioMixMatrixConfiguration> | undefined): boolean;
|
|
4925
4931
|
}
|
|
4926
4932
|
/**
|
|
4927
|
-
* @generated from message norsk.api.media.
|
|
4933
|
+
* @generated from message norsk.api.media.AudioMixMatrixUpdateConfiguration
|
|
4928
4934
|
*/
|
|
4929
|
-
export declare class
|
|
4935
|
+
export declare class AudioMixMatrixUpdateConfiguration extends Message<AudioMixMatrixUpdateConfiguration> {
|
|
4930
4936
|
/**
|
|
4931
4937
|
* @generated from field: repeated norsk.api.media.ChannelGainMapping channelGainMappings = 1;
|
|
4932
4938
|
*/
|
|
4933
4939
|
channelGainMappings: ChannelGainMapping[];
|
|
4934
|
-
constructor(data?: PartialMessage<
|
|
4940
|
+
constructor(data?: PartialMessage<AudioMixMatrixUpdateConfiguration>);
|
|
4935
4941
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4936
|
-
static readonly typeName = "norsk.api.media.
|
|
4942
|
+
static readonly typeName = "norsk.api.media.AudioMixMatrixUpdateConfiguration";
|
|
4937
4943
|
static readonly fields: FieldList;
|
|
4938
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4939
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4940
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4941
|
-
static equals(a:
|
|
4944
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixMatrixUpdateConfiguration;
|
|
4945
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixMatrixUpdateConfiguration;
|
|
4946
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixMatrixUpdateConfiguration;
|
|
4947
|
+
static equals(a: AudioMixMatrixUpdateConfiguration | PlainMessage<AudioMixMatrixUpdateConfiguration> | undefined, b: AudioMixMatrixUpdateConfiguration | PlainMessage<AudioMixMatrixUpdateConfiguration> | undefined): boolean;
|
|
4942
4948
|
}
|
|
4943
4949
|
/**
|
|
4944
|
-
* @generated from message norsk.api.media.
|
|
4950
|
+
* @generated from message norsk.api.media.AudioMixMatrixEvent
|
|
4945
4951
|
*/
|
|
4946
|
-
export declare class
|
|
4952
|
+
export declare class AudioMixMatrixEvent extends Message<AudioMixMatrixEvent> {
|
|
4947
4953
|
/**
|
|
4948
|
-
* @generated from oneof norsk.api.media.
|
|
4954
|
+
* @generated from oneof norsk.api.media.AudioMixMatrixEvent.message
|
|
4949
4955
|
*/
|
|
4950
4956
|
message: {
|
|
4951
4957
|
/**
|
|
@@ -4969,14 +4975,14 @@ export declare class AudioMatrixMixerEvent extends Message<AudioMatrixMixerEvent
|
|
|
4969
4975
|
case: undefined;
|
|
4970
4976
|
value?: undefined;
|
|
4971
4977
|
};
|
|
4972
|
-
constructor(data?: PartialMessage<
|
|
4978
|
+
constructor(data?: PartialMessage<AudioMixMatrixEvent>);
|
|
4973
4979
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4974
|
-
static readonly typeName = "norsk.api.media.
|
|
4980
|
+
static readonly typeName = "norsk.api.media.AudioMixMatrixEvent";
|
|
4975
4981
|
static readonly fields: FieldList;
|
|
4976
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
4977
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
4978
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
4979
|
-
static equals(a:
|
|
4982
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMixMatrixEvent;
|
|
4983
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMixMatrixEvent;
|
|
4984
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMixMatrixEvent;
|
|
4985
|
+
static equals(a: AudioMixMatrixEvent | PlainMessage<AudioMixMatrixEvent> | undefined, b: AudioMixMatrixEvent | PlainMessage<AudioMixMatrixEvent> | undefined): boolean;
|
|
4980
4986
|
}
|
|
4981
4987
|
/**
|
|
4982
4988
|
* @generated from message norsk.api.media.AudioGainMessage
|
|
@@ -5030,7 +5036,7 @@ export declare class AudioGainConfiguration extends Message<AudioGainConfigurati
|
|
|
5030
5036
|
*/
|
|
5031
5037
|
id?: MediaNodeId;
|
|
5032
5038
|
/**
|
|
5033
|
-
* The gains
|
|
5039
|
+
* The gains for this source, one for each channel
|
|
5034
5040
|
*
|
|
5035
5041
|
* @generated from field: repeated norsk.api.media.Db channel_gains = 2;
|
|
5036
5042
|
*/
|
|
@@ -5049,7 +5055,7 @@ export declare class AudioGainConfiguration extends Message<AudioGainConfigurati
|
|
|
5049
5055
|
*/
|
|
5050
5056
|
export declare class AudioGainUpdateConfiguration extends Message<AudioGainUpdateConfiguration> {
|
|
5051
5057
|
/**
|
|
5052
|
-
* The
|
|
5058
|
+
* The gains for this source, one for each channel
|
|
5053
5059
|
*
|
|
5054
5060
|
* @generated from field: repeated norsk.api.media.Db channel_gains = 1;
|
|
5055
5061
|
*/
|
|
@@ -5184,6 +5190,11 @@ export declare class AudioBuildMultichannelConfiguration extends Message<AudioBu
|
|
|
5184
5190
|
*/
|
|
5185
5191
|
channelLayout?: ChannelLayout;
|
|
5186
5192
|
/**
|
|
5193
|
+
* *
|
|
5194
|
+
* Stream keys specifying the source for each channel, where the order is
|
|
5195
|
+
* significant. The streams must all have the same sample format and sample
|
|
5196
|
+
* rate.
|
|
5197
|
+
*
|
|
5187
5198
|
* @generated from field: repeated norsk.api.media.StreamKey channel_list = 7;
|
|
5188
5199
|
*/
|
|
5189
5200
|
channelList: StreamKey[];
|
|
@@ -5489,9 +5500,9 @@ export declare class CMAFDestination extends Message<CMAFDestination> {
|
|
|
5489
5500
|
static equals(a: CMAFDestination | PlainMessage<CMAFDestination> | undefined, b: CMAFDestination | PlainMessage<CMAFDestination> | undefined): boolean;
|
|
5490
5501
|
}
|
|
5491
5502
|
/**
|
|
5492
|
-
* @generated from message norsk.api.media.
|
|
5503
|
+
* @generated from message norsk.api.media.CmafVideoConfiguration
|
|
5493
5504
|
*/
|
|
5494
|
-
export declare class
|
|
5505
|
+
export declare class CmafVideoConfiguration extends Message<CmafVideoConfiguration> {
|
|
5495
5506
|
/**
|
|
5496
5507
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5497
5508
|
*/
|
|
@@ -5513,28 +5524,28 @@ export declare class HlsVideoConfiguration extends Message<HlsVideoConfiguration
|
|
|
5513
5524
|
*/
|
|
5514
5525
|
encryption?: Mp4Encryption;
|
|
5515
5526
|
/**
|
|
5516
|
-
* @generated from field: norsk.api.media.
|
|
5527
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
|
|
5517
5528
|
*/
|
|
5518
|
-
statsSampling?:
|
|
5529
|
+
statsSampling?: StreamStatisticsSampling;
|
|
5519
5530
|
/**
|
|
5520
5531
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 7;
|
|
5521
5532
|
*/
|
|
5522
5533
|
destinations: CMAFDestination[];
|
|
5523
|
-
constructor(data?: PartialMessage<
|
|
5534
|
+
constructor(data?: PartialMessage<CmafVideoConfiguration>);
|
|
5524
5535
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5525
|
-
static readonly typeName = "norsk.api.media.
|
|
5536
|
+
static readonly typeName = "norsk.api.media.CmafVideoConfiguration";
|
|
5526
5537
|
static readonly fields: FieldList;
|
|
5527
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5528
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5529
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5530
|
-
static equals(a:
|
|
5538
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafVideoConfiguration;
|
|
5539
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafVideoConfiguration;
|
|
5540
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafVideoConfiguration;
|
|
5541
|
+
static equals(a: CmafVideoConfiguration | PlainMessage<CmafVideoConfiguration> | undefined, b: CmafVideoConfiguration | PlainMessage<CmafVideoConfiguration> | undefined): boolean;
|
|
5531
5542
|
}
|
|
5532
5543
|
/**
|
|
5533
|
-
* @generated from message norsk.api.media.
|
|
5544
|
+
* @generated from message norsk.api.media.CmafVideoMessage
|
|
5534
5545
|
*/
|
|
5535
|
-
export declare class
|
|
5546
|
+
export declare class CmafVideoMessage extends Message<CmafVideoMessage> {
|
|
5536
5547
|
/**
|
|
5537
|
-
* @generated from oneof norsk.api.media.
|
|
5548
|
+
* @generated from oneof norsk.api.media.CmafVideoMessage.message
|
|
5538
5549
|
*/
|
|
5539
5550
|
message: {
|
|
5540
5551
|
/**
|
|
@@ -5544,9 +5555,9 @@ export declare class HlsVideoMessage extends Message<HlsVideoMessage> {
|
|
|
5544
5555
|
case: "subscription";
|
|
5545
5556
|
} | {
|
|
5546
5557
|
/**
|
|
5547
|
-
* @generated from field: norsk.api.media.
|
|
5558
|
+
* @generated from field: norsk.api.media.CmafVideoConfiguration configuration = 2;
|
|
5548
5559
|
*/
|
|
5549
|
-
value:
|
|
5560
|
+
value: CmafVideoConfiguration;
|
|
5550
5561
|
case: "configuration";
|
|
5551
5562
|
} | {
|
|
5552
5563
|
/**
|
|
@@ -5558,14 +5569,14 @@ export declare class HlsVideoMessage extends Message<HlsVideoMessage> {
|
|
|
5558
5569
|
case: undefined;
|
|
5559
5570
|
value?: undefined;
|
|
5560
5571
|
};
|
|
5561
|
-
constructor(data?: PartialMessage<
|
|
5572
|
+
constructor(data?: PartialMessage<CmafVideoMessage>);
|
|
5562
5573
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5563
|
-
static readonly typeName = "norsk.api.media.
|
|
5574
|
+
static readonly typeName = "norsk.api.media.CmafVideoMessage";
|
|
5564
5575
|
static readonly fields: FieldList;
|
|
5565
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5566
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5567
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5568
|
-
static equals(a:
|
|
5576
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafVideoMessage;
|
|
5577
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafVideoMessage;
|
|
5578
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafVideoMessage;
|
|
5579
|
+
static equals(a: CmafVideoMessage | PlainMessage<CmafVideoMessage> | undefined, b: CmafVideoMessage | PlainMessage<CmafVideoMessage> | undefined): boolean;
|
|
5569
5580
|
}
|
|
5570
5581
|
/**
|
|
5571
5582
|
* @generated from message norsk.api.media.HlsTsVideoConfiguration
|
|
@@ -5584,9 +5595,9 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
|
|
|
5584
5595
|
*/
|
|
5585
5596
|
delayOutputMs: number;
|
|
5586
5597
|
/**
|
|
5587
|
-
* @generated from field: norsk.api.media.
|
|
5598
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
5588
5599
|
*/
|
|
5589
|
-
statsSampling?:
|
|
5600
|
+
statsSampling?: StreamStatisticsSampling;
|
|
5590
5601
|
constructor(data?: PartialMessage<HlsTsVideoConfiguration>);
|
|
5591
5602
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5592
5603
|
static readonly typeName = "norsk.api.media.HlsTsVideoConfiguration";
|
|
@@ -5629,9 +5640,9 @@ export declare class HlsTsVideoMessage extends Message<HlsTsVideoMessage> {
|
|
|
5629
5640
|
static equals(a: HlsTsVideoMessage | PlainMessage<HlsTsVideoMessage> | undefined, b: HlsTsVideoMessage | PlainMessage<HlsTsVideoMessage> | undefined): boolean;
|
|
5630
5641
|
}
|
|
5631
5642
|
/**
|
|
5632
|
-
* @generated from message norsk.api.media.
|
|
5643
|
+
* @generated from message norsk.api.media.CmafAudioConfiguration
|
|
5633
5644
|
*/
|
|
5634
|
-
export declare class
|
|
5645
|
+
export declare class CmafAudioConfiguration extends Message<CmafAudioConfiguration> {
|
|
5635
5646
|
/**
|
|
5636
5647
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5637
5648
|
*/
|
|
@@ -5653,28 +5664,28 @@ export declare class HlsAudioConfiguration extends Message<HlsAudioConfiguration
|
|
|
5653
5664
|
*/
|
|
5654
5665
|
encryption?: Mp4Encryption;
|
|
5655
5666
|
/**
|
|
5656
|
-
* @generated from field: norsk.api.media.
|
|
5667
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 7;
|
|
5657
5668
|
*/
|
|
5658
|
-
statsSampling?:
|
|
5669
|
+
statsSampling?: StreamStatisticsSampling;
|
|
5659
5670
|
/**
|
|
5660
5671
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 8;
|
|
5661
5672
|
*/
|
|
5662
5673
|
destinations: CMAFDestination[];
|
|
5663
|
-
constructor(data?: PartialMessage<
|
|
5674
|
+
constructor(data?: PartialMessage<CmafAudioConfiguration>);
|
|
5664
5675
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5665
|
-
static readonly typeName = "norsk.api.media.
|
|
5676
|
+
static readonly typeName = "norsk.api.media.CmafAudioConfiguration";
|
|
5666
5677
|
static readonly fields: FieldList;
|
|
5667
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5668
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5669
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5670
|
-
static equals(a:
|
|
5678
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafAudioConfiguration;
|
|
5679
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafAudioConfiguration;
|
|
5680
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafAudioConfiguration;
|
|
5681
|
+
static equals(a: CmafAudioConfiguration | PlainMessage<CmafAudioConfiguration> | undefined, b: CmafAudioConfiguration | PlainMessage<CmafAudioConfiguration> | undefined): boolean;
|
|
5671
5682
|
}
|
|
5672
5683
|
/**
|
|
5673
|
-
* @generated from message norsk.api.media.
|
|
5684
|
+
* @generated from message norsk.api.media.CmafAudioMessage
|
|
5674
5685
|
*/
|
|
5675
|
-
export declare class
|
|
5686
|
+
export declare class CmafAudioMessage extends Message<CmafAudioMessage> {
|
|
5676
5687
|
/**
|
|
5677
|
-
* @generated from oneof norsk.api.media.
|
|
5688
|
+
* @generated from oneof norsk.api.media.CmafAudioMessage.message
|
|
5678
5689
|
*/
|
|
5679
5690
|
message: {
|
|
5680
5691
|
/**
|
|
@@ -5684,9 +5695,9 @@ export declare class HlsAudioMessage extends Message<HlsAudioMessage> {
|
|
|
5684
5695
|
case: "subscription";
|
|
5685
5696
|
} | {
|
|
5686
5697
|
/**
|
|
5687
|
-
* @generated from field: norsk.api.media.
|
|
5698
|
+
* @generated from field: norsk.api.media.CmafAudioConfiguration configuration = 2;
|
|
5688
5699
|
*/
|
|
5689
|
-
value:
|
|
5700
|
+
value: CmafAudioConfiguration;
|
|
5690
5701
|
case: "configuration";
|
|
5691
5702
|
} | {
|
|
5692
5703
|
/**
|
|
@@ -5698,14 +5709,14 @@ export declare class HlsAudioMessage extends Message<HlsAudioMessage> {
|
|
|
5698
5709
|
case: undefined;
|
|
5699
5710
|
value?: undefined;
|
|
5700
5711
|
};
|
|
5701
|
-
constructor(data?: PartialMessage<
|
|
5712
|
+
constructor(data?: PartialMessage<CmafAudioMessage>);
|
|
5702
5713
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5703
|
-
static readonly typeName = "norsk.api.media.
|
|
5714
|
+
static readonly typeName = "norsk.api.media.CmafAudioMessage";
|
|
5704
5715
|
static readonly fields: FieldList;
|
|
5705
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5706
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5707
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5708
|
-
static equals(a:
|
|
5716
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafAudioMessage;
|
|
5717
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafAudioMessage;
|
|
5718
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafAudioMessage;
|
|
5719
|
+
static equals(a: CmafAudioMessage | PlainMessage<CmafAudioMessage> | undefined, b: CmafAudioMessage | PlainMessage<CmafAudioMessage> | undefined): boolean;
|
|
5709
5720
|
}
|
|
5710
5721
|
/**
|
|
5711
5722
|
* @generated from message norsk.api.media.HlsTsAudioConfiguration
|
|
@@ -5724,9 +5735,9 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
|
|
|
5724
5735
|
*/
|
|
5725
5736
|
delayOutputMs: number;
|
|
5726
5737
|
/**
|
|
5727
|
-
* @generated from field: norsk.api.media.
|
|
5738
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
5728
5739
|
*/
|
|
5729
|
-
statsSampling?:
|
|
5740
|
+
statsSampling?: StreamStatisticsSampling;
|
|
5730
5741
|
constructor(data?: PartialMessage<HlsTsAudioConfiguration>);
|
|
5731
5742
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5732
5743
|
static readonly typeName = "norsk.api.media.HlsTsAudioConfiguration";
|
|
@@ -5769,9 +5780,9 @@ export declare class HlsTsAudioMessage extends Message<HlsTsAudioMessage> {
|
|
|
5769
5780
|
static equals(a: HlsTsAudioMessage | PlainMessage<HlsTsAudioMessage> | undefined, b: HlsTsAudioMessage | PlainMessage<HlsTsAudioMessage> | undefined): boolean;
|
|
5770
5781
|
}
|
|
5771
5782
|
/**
|
|
5772
|
-
* @generated from message norsk.api.media.
|
|
5783
|
+
* @generated from message norsk.api.media.CmafWebVttConfiguration
|
|
5773
5784
|
*/
|
|
5774
|
-
export declare class
|
|
5785
|
+
export declare class CmafWebVttConfiguration extends Message<CmafWebVttConfiguration> {
|
|
5775
5786
|
/**
|
|
5776
5787
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5777
5788
|
*/
|
|
@@ -5788,14 +5799,14 @@ export declare class HlsWebVttConfiguration extends Message<HlsWebVttConfigurati
|
|
|
5788
5799
|
* @generated from field: string sessionId = 4;
|
|
5789
5800
|
*/
|
|
5790
5801
|
sessionId: string;
|
|
5791
|
-
constructor(data?: PartialMessage<
|
|
5802
|
+
constructor(data?: PartialMessage<CmafWebVttConfiguration>);
|
|
5792
5803
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5793
|
-
static readonly typeName = "norsk.api.media.
|
|
5804
|
+
static readonly typeName = "norsk.api.media.CmafWebVttConfiguration";
|
|
5794
5805
|
static readonly fields: FieldList;
|
|
5795
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5796
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5797
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5798
|
-
static equals(a:
|
|
5806
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafWebVttConfiguration;
|
|
5807
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafWebVttConfiguration;
|
|
5808
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafWebVttConfiguration;
|
|
5809
|
+
static equals(a: CmafWebVttConfiguration | PlainMessage<CmafWebVttConfiguration> | undefined, b: CmafWebVttConfiguration | PlainMessage<CmafWebVttConfiguration> | undefined): boolean;
|
|
5799
5810
|
}
|
|
5800
5811
|
/**
|
|
5801
5812
|
* @generated from message norsk.api.media.AwsCredentials
|
|
@@ -5918,11 +5929,11 @@ export declare class HlsWebVttPushUpdateConfiguration extends Message<HlsWebVttP
|
|
|
5918
5929
|
static equals(a: HlsWebVttPushUpdateConfiguration | PlainMessage<HlsWebVttPushUpdateConfiguration> | undefined, b: HlsWebVttPushUpdateConfiguration | PlainMessage<HlsWebVttPushUpdateConfiguration> | undefined): boolean;
|
|
5919
5930
|
}
|
|
5920
5931
|
/**
|
|
5921
|
-
* @generated from message norsk.api.media.
|
|
5932
|
+
* @generated from message norsk.api.media.CmafWebVttMessage
|
|
5922
5933
|
*/
|
|
5923
|
-
export declare class
|
|
5934
|
+
export declare class CmafWebVttMessage extends Message<CmafWebVttMessage> {
|
|
5924
5935
|
/**
|
|
5925
|
-
* @generated from oneof norsk.api.media.
|
|
5936
|
+
* @generated from oneof norsk.api.media.CmafWebVttMessage.message
|
|
5926
5937
|
*/
|
|
5927
5938
|
message: {
|
|
5928
5939
|
/**
|
|
@@ -5932,22 +5943,22 @@ export declare class HlsWebVttMessage extends Message<HlsWebVttMessage> {
|
|
|
5932
5943
|
case: "subscription";
|
|
5933
5944
|
} | {
|
|
5934
5945
|
/**
|
|
5935
|
-
* @generated from field: norsk.api.media.
|
|
5946
|
+
* @generated from field: norsk.api.media.CmafWebVttConfiguration configuration = 2;
|
|
5936
5947
|
*/
|
|
5937
|
-
value:
|
|
5948
|
+
value: CmafWebVttConfiguration;
|
|
5938
5949
|
case: "configuration";
|
|
5939
5950
|
} | {
|
|
5940
5951
|
case: undefined;
|
|
5941
5952
|
value?: undefined;
|
|
5942
5953
|
};
|
|
5943
|
-
constructor(data?: PartialMessage<
|
|
5954
|
+
constructor(data?: PartialMessage<CmafWebVttMessage>);
|
|
5944
5955
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5945
|
-
static readonly typeName = "norsk.api.media.
|
|
5956
|
+
static readonly typeName = "norsk.api.media.CmafWebVttMessage";
|
|
5946
5957
|
static readonly fields: FieldList;
|
|
5947
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
5948
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
5949
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
5950
|
-
static equals(a:
|
|
5958
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafWebVttMessage;
|
|
5959
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafWebVttMessage;
|
|
5960
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafWebVttMessage;
|
|
5961
|
+
static equals(a: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined, b: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined): boolean;
|
|
5951
5962
|
}
|
|
5952
5963
|
/**
|
|
5953
5964
|
* @generated from message norsk.api.media.HlsWebVttPushMessage
|
|
@@ -5988,9 +5999,9 @@ export declare class HlsWebVttPushMessage extends Message<HlsWebVttPushMessage>
|
|
|
5988
5999
|
static equals(a: HlsWebVttPushMessage | PlainMessage<HlsWebVttPushMessage> | undefined, b: HlsWebVttPushMessage | PlainMessage<HlsWebVttPushMessage> | undefined): boolean;
|
|
5989
6000
|
}
|
|
5990
6001
|
/**
|
|
5991
|
-
* @generated from message norsk.api.media.
|
|
6002
|
+
* @generated from message norsk.api.media.CmafMasterConfiguration
|
|
5992
6003
|
*/
|
|
5993
|
-
export declare class
|
|
6004
|
+
export declare class CmafMasterConfiguration extends Message<CmafMasterConfiguration> {
|
|
5994
6005
|
/**
|
|
5995
6006
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
5996
6007
|
*/
|
|
@@ -6000,28 +6011,28 @@ export declare class HlsMasterConfiguration extends Message<HlsMasterConfigurati
|
|
|
6000
6011
|
*/
|
|
6001
6012
|
playlistName: string;
|
|
6002
6013
|
/**
|
|
6003
|
-
* @generated from field: norsk.api.media.
|
|
6014
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
6004
6015
|
*/
|
|
6005
|
-
statsSampling?:
|
|
6016
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6006
6017
|
/**
|
|
6007
6018
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 4;
|
|
6008
6019
|
*/
|
|
6009
6020
|
destinations: CMAFDestination[];
|
|
6010
|
-
constructor(data?: PartialMessage<
|
|
6021
|
+
constructor(data?: PartialMessage<CmafMasterConfiguration>);
|
|
6011
6022
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6012
|
-
static readonly typeName = "norsk.api.media.
|
|
6023
|
+
static readonly typeName = "norsk.api.media.CmafMasterConfiguration";
|
|
6013
6024
|
static readonly fields: FieldList;
|
|
6014
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6015
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6016
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6017
|
-
static equals(a:
|
|
6025
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMasterConfiguration;
|
|
6026
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMasterConfiguration;
|
|
6027
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMasterConfiguration;
|
|
6028
|
+
static equals(a: CmafMasterConfiguration | PlainMessage<CmafMasterConfiguration> | undefined, b: CmafMasterConfiguration | PlainMessage<CmafMasterConfiguration> | undefined): boolean;
|
|
6018
6029
|
}
|
|
6019
6030
|
/**
|
|
6020
|
-
* @generated from message norsk.api.media.
|
|
6031
|
+
* @generated from message norsk.api.media.CmafMasterMessage
|
|
6021
6032
|
*/
|
|
6022
|
-
export declare class
|
|
6033
|
+
export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
|
|
6023
6034
|
/**
|
|
6024
|
-
* @generated from oneof norsk.api.media.
|
|
6035
|
+
* @generated from oneof norsk.api.media.CmafMasterMessage.message
|
|
6025
6036
|
*/
|
|
6026
6037
|
message: {
|
|
6027
6038
|
/**
|
|
@@ -6031,9 +6042,9 @@ export declare class HlsMasterMessage extends Message<HlsMasterMessage> {
|
|
|
6031
6042
|
case: "subscription";
|
|
6032
6043
|
} | {
|
|
6033
6044
|
/**
|
|
6034
|
-
* @generated from field: norsk.api.media.
|
|
6045
|
+
* @generated from field: norsk.api.media.CmafMasterConfiguration configuration = 2;
|
|
6035
6046
|
*/
|
|
6036
|
-
value:
|
|
6047
|
+
value: CmafMasterConfiguration;
|
|
6037
6048
|
case: "configuration";
|
|
6038
6049
|
} | {
|
|
6039
6050
|
/**
|
|
@@ -6045,14 +6056,14 @@ export declare class HlsMasterMessage extends Message<HlsMasterMessage> {
|
|
|
6045
6056
|
case: undefined;
|
|
6046
6057
|
value?: undefined;
|
|
6047
6058
|
};
|
|
6048
|
-
constructor(data?: PartialMessage<
|
|
6059
|
+
constructor(data?: PartialMessage<CmafMasterMessage>);
|
|
6049
6060
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6050
|
-
static readonly typeName = "norsk.api.media.
|
|
6061
|
+
static readonly typeName = "norsk.api.media.CmafMasterMessage";
|
|
6051
6062
|
static readonly fields: FieldList;
|
|
6052
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6053
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6054
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6055
|
-
static equals(a:
|
|
6063
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMasterMessage;
|
|
6064
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMasterMessage;
|
|
6065
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMasterMessage;
|
|
6066
|
+
static equals(a: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined, b: CmafMasterMessage | PlainMessage<CmafMasterMessage> | undefined): boolean;
|
|
6056
6067
|
}
|
|
6057
6068
|
/**
|
|
6058
6069
|
* @generated from message norsk.api.media.HlsMasterPushConfiguration
|
|
@@ -6071,9 +6082,9 @@ export declare class HlsMasterPushConfiguration extends Message<HlsMasterPushCon
|
|
|
6071
6082
|
*/
|
|
6072
6083
|
destination?: CMAFDestination;
|
|
6073
6084
|
/**
|
|
6074
|
-
* @generated from field: norsk.api.media.
|
|
6085
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
6075
6086
|
*/
|
|
6076
|
-
statsSampling?:
|
|
6087
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6077
6088
|
constructor(data?: PartialMessage<HlsMasterPushConfiguration>);
|
|
6078
6089
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6079
6090
|
static readonly typeName = "norsk.api.media.HlsMasterPushConfiguration";
|
|
@@ -6136,9 +6147,9 @@ export declare class HlsTsVideoPushConfiguration extends Message<HlsTsVideoPushC
|
|
|
6136
6147
|
*/
|
|
6137
6148
|
delayOutputMs: number;
|
|
6138
6149
|
/**
|
|
6139
|
-
* @generated from field: norsk.api.media.
|
|
6150
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
6140
6151
|
*/
|
|
6141
|
-
statsSampling?:
|
|
6152
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6142
6153
|
constructor(data?: PartialMessage<HlsTsVideoPushConfiguration>);
|
|
6143
6154
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6144
6155
|
static readonly typeName = "norsk.api.media.HlsTsVideoPushConfiguration";
|
|
@@ -6201,9 +6212,9 @@ export declare class HlsTsAudioPushConfiguration extends Message<HlsTsAudioPushC
|
|
|
6201
6212
|
*/
|
|
6202
6213
|
delayOutputMs: number;
|
|
6203
6214
|
/**
|
|
6204
|
-
* @generated from field: norsk.api.media.
|
|
6215
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
6205
6216
|
*/
|
|
6206
|
-
statsSampling?:
|
|
6217
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6207
6218
|
constructor(data?: PartialMessage<HlsTsAudioPushConfiguration>);
|
|
6208
6219
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6209
6220
|
static readonly typeName = "norsk.api.media.HlsTsAudioPushConfiguration";
|
|
@@ -6270,9 +6281,9 @@ export declare class HlsTsCombinedPushConfiguration extends Message<HlsTsCombine
|
|
|
6270
6281
|
*/
|
|
6271
6282
|
playlistName: string;
|
|
6272
6283
|
/**
|
|
6273
|
-
* @generated from field: norsk.api.media.
|
|
6284
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
|
|
6274
6285
|
*/
|
|
6275
|
-
statsSampling?:
|
|
6286
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6276
6287
|
constructor(data?: PartialMessage<HlsTsCombinedPushConfiguration>);
|
|
6277
6288
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6278
6289
|
static readonly typeName = "norsk.api.media.HlsTsCombinedPushConfiguration";
|
|
@@ -6378,10 +6389,10 @@ export declare class HlsOutputEvent extends Message<HlsOutputEvent> {
|
|
|
6378
6389
|
case: "inboundContext";
|
|
6379
6390
|
} | {
|
|
6380
6391
|
/**
|
|
6381
|
-
* @generated from field: norsk.api.media.
|
|
6392
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
6382
6393
|
*/
|
|
6383
|
-
value:
|
|
6384
|
-
case: "
|
|
6394
|
+
value: MultiStreamStatistics;
|
|
6395
|
+
case: "streamStatistics";
|
|
6385
6396
|
} | {
|
|
6386
6397
|
case: undefined;
|
|
6387
6398
|
value?: undefined;
|
|
@@ -6396,9 +6407,9 @@ export declare class HlsOutputEvent extends Message<HlsOutputEvent> {
|
|
|
6396
6407
|
static equals(a: HlsOutputEvent | PlainMessage<HlsOutputEvent> | undefined, b: HlsOutputEvent | PlainMessage<HlsOutputEvent> | undefined): boolean;
|
|
6397
6408
|
}
|
|
6398
6409
|
/**
|
|
6399
|
-
* @generated from message norsk.api.media.
|
|
6410
|
+
* @generated from message norsk.api.media.UdpTsOutputConfiguration
|
|
6400
6411
|
*/
|
|
6401
|
-
export declare class
|
|
6412
|
+
export declare class UdpTsOutputConfiguration extends Message<UdpTsOutputConfiguration> {
|
|
6402
6413
|
/**
|
|
6403
6414
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
6404
6415
|
*/
|
|
@@ -6416,24 +6427,24 @@ export declare class TsUdpOutputConfiguration extends Message<TsUdpOutputConfigu
|
|
|
6416
6427
|
*/
|
|
6417
6428
|
destinationPort: number;
|
|
6418
6429
|
/**
|
|
6419
|
-
* @generated from field: norsk.api.media.
|
|
6430
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
6420
6431
|
*/
|
|
6421
|
-
statsSampling?:
|
|
6422
|
-
constructor(data?: PartialMessage<
|
|
6432
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6433
|
+
constructor(data?: PartialMessage<UdpTsOutputConfiguration>);
|
|
6423
6434
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6424
|
-
static readonly typeName = "norsk.api.media.
|
|
6435
|
+
static readonly typeName = "norsk.api.media.UdpTsOutputConfiguration";
|
|
6425
6436
|
static readonly fields: FieldList;
|
|
6426
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6427
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6428
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6429
|
-
static equals(a:
|
|
6437
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UdpTsOutputConfiguration;
|
|
6438
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UdpTsOutputConfiguration;
|
|
6439
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UdpTsOutputConfiguration;
|
|
6440
|
+
static equals(a: UdpTsOutputConfiguration | PlainMessage<UdpTsOutputConfiguration> | undefined, b: UdpTsOutputConfiguration | PlainMessage<UdpTsOutputConfiguration> | undefined): boolean;
|
|
6430
6441
|
}
|
|
6431
6442
|
/**
|
|
6432
|
-
* @generated from message norsk.api.media.
|
|
6443
|
+
* @generated from message norsk.api.media.UdpTsOutputMessage
|
|
6433
6444
|
*/
|
|
6434
|
-
export declare class
|
|
6445
|
+
export declare class UdpTsOutputMessage extends Message<UdpTsOutputMessage> {
|
|
6435
6446
|
/**
|
|
6436
|
-
* @generated from oneof norsk.api.media.
|
|
6447
|
+
* @generated from oneof norsk.api.media.UdpTsOutputMessage.message
|
|
6437
6448
|
*/
|
|
6438
6449
|
message: {
|
|
6439
6450
|
/**
|
|
@@ -6443,29 +6454,29 @@ export declare class TsUdpOutputMessage extends Message<TsUdpOutputMessage> {
|
|
|
6443
6454
|
case: "subscription";
|
|
6444
6455
|
} | {
|
|
6445
6456
|
/**
|
|
6446
|
-
* @generated from field: norsk.api.media.
|
|
6457
|
+
* @generated from field: norsk.api.media.UdpTsOutputConfiguration configuration = 2;
|
|
6447
6458
|
*/
|
|
6448
|
-
value:
|
|
6459
|
+
value: UdpTsOutputConfiguration;
|
|
6449
6460
|
case: "configuration";
|
|
6450
6461
|
} | {
|
|
6451
6462
|
case: undefined;
|
|
6452
6463
|
value?: undefined;
|
|
6453
6464
|
};
|
|
6454
|
-
constructor(data?: PartialMessage<
|
|
6465
|
+
constructor(data?: PartialMessage<UdpTsOutputMessage>);
|
|
6455
6466
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6456
|
-
static readonly typeName = "norsk.api.media.
|
|
6467
|
+
static readonly typeName = "norsk.api.media.UdpTsOutputMessage";
|
|
6457
6468
|
static readonly fields: FieldList;
|
|
6458
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6459
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6460
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6461
|
-
static equals(a:
|
|
6469
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UdpTsOutputMessage;
|
|
6470
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UdpTsOutputMessage;
|
|
6471
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UdpTsOutputMessage;
|
|
6472
|
+
static equals(a: UdpTsOutputMessage | PlainMessage<UdpTsOutputMessage> | undefined, b: UdpTsOutputMessage | PlainMessage<UdpTsOutputMessage> | undefined): boolean;
|
|
6462
6473
|
}
|
|
6463
6474
|
/**
|
|
6464
|
-
* @generated from message norsk.api.media.
|
|
6475
|
+
* @generated from message norsk.api.media.UdpTsOutputEvent
|
|
6465
6476
|
*/
|
|
6466
|
-
export declare class
|
|
6477
|
+
export declare class UdpTsOutputEvent extends Message<UdpTsOutputEvent> {
|
|
6467
6478
|
/**
|
|
6468
|
-
* @generated from oneof norsk.api.media.
|
|
6479
|
+
* @generated from oneof norsk.api.media.UdpTsOutputEvent.message
|
|
6469
6480
|
*/
|
|
6470
6481
|
message: {
|
|
6471
6482
|
/**
|
|
@@ -6487,22 +6498,22 @@ export declare class TsUdpOutputEvent extends Message<TsUdpOutputEvent> {
|
|
|
6487
6498
|
case: "inboundContext";
|
|
6488
6499
|
} | {
|
|
6489
6500
|
/**
|
|
6490
|
-
* @generated from field: norsk.api.media.
|
|
6501
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
6491
6502
|
*/
|
|
6492
|
-
value:
|
|
6493
|
-
case: "
|
|
6503
|
+
value: MultiStreamStatistics;
|
|
6504
|
+
case: "streamStatistics";
|
|
6494
6505
|
} | {
|
|
6495
6506
|
case: undefined;
|
|
6496
6507
|
value?: undefined;
|
|
6497
6508
|
};
|
|
6498
|
-
constructor(data?: PartialMessage<
|
|
6509
|
+
constructor(data?: PartialMessage<UdpTsOutputEvent>);
|
|
6499
6510
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6500
|
-
static readonly typeName = "norsk.api.media.
|
|
6511
|
+
static readonly typeName = "norsk.api.media.UdpTsOutputEvent";
|
|
6501
6512
|
static readonly fields: FieldList;
|
|
6502
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6503
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6504
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6505
|
-
static equals(a:
|
|
6513
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UdpTsOutputEvent;
|
|
6514
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UdpTsOutputEvent;
|
|
6515
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UdpTsOutputEvent;
|
|
6516
|
+
static equals(a: UdpTsOutputEvent | PlainMessage<UdpTsOutputEvent> | undefined, b: UdpTsOutputEvent | PlainMessage<UdpTsOutputEvent> | undefined): boolean;
|
|
6506
6517
|
}
|
|
6507
6518
|
/**
|
|
6508
6519
|
* @generated from message norsk.api.media.SrtOutputConfiguration
|
|
@@ -6533,9 +6544,9 @@ export declare class SrtOutputConfiguration extends Message<SrtOutputConfigurati
|
|
|
6533
6544
|
*/
|
|
6534
6545
|
streamId?: OptionalString;
|
|
6535
6546
|
/**
|
|
6536
|
-
* @generated from field: norsk.api.media.
|
|
6547
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 8;
|
|
6537
6548
|
*/
|
|
6538
|
-
statsSampling?:
|
|
6549
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6539
6550
|
constructor(data?: PartialMessage<SrtOutputConfiguration>);
|
|
6540
6551
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6541
6552
|
static readonly typeName = "norsk.api.media.SrtOutputConfiguration";
|
|
@@ -6610,10 +6621,10 @@ export declare class SrtOutputEvent extends Message<SrtOutputEvent> {
|
|
|
6610
6621
|
case: "onConnect";
|
|
6611
6622
|
} | {
|
|
6612
6623
|
/**
|
|
6613
|
-
* @generated from field: norsk.api.media.
|
|
6624
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
|
|
6614
6625
|
*/
|
|
6615
|
-
value:
|
|
6616
|
-
case: "
|
|
6626
|
+
value: MultiStreamStatistics;
|
|
6627
|
+
case: "streamStatistics";
|
|
6617
6628
|
} | {
|
|
6618
6629
|
case: undefined;
|
|
6619
6630
|
value?: undefined;
|
|
@@ -6628,9 +6639,9 @@ export declare class SrtOutputEvent extends Message<SrtOutputEvent> {
|
|
|
6628
6639
|
static equals(a: SrtOutputEvent | PlainMessage<SrtOutputEvent> | undefined, b: SrtOutputEvent | PlainMessage<SrtOutputEvent> | undefined): boolean;
|
|
6629
6640
|
}
|
|
6630
6641
|
/**
|
|
6631
|
-
* @generated from message norsk.api.media.
|
|
6642
|
+
* @generated from message norsk.api.media.WhipOutputConfiguration
|
|
6632
6643
|
*/
|
|
6633
|
-
export declare class
|
|
6644
|
+
export declare class WhipOutputConfiguration extends Message<WhipOutputConfiguration> {
|
|
6634
6645
|
/**
|
|
6635
6646
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
6636
6647
|
*/
|
|
@@ -6644,24 +6655,24 @@ export declare class WebRTCWhipOutputConfiguration extends Message<WebRTCWhipOut
|
|
|
6644
6655
|
*/
|
|
6645
6656
|
authHeader: string;
|
|
6646
6657
|
/**
|
|
6647
|
-
* @generated from field: norsk.api.media.
|
|
6658
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
6648
6659
|
*/
|
|
6649
|
-
statsSampling?:
|
|
6650
|
-
constructor(data?: PartialMessage<
|
|
6660
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6661
|
+
constructor(data?: PartialMessage<WhipOutputConfiguration>);
|
|
6651
6662
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6652
|
-
static readonly typeName = "norsk.api.media.
|
|
6663
|
+
static readonly typeName = "norsk.api.media.WhipOutputConfiguration";
|
|
6653
6664
|
static readonly fields: FieldList;
|
|
6654
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6655
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6656
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6657
|
-
static equals(a:
|
|
6665
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputConfiguration;
|
|
6666
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputConfiguration;
|
|
6667
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputConfiguration;
|
|
6668
|
+
static equals(a: WhipOutputConfiguration | PlainMessage<WhipOutputConfiguration> | undefined, b: WhipOutputConfiguration | PlainMessage<WhipOutputConfiguration> | undefined): boolean;
|
|
6658
6669
|
}
|
|
6659
6670
|
/**
|
|
6660
|
-
* @generated from message norsk.api.media.
|
|
6671
|
+
* @generated from message norsk.api.media.WhipOutputMessage
|
|
6661
6672
|
*/
|
|
6662
|
-
export declare class
|
|
6673
|
+
export declare class WhipOutputMessage extends Message<WhipOutputMessage> {
|
|
6663
6674
|
/**
|
|
6664
|
-
* @generated from oneof norsk.api.media.
|
|
6675
|
+
* @generated from oneof norsk.api.media.WhipOutputMessage.message
|
|
6665
6676
|
*/
|
|
6666
6677
|
message: {
|
|
6667
6678
|
/**
|
|
@@ -6671,50 +6682,50 @@ export declare class WebRTCWhipOutputMessage extends Message<WebRTCWhipOutputMes
|
|
|
6671
6682
|
case: "subscription";
|
|
6672
6683
|
} | {
|
|
6673
6684
|
/**
|
|
6674
|
-
* @generated from field: norsk.api.media.
|
|
6685
|
+
* @generated from field: norsk.api.media.WhipOutputConfiguration configuration = 2;
|
|
6675
6686
|
*/
|
|
6676
|
-
value:
|
|
6687
|
+
value: WhipOutputConfiguration;
|
|
6677
6688
|
case: "configuration";
|
|
6678
6689
|
} | {
|
|
6679
6690
|
case: undefined;
|
|
6680
6691
|
value?: undefined;
|
|
6681
6692
|
};
|
|
6682
|
-
constructor(data?: PartialMessage<
|
|
6693
|
+
constructor(data?: PartialMessage<WhipOutputMessage>);
|
|
6683
6694
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6684
|
-
static readonly typeName = "norsk.api.media.
|
|
6695
|
+
static readonly typeName = "norsk.api.media.WhipOutputMessage";
|
|
6685
6696
|
static readonly fields: FieldList;
|
|
6686
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6687
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6688
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6689
|
-
static equals(a:
|
|
6697
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputMessage;
|
|
6698
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputMessage;
|
|
6699
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputMessage;
|
|
6700
|
+
static equals(a: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined, b: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined): boolean;
|
|
6690
6701
|
}
|
|
6691
6702
|
/**
|
|
6692
|
-
* @generated from message norsk.api.media.
|
|
6703
|
+
* @generated from message norsk.api.media.WebRTCBrowserDuplexConfiguration
|
|
6693
6704
|
*/
|
|
6694
|
-
export declare class
|
|
6705
|
+
export declare class WebRTCBrowserDuplexConfiguration extends Message<WebRTCBrowserDuplexConfiguration> {
|
|
6695
6706
|
/**
|
|
6696
6707
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
6697
6708
|
*/
|
|
6698
6709
|
id?: MediaNodeId;
|
|
6699
6710
|
/**
|
|
6700
|
-
* @generated from field: norsk.api.media.
|
|
6711
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
|
|
6701
6712
|
*/
|
|
6702
|
-
statsSampling?:
|
|
6703
|
-
constructor(data?: PartialMessage<
|
|
6713
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6714
|
+
constructor(data?: PartialMessage<WebRTCBrowserDuplexConfiguration>);
|
|
6704
6715
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6705
|
-
static readonly typeName = "norsk.api.media.
|
|
6716
|
+
static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexConfiguration";
|
|
6706
6717
|
static readonly fields: FieldList;
|
|
6707
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6708
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6709
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6710
|
-
static equals(a:
|
|
6718
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRTCBrowserDuplexConfiguration;
|
|
6719
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexConfiguration;
|
|
6720
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexConfiguration;
|
|
6721
|
+
static equals(a: WebRTCBrowserDuplexConfiguration | PlainMessage<WebRTCBrowserDuplexConfiguration> | undefined, b: WebRTCBrowserDuplexConfiguration | PlainMessage<WebRTCBrowserDuplexConfiguration> | undefined): boolean;
|
|
6711
6722
|
}
|
|
6712
6723
|
/**
|
|
6713
|
-
* @generated from message norsk.api.media.
|
|
6724
|
+
* @generated from message norsk.api.media.WebRTCBrowserDuplexMessage
|
|
6714
6725
|
*/
|
|
6715
|
-
export declare class
|
|
6726
|
+
export declare class WebRTCBrowserDuplexMessage extends Message<WebRTCBrowserDuplexMessage> {
|
|
6716
6727
|
/**
|
|
6717
|
-
* @generated from oneof norsk.api.media.
|
|
6728
|
+
* @generated from oneof norsk.api.media.WebRTCBrowserDuplexMessage.message
|
|
6718
6729
|
*/
|
|
6719
6730
|
message: {
|
|
6720
6731
|
/**
|
|
@@ -6724,29 +6735,29 @@ export declare class WebRTCLocalOutputMessage extends Message<WebRTCLocalOutputM
|
|
|
6724
6735
|
case: "subscription";
|
|
6725
6736
|
} | {
|
|
6726
6737
|
/**
|
|
6727
|
-
* @generated from field: norsk.api.media.
|
|
6738
|
+
* @generated from field: norsk.api.media.WebRTCBrowserDuplexConfiguration configuration = 2;
|
|
6728
6739
|
*/
|
|
6729
|
-
value:
|
|
6740
|
+
value: WebRTCBrowserDuplexConfiguration;
|
|
6730
6741
|
case: "configuration";
|
|
6731
6742
|
} | {
|
|
6732
6743
|
case: undefined;
|
|
6733
6744
|
value?: undefined;
|
|
6734
6745
|
};
|
|
6735
|
-
constructor(data?: PartialMessage<
|
|
6746
|
+
constructor(data?: PartialMessage<WebRTCBrowserDuplexMessage>);
|
|
6736
6747
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6737
|
-
static readonly typeName = "norsk.api.media.
|
|
6748
|
+
static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexMessage";
|
|
6738
6749
|
static readonly fields: FieldList;
|
|
6739
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6740
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6741
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6742
|
-
static equals(a:
|
|
6750
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRTCBrowserDuplexMessage;
|
|
6751
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexMessage;
|
|
6752
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexMessage;
|
|
6753
|
+
static equals(a: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined, b: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined): boolean;
|
|
6743
6754
|
}
|
|
6744
6755
|
/**
|
|
6745
|
-
* @generated from message norsk.api.media.
|
|
6756
|
+
* @generated from message norsk.api.media.WhipOutputEvent
|
|
6746
6757
|
*/
|
|
6747
|
-
export declare class
|
|
6758
|
+
export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
|
|
6748
6759
|
/**
|
|
6749
|
-
* @generated from oneof norsk.api.media.
|
|
6760
|
+
* @generated from oneof norsk.api.media.WhipOutputEvent.message
|
|
6750
6761
|
*/
|
|
6751
6762
|
message: {
|
|
6752
6763
|
/**
|
|
@@ -6768,22 +6779,22 @@ export declare class WebRTCWhipOutputEvent extends Message<WebRTCWhipOutputEvent
|
|
|
6768
6779
|
case: "inboundContext";
|
|
6769
6780
|
} | {
|
|
6770
6781
|
/**
|
|
6771
|
-
* @generated from field: norsk.api.media.
|
|
6782
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
6772
6783
|
*/
|
|
6773
|
-
value:
|
|
6774
|
-
case: "
|
|
6784
|
+
value: MultiStreamStatistics;
|
|
6785
|
+
case: "streamStatistics";
|
|
6775
6786
|
} | {
|
|
6776
6787
|
case: undefined;
|
|
6777
6788
|
value?: undefined;
|
|
6778
6789
|
};
|
|
6779
|
-
constructor(data?: PartialMessage<
|
|
6790
|
+
constructor(data?: PartialMessage<WhipOutputEvent>);
|
|
6780
6791
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6781
|
-
static readonly typeName = "norsk.api.media.
|
|
6792
|
+
static readonly typeName = "norsk.api.media.WhipOutputEvent";
|
|
6782
6793
|
static readonly fields: FieldList;
|
|
6783
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6784
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6785
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6786
|
-
static equals(a:
|
|
6794
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputEvent;
|
|
6795
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputEvent;
|
|
6796
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputEvent;
|
|
6797
|
+
static equals(a: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined, b: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined): boolean;
|
|
6787
6798
|
}
|
|
6788
6799
|
/**
|
|
6789
6800
|
* @generated from message norsk.api.media.WebRTCBrowserDuplexEvent
|
|
@@ -6818,10 +6829,10 @@ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuple
|
|
|
6818
6829
|
case: "outboundContext";
|
|
6819
6830
|
} | {
|
|
6820
6831
|
/**
|
|
6821
|
-
* @generated from field: norsk.api.media.
|
|
6832
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
|
|
6822
6833
|
*/
|
|
6823
|
-
value:
|
|
6824
|
-
case: "
|
|
6834
|
+
value: MultiStreamStatistics;
|
|
6835
|
+
case: "streamStatistics";
|
|
6825
6836
|
} | {
|
|
6826
6837
|
case: undefined;
|
|
6827
6838
|
value?: undefined;
|
|
@@ -6848,13 +6859,9 @@ export declare class RtmpOutputConfiguration extends Message<RtmpOutputConfigura
|
|
|
6848
6859
|
*/
|
|
6849
6860
|
url: string;
|
|
6850
6861
|
/**
|
|
6851
|
-
* @generated from field:
|
|
6862
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
6852
6863
|
*/
|
|
6853
|
-
|
|
6854
|
-
/**
|
|
6855
|
-
* @generated from field: norsk.api.media.StreamStatsSampling stats_sampling = 4;
|
|
6856
|
-
*/
|
|
6857
|
-
statsSampling?: StreamStatsSampling;
|
|
6864
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6858
6865
|
constructor(data?: PartialMessage<RtmpOutputConfiguration>);
|
|
6859
6866
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6860
6867
|
static readonly typeName = "norsk.api.media.RtmpOutputConfiguration";
|
|
@@ -6923,10 +6930,10 @@ export declare class RtmpOutputEvent extends Message<RtmpOutputEvent> {
|
|
|
6923
6930
|
case: "inboundContext";
|
|
6924
6931
|
} | {
|
|
6925
6932
|
/**
|
|
6926
|
-
* @generated from field: norsk.api.media.
|
|
6933
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
6927
6934
|
*/
|
|
6928
|
-
value:
|
|
6929
|
-
case: "
|
|
6935
|
+
value: MultiStreamStatistics;
|
|
6936
|
+
case: "streamStatistics";
|
|
6930
6937
|
} | {
|
|
6931
6938
|
case: undefined;
|
|
6932
6939
|
value?: undefined;
|
|
@@ -6941,9 +6948,9 @@ export declare class RtmpOutputEvent extends Message<RtmpOutputEvent> {
|
|
|
6941
6948
|
static equals(a: RtmpOutputEvent | PlainMessage<RtmpOutputEvent> | undefined, b: RtmpOutputEvent | PlainMessage<RtmpOutputEvent> | undefined): boolean;
|
|
6942
6949
|
}
|
|
6943
6950
|
/**
|
|
6944
|
-
* @generated from message norsk.api.media.
|
|
6951
|
+
* @generated from message norsk.api.media.FileTsOutputConfiguration
|
|
6945
6952
|
*/
|
|
6946
|
-
export declare class
|
|
6953
|
+
export declare class FileTsOutputConfiguration extends Message<FileTsOutputConfiguration> {
|
|
6947
6954
|
/**
|
|
6948
6955
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
6949
6956
|
*/
|
|
@@ -6953,24 +6960,24 @@ export declare class TsFileOutputConfiguration extends Message<TsFileOutputConfi
|
|
|
6953
6960
|
*/
|
|
6954
6961
|
fileName: string;
|
|
6955
6962
|
/**
|
|
6956
|
-
* @generated from field: norsk.api.media.
|
|
6963
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
6957
6964
|
*/
|
|
6958
|
-
statsSampling?:
|
|
6959
|
-
constructor(data?: PartialMessage<
|
|
6965
|
+
statsSampling?: StreamStatisticsSampling;
|
|
6966
|
+
constructor(data?: PartialMessage<FileTsOutputConfiguration>);
|
|
6960
6967
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6961
|
-
static readonly typeName = "norsk.api.media.
|
|
6968
|
+
static readonly typeName = "norsk.api.media.FileTsOutputConfiguration";
|
|
6962
6969
|
static readonly fields: FieldList;
|
|
6963
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6964
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6965
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6966
|
-
static equals(a:
|
|
6970
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsOutputConfiguration;
|
|
6971
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsOutputConfiguration;
|
|
6972
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsOutputConfiguration;
|
|
6973
|
+
static equals(a: FileTsOutputConfiguration | PlainMessage<FileTsOutputConfiguration> | undefined, b: FileTsOutputConfiguration | PlainMessage<FileTsOutputConfiguration> | undefined): boolean;
|
|
6967
6974
|
}
|
|
6968
6975
|
/**
|
|
6969
|
-
* @generated from message norsk.api.media.
|
|
6976
|
+
* @generated from message norsk.api.media.FileTsOutputMessage
|
|
6970
6977
|
*/
|
|
6971
|
-
export declare class
|
|
6978
|
+
export declare class FileTsOutputMessage extends Message<FileTsOutputMessage> {
|
|
6972
6979
|
/**
|
|
6973
|
-
* @generated from oneof norsk.api.media.
|
|
6980
|
+
* @generated from oneof norsk.api.media.FileTsOutputMessage.message
|
|
6974
6981
|
*/
|
|
6975
6982
|
message: {
|
|
6976
6983
|
/**
|
|
@@ -6980,29 +6987,29 @@ export declare class TsFileOutputMessage extends Message<TsFileOutputMessage> {
|
|
|
6980
6987
|
case: "subscription";
|
|
6981
6988
|
} | {
|
|
6982
6989
|
/**
|
|
6983
|
-
* @generated from field: norsk.api.media.
|
|
6990
|
+
* @generated from field: norsk.api.media.FileTsOutputConfiguration configuration = 2;
|
|
6984
6991
|
*/
|
|
6985
|
-
value:
|
|
6992
|
+
value: FileTsOutputConfiguration;
|
|
6986
6993
|
case: "configuration";
|
|
6987
6994
|
} | {
|
|
6988
6995
|
case: undefined;
|
|
6989
6996
|
value?: undefined;
|
|
6990
6997
|
};
|
|
6991
|
-
constructor(data?: PartialMessage<
|
|
6998
|
+
constructor(data?: PartialMessage<FileTsOutputMessage>);
|
|
6992
6999
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6993
|
-
static readonly typeName = "norsk.api.media.
|
|
7000
|
+
static readonly typeName = "norsk.api.media.FileTsOutputMessage";
|
|
6994
7001
|
static readonly fields: FieldList;
|
|
6995
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6996
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6997
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6998
|
-
static equals(a:
|
|
7002
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsOutputMessage;
|
|
7003
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsOutputMessage;
|
|
7004
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsOutputMessage;
|
|
7005
|
+
static equals(a: FileTsOutputMessage | PlainMessage<FileTsOutputMessage> | undefined, b: FileTsOutputMessage | PlainMessage<FileTsOutputMessage> | undefined): boolean;
|
|
6999
7006
|
}
|
|
7000
7007
|
/**
|
|
7001
|
-
* @generated from message norsk.api.media.
|
|
7008
|
+
* @generated from message norsk.api.media.FileTsOutputEvent
|
|
7002
7009
|
*/
|
|
7003
|
-
export declare class
|
|
7010
|
+
export declare class FileTsOutputEvent extends Message<FileTsOutputEvent> {
|
|
7004
7011
|
/**
|
|
7005
|
-
* @generated from oneof norsk.api.media.
|
|
7012
|
+
* @generated from oneof norsk.api.media.FileTsOutputEvent.message
|
|
7006
7013
|
*/
|
|
7007
7014
|
message: {
|
|
7008
7015
|
/**
|
|
@@ -7024,27 +7031,27 @@ export declare class TsFileOutputEvent extends Message<TsFileOutputEvent> {
|
|
|
7024
7031
|
case: "inboundContext";
|
|
7025
7032
|
} | {
|
|
7026
7033
|
/**
|
|
7027
|
-
* @generated from field: norsk.api.media.
|
|
7034
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
7028
7035
|
*/
|
|
7029
|
-
value:
|
|
7030
|
-
case: "
|
|
7036
|
+
value: MultiStreamStatistics;
|
|
7037
|
+
case: "streamStatistics";
|
|
7031
7038
|
} | {
|
|
7032
7039
|
case: undefined;
|
|
7033
7040
|
value?: undefined;
|
|
7034
7041
|
};
|
|
7035
|
-
constructor(data?: PartialMessage<
|
|
7042
|
+
constructor(data?: PartialMessage<FileTsOutputEvent>);
|
|
7036
7043
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7037
|
-
static readonly typeName = "norsk.api.media.
|
|
7044
|
+
static readonly typeName = "norsk.api.media.FileTsOutputEvent";
|
|
7038
7045
|
static readonly fields: FieldList;
|
|
7039
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7040
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7041
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7042
|
-
static equals(a:
|
|
7046
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsOutputEvent;
|
|
7047
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsOutputEvent;
|
|
7048
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsOutputEvent;
|
|
7049
|
+
static equals(a: FileTsOutputEvent | PlainMessage<FileTsOutputEvent> | undefined, b: FileTsOutputEvent | PlainMessage<FileTsOutputEvent> | undefined): boolean;
|
|
7043
7050
|
}
|
|
7044
7051
|
/**
|
|
7045
|
-
* @generated from message norsk.api.media.
|
|
7052
|
+
* @generated from message norsk.api.media.FileMp4OutputConfiguration
|
|
7046
7053
|
*/
|
|
7047
|
-
export declare class
|
|
7054
|
+
export declare class FileMp4OutputConfiguration extends Message<FileMp4OutputConfiguration> {
|
|
7048
7055
|
/**
|
|
7049
7056
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
7050
7057
|
*/
|
|
@@ -7062,41 +7069,41 @@ export declare class Mp4FileOutputConfiguration extends Message<Mp4FileOutputCon
|
|
|
7062
7069
|
*/
|
|
7063
7070
|
encryption?: Mp4Encryption;
|
|
7064
7071
|
/**
|
|
7065
|
-
* @generated from field: norsk.api.media.
|
|
7072
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
7066
7073
|
*/
|
|
7067
|
-
statsSampling?:
|
|
7068
|
-
constructor(data?: PartialMessage<
|
|
7074
|
+
statsSampling?: StreamStatisticsSampling;
|
|
7075
|
+
constructor(data?: PartialMessage<FileMp4OutputConfiguration>);
|
|
7069
7076
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7070
|
-
static readonly typeName = "norsk.api.media.
|
|
7077
|
+
static readonly typeName = "norsk.api.media.FileMp4OutputConfiguration";
|
|
7071
7078
|
static readonly fields: FieldList;
|
|
7072
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7073
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7074
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7075
|
-
static equals(a:
|
|
7079
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4OutputConfiguration;
|
|
7080
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4OutputConfiguration;
|
|
7081
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4OutputConfiguration;
|
|
7082
|
+
static equals(a: FileMp4OutputConfiguration | PlainMessage<FileMp4OutputConfiguration> | undefined, b: FileMp4OutputConfiguration | PlainMessage<FileMp4OutputConfiguration> | undefined): boolean;
|
|
7076
7083
|
}
|
|
7077
7084
|
/**
|
|
7078
|
-
* @generated from message norsk.api.media.
|
|
7085
|
+
* @generated from message norsk.api.media.FileMp4OutputWriteMessage
|
|
7079
7086
|
*/
|
|
7080
|
-
export declare class
|
|
7087
|
+
export declare class FileMp4OutputWriteMessage extends Message<FileMp4OutputWriteMessage> {
|
|
7081
7088
|
/**
|
|
7082
7089
|
* @generated from field: string nonfragmented_file_name = 1;
|
|
7083
7090
|
*/
|
|
7084
7091
|
nonfragmentedFileName: string;
|
|
7085
|
-
constructor(data?: PartialMessage<
|
|
7092
|
+
constructor(data?: PartialMessage<FileMp4OutputWriteMessage>);
|
|
7086
7093
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7087
|
-
static readonly typeName = "norsk.api.media.
|
|
7094
|
+
static readonly typeName = "norsk.api.media.FileMp4OutputWriteMessage";
|
|
7088
7095
|
static readonly fields: FieldList;
|
|
7089
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7090
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7091
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7092
|
-
static equals(a:
|
|
7096
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4OutputWriteMessage;
|
|
7097
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4OutputWriteMessage;
|
|
7098
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4OutputWriteMessage;
|
|
7099
|
+
static equals(a: FileMp4OutputWriteMessage | PlainMessage<FileMp4OutputWriteMessage> | undefined, b: FileMp4OutputWriteMessage | PlainMessage<FileMp4OutputWriteMessage> | undefined): boolean;
|
|
7093
7100
|
}
|
|
7094
7101
|
/**
|
|
7095
|
-
* @generated from message norsk.api.media.
|
|
7102
|
+
* @generated from message norsk.api.media.FileMp4OutputMessage
|
|
7096
7103
|
*/
|
|
7097
|
-
export declare class
|
|
7104
|
+
export declare class FileMp4OutputMessage extends Message<FileMp4OutputMessage> {
|
|
7098
7105
|
/**
|
|
7099
|
-
* @generated from oneof norsk.api.media.
|
|
7106
|
+
* @generated from oneof norsk.api.media.FileMp4OutputMessage.message
|
|
7100
7107
|
*/
|
|
7101
7108
|
message: {
|
|
7102
7109
|
/**
|
|
@@ -7106,35 +7113,35 @@ export declare class Mp4FileOutputMessage extends Message<Mp4FileOutputMessage>
|
|
|
7106
7113
|
case: "subscription";
|
|
7107
7114
|
} | {
|
|
7108
7115
|
/**
|
|
7109
|
-
* @generated from field: norsk.api.media.
|
|
7116
|
+
* @generated from field: norsk.api.media.FileMp4OutputConfiguration configuration = 2;
|
|
7110
7117
|
*/
|
|
7111
|
-
value:
|
|
7118
|
+
value: FileMp4OutputConfiguration;
|
|
7112
7119
|
case: "configuration";
|
|
7113
7120
|
} | {
|
|
7114
7121
|
/**
|
|
7115
|
-
* @generated from field: norsk.api.media.
|
|
7122
|
+
* @generated from field: norsk.api.media.FileMp4OutputWriteMessage write_file = 3;
|
|
7116
7123
|
*/
|
|
7117
|
-
value:
|
|
7124
|
+
value: FileMp4OutputWriteMessage;
|
|
7118
7125
|
case: "writeFile";
|
|
7119
7126
|
} | {
|
|
7120
7127
|
case: undefined;
|
|
7121
7128
|
value?: undefined;
|
|
7122
7129
|
};
|
|
7123
|
-
constructor(data?: PartialMessage<
|
|
7130
|
+
constructor(data?: PartialMessage<FileMp4OutputMessage>);
|
|
7124
7131
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7125
|
-
static readonly typeName = "norsk.api.media.
|
|
7132
|
+
static readonly typeName = "norsk.api.media.FileMp4OutputMessage";
|
|
7126
7133
|
static readonly fields: FieldList;
|
|
7127
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7128
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7129
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7130
|
-
static equals(a:
|
|
7134
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4OutputMessage;
|
|
7135
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4OutputMessage;
|
|
7136
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4OutputMessage;
|
|
7137
|
+
static equals(a: FileMp4OutputMessage | PlainMessage<FileMp4OutputMessage> | undefined, b: FileMp4OutputMessage | PlainMessage<FileMp4OutputMessage> | undefined): boolean;
|
|
7131
7138
|
}
|
|
7132
7139
|
/**
|
|
7133
|
-
* @generated from message norsk.api.media.
|
|
7140
|
+
* @generated from message norsk.api.media.FileMp4OutputEvent
|
|
7134
7141
|
*/
|
|
7135
|
-
export declare class
|
|
7142
|
+
export declare class FileMp4OutputEvent extends Message<FileMp4OutputEvent> {
|
|
7136
7143
|
/**
|
|
7137
|
-
* @generated from oneof norsk.api.media.
|
|
7144
|
+
* @generated from oneof norsk.api.media.FileMp4OutputEvent.message
|
|
7138
7145
|
*/
|
|
7139
7146
|
message: {
|
|
7140
7147
|
/**
|
|
@@ -7156,22 +7163,22 @@ export declare class Mp4FileOutputEvent extends Message<Mp4FileOutputEvent> {
|
|
|
7156
7163
|
case: "inboundContext";
|
|
7157
7164
|
} | {
|
|
7158
7165
|
/**
|
|
7159
|
-
* @generated from field: norsk.api.media.
|
|
7166
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
7160
7167
|
*/
|
|
7161
|
-
value:
|
|
7162
|
-
case: "
|
|
7168
|
+
value: MultiStreamStatistics;
|
|
7169
|
+
case: "streamStatistics";
|
|
7163
7170
|
} | {
|
|
7164
7171
|
case: undefined;
|
|
7165
7172
|
value?: undefined;
|
|
7166
7173
|
};
|
|
7167
|
-
constructor(data?: PartialMessage<
|
|
7174
|
+
constructor(data?: PartialMessage<FileMp4OutputEvent>);
|
|
7168
7175
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7169
|
-
static readonly typeName = "norsk.api.media.
|
|
7176
|
+
static readonly typeName = "norsk.api.media.FileMp4OutputEvent";
|
|
7170
7177
|
static readonly fields: FieldList;
|
|
7171
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7172
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7173
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7174
|
-
static equals(a:
|
|
7178
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4OutputEvent;
|
|
7179
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4OutputEvent;
|
|
7180
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4OutputEvent;
|
|
7181
|
+
static equals(a: FileMp4OutputEvent | PlainMessage<FileMp4OutputEvent> | undefined, b: FileMp4OutputEvent | PlainMessage<FileMp4OutputEvent> | undefined): boolean;
|
|
7175
7182
|
}
|
|
7176
7183
|
/**
|
|
7177
7184
|
* @generated from message norsk.api.media.FrameRate
|
|
@@ -7322,8 +7329,8 @@ export declare class X264Codec extends Message<X264Codec> {
|
|
|
7322
7329
|
profile: X264Codec_X264Profile;
|
|
7323
7330
|
/**
|
|
7324
7331
|
* Sets the level flag in the output. Permissible levels are
|
|
7325
|
-
*
|
|
7326
|
-
* 5, 5.1
|
|
7332
|
+
* 1, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2,
|
|
7333
|
+
* 5, 5.1 - since this field is an integer, you pass in 10 times the
|
|
7327
7334
|
* required value (e.g., 11, 12 etc)
|
|
7328
7335
|
*
|
|
7329
7336
|
* @generated from field: norsk.api.media.OptionalInt level = 3;
|
|
@@ -7630,7 +7637,7 @@ export declare class X265Codec extends Message<X265Codec> {
|
|
|
7630
7637
|
profile: X265Codec_X265Profile;
|
|
7631
7638
|
/**
|
|
7632
7639
|
* Sets the level flag in the output. Permissible levels are
|
|
7633
|
-
*
|
|
7640
|
+
* `1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2` -
|
|
7634
7641
|
* since this field is an integer, you pass in 10 times the
|
|
7635
7642
|
* required value (e.g., 11, 12 etc)
|
|
7636
7643
|
*
|
|
@@ -7826,9 +7833,9 @@ export declare enum X265Codec_X265Tune {
|
|
|
7826
7833
|
ANIMATION = 6
|
|
7827
7834
|
}
|
|
7828
7835
|
/**
|
|
7829
|
-
* @generated from message norsk.api.media.
|
|
7836
|
+
* @generated from message norsk.api.media.VideoEncodeStream
|
|
7830
7837
|
*/
|
|
7831
|
-
export declare class
|
|
7838
|
+
export declare class VideoEncodeStream extends Message<VideoEncodeStream> {
|
|
7832
7839
|
/**
|
|
7833
7840
|
* @generated from field: string name = 1;
|
|
7834
7841
|
*/
|
|
@@ -7846,7 +7853,7 @@ export declare class VideoEncodeLadderStream extends Message<VideoEncodeLadderSt
|
|
|
7846
7853
|
*/
|
|
7847
7854
|
sampleAspectRatio?: SampleAspectRatio;
|
|
7848
7855
|
/**
|
|
7849
|
-
* @generated from oneof norsk.api.media.
|
|
7856
|
+
* @generated from oneof norsk.api.media.VideoEncodeStream.codec
|
|
7850
7857
|
*/
|
|
7851
7858
|
codec: {
|
|
7852
7859
|
/**
|
|
@@ -7888,42 +7895,42 @@ export declare class VideoEncodeLadderStream extends Message<VideoEncodeLadderSt
|
|
|
7888
7895
|
case: undefined;
|
|
7889
7896
|
value?: undefined;
|
|
7890
7897
|
};
|
|
7891
|
-
constructor(data?: PartialMessage<
|
|
7898
|
+
constructor(data?: PartialMessage<VideoEncodeStream>);
|
|
7892
7899
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7893
|
-
static readonly typeName = "norsk.api.media.
|
|
7900
|
+
static readonly typeName = "norsk.api.media.VideoEncodeStream";
|
|
7894
7901
|
static readonly fields: FieldList;
|
|
7895
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7896
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7897
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7898
|
-
static equals(a:
|
|
7902
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoEncodeStream;
|
|
7903
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoEncodeStream;
|
|
7904
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoEncodeStream;
|
|
7905
|
+
static equals(a: VideoEncodeStream | PlainMessage<VideoEncodeStream> | undefined, b: VideoEncodeStream | PlainMessage<VideoEncodeStream> | undefined): boolean;
|
|
7899
7906
|
}
|
|
7900
7907
|
/**
|
|
7901
|
-
* @generated from message norsk.api.media.
|
|
7908
|
+
* @generated from message norsk.api.media.VideoEncodeConfiguration
|
|
7902
7909
|
*/
|
|
7903
|
-
export declare class
|
|
7910
|
+
export declare class VideoEncodeConfiguration extends Message<VideoEncodeConfiguration> {
|
|
7904
7911
|
/**
|
|
7905
7912
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
7906
7913
|
*/
|
|
7907
7914
|
id?: MediaNodeId;
|
|
7908
7915
|
/**
|
|
7909
|
-
* @generated from field: repeated norsk.api.media.
|
|
7916
|
+
* @generated from field: repeated norsk.api.media.VideoEncodeStream streams = 2;
|
|
7910
7917
|
*/
|
|
7911
|
-
streams:
|
|
7912
|
-
constructor(data?: PartialMessage<
|
|
7918
|
+
streams: VideoEncodeStream[];
|
|
7919
|
+
constructor(data?: PartialMessage<VideoEncodeConfiguration>);
|
|
7913
7920
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7914
|
-
static readonly typeName = "norsk.api.media.
|
|
7921
|
+
static readonly typeName = "norsk.api.media.VideoEncodeConfiguration";
|
|
7915
7922
|
static readonly fields: FieldList;
|
|
7916
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7917
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7918
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7919
|
-
static equals(a:
|
|
7923
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoEncodeConfiguration;
|
|
7924
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoEncodeConfiguration;
|
|
7925
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoEncodeConfiguration;
|
|
7926
|
+
static equals(a: VideoEncodeConfiguration | PlainMessage<VideoEncodeConfiguration> | undefined, b: VideoEncodeConfiguration | PlainMessage<VideoEncodeConfiguration> | undefined): boolean;
|
|
7920
7927
|
}
|
|
7921
7928
|
/**
|
|
7922
|
-
* @generated from message norsk.api.media.
|
|
7929
|
+
* @generated from message norsk.api.media.VideoEncodeMessage
|
|
7923
7930
|
*/
|
|
7924
|
-
export declare class
|
|
7931
|
+
export declare class VideoEncodeMessage extends Message<VideoEncodeMessage> {
|
|
7925
7932
|
/**
|
|
7926
|
-
* @generated from oneof norsk.api.media.
|
|
7933
|
+
* @generated from oneof norsk.api.media.VideoEncodeMessage.message
|
|
7927
7934
|
*/
|
|
7928
7935
|
message: {
|
|
7929
7936
|
/**
|
|
@@ -7933,29 +7940,29 @@ export declare class VideoEncodeLadderMessage extends Message<VideoEncodeLadderM
|
|
|
7933
7940
|
case: "subscription";
|
|
7934
7941
|
} | {
|
|
7935
7942
|
/**
|
|
7936
|
-
* @generated from field: norsk.api.media.
|
|
7943
|
+
* @generated from field: norsk.api.media.VideoEncodeConfiguration configuration = 2;
|
|
7937
7944
|
*/
|
|
7938
|
-
value:
|
|
7945
|
+
value: VideoEncodeConfiguration;
|
|
7939
7946
|
case: "configuration";
|
|
7940
7947
|
} | {
|
|
7941
7948
|
case: undefined;
|
|
7942
7949
|
value?: undefined;
|
|
7943
7950
|
};
|
|
7944
|
-
constructor(data?: PartialMessage<
|
|
7951
|
+
constructor(data?: PartialMessage<VideoEncodeMessage>);
|
|
7945
7952
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7946
|
-
static readonly typeName = "norsk.api.media.
|
|
7953
|
+
static readonly typeName = "norsk.api.media.VideoEncodeMessage";
|
|
7947
7954
|
static readonly fields: FieldList;
|
|
7948
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7949
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7950
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7951
|
-
static equals(a:
|
|
7955
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoEncodeMessage;
|
|
7956
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoEncodeMessage;
|
|
7957
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoEncodeMessage;
|
|
7958
|
+
static equals(a: VideoEncodeMessage | PlainMessage<VideoEncodeMessage> | undefined, b: VideoEncodeMessage | PlainMessage<VideoEncodeMessage> | undefined): boolean;
|
|
7952
7959
|
}
|
|
7953
7960
|
/**
|
|
7954
|
-
* @generated from message norsk.api.media.
|
|
7961
|
+
* @generated from message norsk.api.media.VideoEncodeEvent
|
|
7955
7962
|
*/
|
|
7956
|
-
export declare class
|
|
7963
|
+
export declare class VideoEncodeEvent extends Message<VideoEncodeEvent> {
|
|
7957
7964
|
/**
|
|
7958
|
-
* @generated from oneof norsk.api.media.
|
|
7965
|
+
* @generated from oneof norsk.api.media.VideoEncodeEvent.message
|
|
7959
7966
|
*/
|
|
7960
7967
|
message: {
|
|
7961
7968
|
/**
|
|
@@ -7979,14 +7986,14 @@ export declare class VideoEncodeLadderEvent extends Message<VideoEncodeLadderEve
|
|
|
7979
7986
|
case: undefined;
|
|
7980
7987
|
value?: undefined;
|
|
7981
7988
|
};
|
|
7982
|
-
constructor(data?: PartialMessage<
|
|
7989
|
+
constructor(data?: PartialMessage<VideoEncodeEvent>);
|
|
7983
7990
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7984
|
-
static readonly typeName = "norsk.api.media.
|
|
7991
|
+
static readonly typeName = "norsk.api.media.VideoEncodeEvent";
|
|
7985
7992
|
static readonly fields: FieldList;
|
|
7986
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
7987
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
7988
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
7989
|
-
static equals(a:
|
|
7993
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoEncodeEvent;
|
|
7994
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoEncodeEvent;
|
|
7995
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoEncodeEvent;
|
|
7996
|
+
static equals(a: VideoEncodeEvent | PlainMessage<VideoEncodeEvent> | undefined, b: VideoEncodeEvent | PlainMessage<VideoEncodeEvent> | undefined): boolean;
|
|
7990
7997
|
}
|
|
7991
7998
|
/**
|
|
7992
7999
|
* @generated from message norsk.api.media.NvidiaRateControl
|
|
@@ -8528,15 +8535,15 @@ export declare class VideoTransformEvent extends Message<VideoTransformEvent> {
|
|
|
8528
8535
|
static equals(a: VideoTransformEvent | PlainMessage<VideoTransformEvent> | undefined, b: VideoTransformEvent | PlainMessage<VideoTransformEvent> | undefined): boolean;
|
|
8529
8536
|
}
|
|
8530
8537
|
/**
|
|
8531
|
-
* @generated from message norsk.api.media.
|
|
8538
|
+
* @generated from message norsk.api.media.StreamChaosMonkeyConfiguration
|
|
8532
8539
|
*/
|
|
8533
|
-
export declare class
|
|
8540
|
+
export declare class StreamChaosMonkeyConfiguration extends Message<StreamChaosMonkeyConfiguration> {
|
|
8534
8541
|
/**
|
|
8535
8542
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
8536
8543
|
*/
|
|
8537
8544
|
id?: MediaNodeId;
|
|
8538
8545
|
/**
|
|
8539
|
-
* @generated from oneof norsk.api.media.
|
|
8546
|
+
* @generated from oneof norsk.api.media.StreamChaosMonkeyConfiguration.dropFramesMode
|
|
8540
8547
|
*/
|
|
8541
8548
|
dropFramesMode: {
|
|
8542
8549
|
/**
|
|
@@ -8554,21 +8561,21 @@ export declare class ChaosMonkeyConfiguration extends Message<ChaosMonkeyConfigu
|
|
|
8554
8561
|
case: undefined;
|
|
8555
8562
|
value?: undefined;
|
|
8556
8563
|
};
|
|
8557
|
-
constructor(data?: PartialMessage<
|
|
8564
|
+
constructor(data?: PartialMessage<StreamChaosMonkeyConfiguration>);
|
|
8558
8565
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8559
|
-
static readonly typeName = "norsk.api.media.
|
|
8566
|
+
static readonly typeName = "norsk.api.media.StreamChaosMonkeyConfiguration";
|
|
8560
8567
|
static readonly fields: FieldList;
|
|
8561
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8562
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8563
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8564
|
-
static equals(a:
|
|
8568
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamChaosMonkeyConfiguration;
|
|
8569
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamChaosMonkeyConfiguration;
|
|
8570
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamChaosMonkeyConfiguration;
|
|
8571
|
+
static equals(a: StreamChaosMonkeyConfiguration | PlainMessage<StreamChaosMonkeyConfiguration> | undefined, b: StreamChaosMonkeyConfiguration | PlainMessage<StreamChaosMonkeyConfiguration> | undefined): boolean;
|
|
8565
8572
|
}
|
|
8566
8573
|
/**
|
|
8567
|
-
* @generated from message norsk.api.media.
|
|
8574
|
+
* @generated from message norsk.api.media.StreamChaosMonkeyMessage
|
|
8568
8575
|
*/
|
|
8569
|
-
export declare class
|
|
8576
|
+
export declare class StreamChaosMonkeyMessage extends Message<StreamChaosMonkeyMessage> {
|
|
8570
8577
|
/**
|
|
8571
|
-
* @generated from oneof norsk.api.media.
|
|
8578
|
+
* @generated from oneof norsk.api.media.StreamChaosMonkeyMessage.message
|
|
8572
8579
|
*/
|
|
8573
8580
|
message: {
|
|
8574
8581
|
/**
|
|
@@ -8578,29 +8585,29 @@ export declare class ChaosMonkeyMessage extends Message<ChaosMonkeyMessage> {
|
|
|
8578
8585
|
case: "subscription";
|
|
8579
8586
|
} | {
|
|
8580
8587
|
/**
|
|
8581
|
-
* @generated from field: norsk.api.media.
|
|
8588
|
+
* @generated from field: norsk.api.media.StreamChaosMonkeyConfiguration configuration = 2;
|
|
8582
8589
|
*/
|
|
8583
|
-
value:
|
|
8590
|
+
value: StreamChaosMonkeyConfiguration;
|
|
8584
8591
|
case: "configuration";
|
|
8585
8592
|
} | {
|
|
8586
8593
|
case: undefined;
|
|
8587
8594
|
value?: undefined;
|
|
8588
8595
|
};
|
|
8589
|
-
constructor(data?: PartialMessage<
|
|
8596
|
+
constructor(data?: PartialMessage<StreamChaosMonkeyMessage>);
|
|
8590
8597
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8591
|
-
static readonly typeName = "norsk.api.media.
|
|
8598
|
+
static readonly typeName = "norsk.api.media.StreamChaosMonkeyMessage";
|
|
8592
8599
|
static readonly fields: FieldList;
|
|
8593
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8594
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8595
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8596
|
-
static equals(a:
|
|
8600
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamChaosMonkeyMessage;
|
|
8601
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamChaosMonkeyMessage;
|
|
8602
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamChaosMonkeyMessage;
|
|
8603
|
+
static equals(a: StreamChaosMonkeyMessage | PlainMessage<StreamChaosMonkeyMessage> | undefined, b: StreamChaosMonkeyMessage | PlainMessage<StreamChaosMonkeyMessage> | undefined): boolean;
|
|
8597
8604
|
}
|
|
8598
8605
|
/**
|
|
8599
|
-
* @generated from message norsk.api.media.
|
|
8606
|
+
* @generated from message norsk.api.media.StreamChaosMonkeyEvent
|
|
8600
8607
|
*/
|
|
8601
|
-
export declare class
|
|
8608
|
+
export declare class StreamChaosMonkeyEvent extends Message<StreamChaosMonkeyEvent> {
|
|
8602
8609
|
/**
|
|
8603
|
-
* @generated from oneof norsk.api.media.
|
|
8610
|
+
* @generated from oneof norsk.api.media.StreamChaosMonkeyEvent.message
|
|
8604
8611
|
*/
|
|
8605
8612
|
message: {
|
|
8606
8613
|
/**
|
|
@@ -8624,19 +8631,19 @@ export declare class ChaosMonkeyEvent extends Message<ChaosMonkeyEvent> {
|
|
|
8624
8631
|
case: undefined;
|
|
8625
8632
|
value?: undefined;
|
|
8626
8633
|
};
|
|
8627
|
-
constructor(data?: PartialMessage<
|
|
8634
|
+
constructor(data?: PartialMessage<StreamChaosMonkeyEvent>);
|
|
8628
8635
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8629
|
-
static readonly typeName = "norsk.api.media.
|
|
8636
|
+
static readonly typeName = "norsk.api.media.StreamChaosMonkeyEvent";
|
|
8630
8637
|
static readonly fields: FieldList;
|
|
8631
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8632
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8633
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8634
|
-
static equals(a:
|
|
8638
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamChaosMonkeyEvent;
|
|
8639
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamChaosMonkeyEvent;
|
|
8640
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamChaosMonkeyEvent;
|
|
8641
|
+
static equals(a: StreamChaosMonkeyEvent | PlainMessage<StreamChaosMonkeyEvent> | undefined, b: StreamChaosMonkeyEvent | PlainMessage<StreamChaosMonkeyEvent> | undefined): boolean;
|
|
8635
8642
|
}
|
|
8636
8643
|
/**
|
|
8637
|
-
* @generated from message norsk.api.media.
|
|
8644
|
+
* @generated from message norsk.api.media.StreamTimestampNudgeConfiguration
|
|
8638
8645
|
*/
|
|
8639
|
-
export declare class
|
|
8646
|
+
export declare class StreamTimestampNudgeConfiguration extends Message<StreamTimestampNudgeConfiguration> {
|
|
8640
8647
|
/**
|
|
8641
8648
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
8642
8649
|
*/
|
|
@@ -8645,27 +8652,27 @@ export declare class TimestampNudgerConfiguration extends Message<TimestampNudge
|
|
|
8645
8652
|
* @generated from field: norsk.api.media.TimestampNudge nudge = 2;
|
|
8646
8653
|
*/
|
|
8647
8654
|
nudge?: TimestampNudge;
|
|
8648
|
-
constructor(data?: PartialMessage<
|
|
8655
|
+
constructor(data?: PartialMessage<StreamTimestampNudgeConfiguration>);
|
|
8649
8656
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8650
|
-
static readonly typeName = "norsk.api.media.
|
|
8657
|
+
static readonly typeName = "norsk.api.media.StreamTimestampNudgeConfiguration";
|
|
8651
8658
|
static readonly fields: FieldList;
|
|
8652
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8653
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8654
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8655
|
-
static equals(a:
|
|
8659
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamTimestampNudgeConfiguration;
|
|
8660
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamTimestampNudgeConfiguration;
|
|
8661
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamTimestampNudgeConfiguration;
|
|
8662
|
+
static equals(a: StreamTimestampNudgeConfiguration | PlainMessage<StreamTimestampNudgeConfiguration> | undefined, b: StreamTimestampNudgeConfiguration | PlainMessage<StreamTimestampNudgeConfiguration> | undefined): boolean;
|
|
8656
8663
|
}
|
|
8657
8664
|
/**
|
|
8658
|
-
* @generated from message norsk.api.media.
|
|
8665
|
+
* @generated from message norsk.api.media.StreamTimestampNudgeMessage
|
|
8659
8666
|
*/
|
|
8660
|
-
export declare class
|
|
8667
|
+
export declare class StreamTimestampNudgeMessage extends Message<StreamTimestampNudgeMessage> {
|
|
8661
8668
|
/**
|
|
8662
|
-
* @generated from oneof norsk.api.media.
|
|
8669
|
+
* @generated from oneof norsk.api.media.StreamTimestampNudgeMessage.message
|
|
8663
8670
|
*/
|
|
8664
8671
|
message: {
|
|
8665
8672
|
/**
|
|
8666
|
-
* @generated from field: norsk.api.media.
|
|
8673
|
+
* @generated from field: norsk.api.media.StreamTimestampNudgeConfiguration initial_config = 1;
|
|
8667
8674
|
*/
|
|
8668
|
-
value:
|
|
8675
|
+
value: StreamTimestampNudgeConfiguration;
|
|
8669
8676
|
case: "initialConfig";
|
|
8670
8677
|
} | {
|
|
8671
8678
|
/**
|
|
@@ -8683,21 +8690,21 @@ export declare class TimestampNudgerMessage extends Message<TimestampNudgerMessa
|
|
|
8683
8690
|
case: undefined;
|
|
8684
8691
|
value?: undefined;
|
|
8685
8692
|
};
|
|
8686
|
-
constructor(data?: PartialMessage<
|
|
8693
|
+
constructor(data?: PartialMessage<StreamTimestampNudgeMessage>);
|
|
8687
8694
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8688
|
-
static readonly typeName = "norsk.api.media.
|
|
8695
|
+
static readonly typeName = "norsk.api.media.StreamTimestampNudgeMessage";
|
|
8689
8696
|
static readonly fields: FieldList;
|
|
8690
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8691
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8692
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8693
|
-
static equals(a:
|
|
8697
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamTimestampNudgeMessage;
|
|
8698
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamTimestampNudgeMessage;
|
|
8699
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamTimestampNudgeMessage;
|
|
8700
|
+
static equals(a: StreamTimestampNudgeMessage | PlainMessage<StreamTimestampNudgeMessage> | undefined, b: StreamTimestampNudgeMessage | PlainMessage<StreamTimestampNudgeMessage> | undefined): boolean;
|
|
8694
8701
|
}
|
|
8695
8702
|
/**
|
|
8696
|
-
* @generated from message norsk.api.media.
|
|
8703
|
+
* @generated from message norsk.api.media.StreamTimestampNudgeEvent
|
|
8697
8704
|
*/
|
|
8698
|
-
export declare class
|
|
8705
|
+
export declare class StreamTimestampNudgeEvent extends Message<StreamTimestampNudgeEvent> {
|
|
8699
8706
|
/**
|
|
8700
|
-
* @generated from oneof norsk.api.media.
|
|
8707
|
+
* @generated from oneof norsk.api.media.StreamTimestampNudgeEvent.message
|
|
8701
8708
|
*/
|
|
8702
8709
|
message: {
|
|
8703
8710
|
/**
|
|
@@ -8721,14 +8728,14 @@ export declare class TimestampNudgerEvent extends Message<TimestampNudgerEvent>
|
|
|
8721
8728
|
case: undefined;
|
|
8722
8729
|
value?: undefined;
|
|
8723
8730
|
};
|
|
8724
|
-
constructor(data?: PartialMessage<
|
|
8731
|
+
constructor(data?: PartialMessage<StreamTimestampNudgeEvent>);
|
|
8725
8732
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8726
|
-
static readonly typeName = "norsk.api.media.
|
|
8733
|
+
static readonly typeName = "norsk.api.media.StreamTimestampNudgeEvent";
|
|
8727
8734
|
static readonly fields: FieldList;
|
|
8728
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8729
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8730
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8731
|
-
static equals(a:
|
|
8735
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamTimestampNudgeEvent;
|
|
8736
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamTimestampNudgeEvent;
|
|
8737
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamTimestampNudgeEvent;
|
|
8738
|
+
static equals(a: StreamTimestampNudgeEvent | PlainMessage<StreamTimestampNudgeEvent> | undefined, b: StreamTimestampNudgeEvent | PlainMessage<StreamTimestampNudgeEvent> | undefined): boolean;
|
|
8732
8739
|
}
|
|
8733
8740
|
/**
|
|
8734
8741
|
* @generated from message norsk.api.media.StreamKeyOverrideConfiguration
|
|
@@ -8822,9 +8829,9 @@ export declare class StreamKeyOverrideEvent extends Message<StreamKeyOverrideEve
|
|
|
8822
8829
|
static equals(a: StreamKeyOverrideEvent | PlainMessage<StreamKeyOverrideEvent> | undefined, b: StreamKeyOverrideEvent | PlainMessage<StreamKeyOverrideEvent> | undefined): boolean;
|
|
8823
8830
|
}
|
|
8824
8831
|
/**
|
|
8825
|
-
* @generated from message norsk.api.media.
|
|
8832
|
+
* @generated from message norsk.api.media.StreamMetadataOverrideConfiguration
|
|
8826
8833
|
*/
|
|
8827
|
-
export declare class
|
|
8834
|
+
export declare class StreamMetadataOverrideConfiguration extends Message<StreamMetadataOverrideConfiguration> {
|
|
8828
8835
|
/**
|
|
8829
8836
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
8830
8837
|
*/
|
|
@@ -8853,19 +8860,19 @@ export declare class MetadataOverrideConfiguration extends Message<MetadataOverr
|
|
|
8853
8860
|
* @generated from field: norsk.api.media.OptionalString subtitles_language = 5;
|
|
8854
8861
|
*/
|
|
8855
8862
|
subtitlesLanguage?: OptionalString;
|
|
8856
|
-
constructor(data?: PartialMessage<
|
|
8863
|
+
constructor(data?: PartialMessage<StreamMetadataOverrideConfiguration>);
|
|
8857
8864
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8858
|
-
static readonly typeName = "norsk.api.media.
|
|
8865
|
+
static readonly typeName = "norsk.api.media.StreamMetadataOverrideConfiguration";
|
|
8859
8866
|
static readonly fields: FieldList;
|
|
8860
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8861
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8862
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8863
|
-
static equals(a:
|
|
8867
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadataOverrideConfiguration;
|
|
8868
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamMetadataOverrideConfiguration;
|
|
8869
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadataOverrideConfiguration;
|
|
8870
|
+
static equals(a: StreamMetadataOverrideConfiguration | PlainMessage<StreamMetadataOverrideConfiguration> | undefined, b: StreamMetadataOverrideConfiguration | PlainMessage<StreamMetadataOverrideConfiguration> | undefined): boolean;
|
|
8864
8871
|
}
|
|
8865
8872
|
/**
|
|
8866
|
-
* @generated from message norsk.api.media.
|
|
8873
|
+
* @generated from message norsk.api.media.StreamMetadataOverrideUpdateConfiguration
|
|
8867
8874
|
*/
|
|
8868
|
-
export declare class
|
|
8875
|
+
export declare class StreamMetadataOverrideUpdateConfiguration extends Message<StreamMetadataOverrideUpdateConfiguration> {
|
|
8869
8876
|
/**
|
|
8870
8877
|
* * Override the bitrate metadata of a compressed video stream, or `0` to clear
|
|
8871
8878
|
*
|
|
@@ -8890,33 +8897,33 @@ export declare class MetadataOverrideUpdateConfiguration extends Message<Metadat
|
|
|
8890
8897
|
* @generated from field: norsk.api.media.OptionalString subtitles_language = 5;
|
|
8891
8898
|
*/
|
|
8892
8899
|
subtitlesLanguage?: OptionalString;
|
|
8893
|
-
constructor(data?: PartialMessage<
|
|
8900
|
+
constructor(data?: PartialMessage<StreamMetadataOverrideUpdateConfiguration>);
|
|
8894
8901
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8895
|
-
static readonly typeName = "norsk.api.media.
|
|
8902
|
+
static readonly typeName = "norsk.api.media.StreamMetadataOverrideUpdateConfiguration";
|
|
8896
8903
|
static readonly fields: FieldList;
|
|
8897
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8898
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8899
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8900
|
-
static equals(a:
|
|
8904
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadataOverrideUpdateConfiguration;
|
|
8905
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamMetadataOverrideUpdateConfiguration;
|
|
8906
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadataOverrideUpdateConfiguration;
|
|
8907
|
+
static equals(a: StreamMetadataOverrideUpdateConfiguration | PlainMessage<StreamMetadataOverrideUpdateConfiguration> | undefined, b: StreamMetadataOverrideUpdateConfiguration | PlainMessage<StreamMetadataOverrideUpdateConfiguration> | undefined): boolean;
|
|
8901
8908
|
}
|
|
8902
8909
|
/**
|
|
8903
|
-
* @generated from message norsk.api.media.
|
|
8910
|
+
* @generated from message norsk.api.media.StreamMetadataOverrideMessage
|
|
8904
8911
|
*/
|
|
8905
|
-
export declare class
|
|
8912
|
+
export declare class StreamMetadataOverrideMessage extends Message<StreamMetadataOverrideMessage> {
|
|
8906
8913
|
/**
|
|
8907
|
-
* @generated from oneof norsk.api.media.
|
|
8914
|
+
* @generated from oneof norsk.api.media.StreamMetadataOverrideMessage.message
|
|
8908
8915
|
*/
|
|
8909
8916
|
message: {
|
|
8910
8917
|
/**
|
|
8911
|
-
* @generated from field: norsk.api.media.
|
|
8918
|
+
* @generated from field: norsk.api.media.StreamMetadataOverrideConfiguration initial_config = 1;
|
|
8912
8919
|
*/
|
|
8913
|
-
value:
|
|
8920
|
+
value: StreamMetadataOverrideConfiguration;
|
|
8914
8921
|
case: "initialConfig";
|
|
8915
8922
|
} | {
|
|
8916
8923
|
/**
|
|
8917
|
-
* @generated from field: norsk.api.media.
|
|
8924
|
+
* @generated from field: norsk.api.media.StreamMetadataOverrideUpdateConfiguration update_config = 2;
|
|
8918
8925
|
*/
|
|
8919
|
-
value:
|
|
8926
|
+
value: StreamMetadataOverrideUpdateConfiguration;
|
|
8920
8927
|
case: "updateConfig";
|
|
8921
8928
|
} | {
|
|
8922
8929
|
/**
|
|
@@ -8928,21 +8935,21 @@ export declare class MetadataOverrideMessage extends Message<MetadataOverrideMes
|
|
|
8928
8935
|
case: undefined;
|
|
8929
8936
|
value?: undefined;
|
|
8930
8937
|
};
|
|
8931
|
-
constructor(data?: PartialMessage<
|
|
8938
|
+
constructor(data?: PartialMessage<StreamMetadataOverrideMessage>);
|
|
8932
8939
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8933
|
-
static readonly typeName = "norsk.api.media.
|
|
8940
|
+
static readonly typeName = "norsk.api.media.StreamMetadataOverrideMessage";
|
|
8934
8941
|
static readonly fields: FieldList;
|
|
8935
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8936
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8937
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8938
|
-
static equals(a:
|
|
8942
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadataOverrideMessage;
|
|
8943
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamMetadataOverrideMessage;
|
|
8944
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadataOverrideMessage;
|
|
8945
|
+
static equals(a: StreamMetadataOverrideMessage | PlainMessage<StreamMetadataOverrideMessage> | undefined, b: StreamMetadataOverrideMessage | PlainMessage<StreamMetadataOverrideMessage> | undefined): boolean;
|
|
8939
8946
|
}
|
|
8940
8947
|
/**
|
|
8941
|
-
* @generated from message norsk.api.media.
|
|
8948
|
+
* @generated from message norsk.api.media.StreamMetadataOverrideEvent
|
|
8942
8949
|
*/
|
|
8943
|
-
export declare class
|
|
8950
|
+
export declare class StreamMetadataOverrideEvent extends Message<StreamMetadataOverrideEvent> {
|
|
8944
8951
|
/**
|
|
8945
|
-
* @generated from oneof norsk.api.media.
|
|
8952
|
+
* @generated from oneof norsk.api.media.StreamMetadataOverrideEvent.message
|
|
8946
8953
|
*/
|
|
8947
8954
|
message: {
|
|
8948
8955
|
/**
|
|
@@ -8966,44 +8973,44 @@ export declare class MetadataOverrideEvent extends Message<MetadataOverrideEvent
|
|
|
8966
8973
|
case: undefined;
|
|
8967
8974
|
value?: undefined;
|
|
8968
8975
|
};
|
|
8969
|
-
constructor(data?: PartialMessage<
|
|
8976
|
+
constructor(data?: PartialMessage<StreamMetadataOverrideEvent>);
|
|
8970
8977
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8971
|
-
static readonly typeName = "norsk.api.media.
|
|
8978
|
+
static readonly typeName = "norsk.api.media.StreamMetadataOverrideEvent";
|
|
8972
8979
|
static readonly fields: FieldList;
|
|
8973
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8974
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8975
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8976
|
-
static equals(a:
|
|
8980
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadataOverrideEvent;
|
|
8981
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamMetadataOverrideEvent;
|
|
8982
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadataOverrideEvent;
|
|
8983
|
+
static equals(a: StreamMetadataOverrideEvent | PlainMessage<StreamMetadataOverrideEvent> | undefined, b: StreamMetadataOverrideEvent | PlainMessage<StreamMetadataOverrideEvent> | undefined): boolean;
|
|
8977
8984
|
}
|
|
8978
8985
|
/**
|
|
8979
|
-
* @generated from message norsk.api.media.
|
|
8986
|
+
* @generated from message norsk.api.media.StreamSyncConfiguration
|
|
8980
8987
|
*/
|
|
8981
|
-
export declare class
|
|
8988
|
+
export declare class StreamSyncConfiguration extends Message<StreamSyncConfiguration> {
|
|
8982
8989
|
/**
|
|
8983
8990
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
8984
8991
|
*/
|
|
8985
8992
|
id?: MediaNodeId;
|
|
8986
|
-
constructor(data?: PartialMessage<
|
|
8993
|
+
constructor(data?: PartialMessage<StreamSyncConfiguration>);
|
|
8987
8994
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8988
|
-
static readonly typeName = "norsk.api.media.
|
|
8995
|
+
static readonly typeName = "norsk.api.media.StreamSyncConfiguration";
|
|
8989
8996
|
static readonly fields: FieldList;
|
|
8990
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8991
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8992
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8993
|
-
static equals(a:
|
|
8997
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSyncConfiguration;
|
|
8998
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSyncConfiguration;
|
|
8999
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSyncConfiguration;
|
|
9000
|
+
static equals(a: StreamSyncConfiguration | PlainMessage<StreamSyncConfiguration> | undefined, b: StreamSyncConfiguration | PlainMessage<StreamSyncConfiguration> | undefined): boolean;
|
|
8994
9001
|
}
|
|
8995
9002
|
/**
|
|
8996
|
-
* @generated from message norsk.api.media.
|
|
9003
|
+
* @generated from message norsk.api.media.StreamSyncMessage
|
|
8997
9004
|
*/
|
|
8998
|
-
export declare class
|
|
9005
|
+
export declare class StreamSyncMessage extends Message<StreamSyncMessage> {
|
|
8999
9006
|
/**
|
|
9000
|
-
* @generated from oneof norsk.api.media.
|
|
9007
|
+
* @generated from oneof norsk.api.media.StreamSyncMessage.message
|
|
9001
9008
|
*/
|
|
9002
9009
|
message: {
|
|
9003
9010
|
/**
|
|
9004
|
-
* @generated from field: norsk.api.media.
|
|
9011
|
+
* @generated from field: norsk.api.media.StreamSyncConfiguration initial_config = 1;
|
|
9005
9012
|
*/
|
|
9006
|
-
value:
|
|
9013
|
+
value: StreamSyncConfiguration;
|
|
9007
9014
|
case: "initialConfig";
|
|
9008
9015
|
} | {
|
|
9009
9016
|
/**
|
|
@@ -9015,21 +9022,21 @@ export declare class SyncMessage extends Message<SyncMessage> {
|
|
|
9015
9022
|
case: undefined;
|
|
9016
9023
|
value?: undefined;
|
|
9017
9024
|
};
|
|
9018
|
-
constructor(data?: PartialMessage<
|
|
9025
|
+
constructor(data?: PartialMessage<StreamSyncMessage>);
|
|
9019
9026
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9020
|
-
static readonly typeName = "norsk.api.media.
|
|
9027
|
+
static readonly typeName = "norsk.api.media.StreamSyncMessage";
|
|
9021
9028
|
static readonly fields: FieldList;
|
|
9022
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9023
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9024
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9025
|
-
static equals(a:
|
|
9029
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSyncMessage;
|
|
9030
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSyncMessage;
|
|
9031
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSyncMessage;
|
|
9032
|
+
static equals(a: StreamSyncMessage | PlainMessage<StreamSyncMessage> | undefined, b: StreamSyncMessage | PlainMessage<StreamSyncMessage> | undefined): boolean;
|
|
9026
9033
|
}
|
|
9027
9034
|
/**
|
|
9028
|
-
* @generated from message norsk.api.media.
|
|
9035
|
+
* @generated from message norsk.api.media.StreamSyncEvent
|
|
9029
9036
|
*/
|
|
9030
|
-
export declare class
|
|
9037
|
+
export declare class StreamSyncEvent extends Message<StreamSyncEvent> {
|
|
9031
9038
|
/**
|
|
9032
|
-
* @generated from oneof norsk.api.media.
|
|
9039
|
+
* @generated from oneof norsk.api.media.StreamSyncEvent.message
|
|
9033
9040
|
*/
|
|
9034
9041
|
message: {
|
|
9035
9042
|
/**
|
|
@@ -9053,47 +9060,47 @@ export declare class SyncEvent extends Message<SyncEvent> {
|
|
|
9053
9060
|
case: undefined;
|
|
9054
9061
|
value?: undefined;
|
|
9055
9062
|
};
|
|
9056
|
-
constructor(data?: PartialMessage<
|
|
9063
|
+
constructor(data?: PartialMessage<StreamSyncEvent>);
|
|
9057
9064
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9058
|
-
static readonly typeName = "norsk.api.media.
|
|
9065
|
+
static readonly typeName = "norsk.api.media.StreamSyncEvent";
|
|
9059
9066
|
static readonly fields: FieldList;
|
|
9060
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9061
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9062
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9063
|
-
static equals(a:
|
|
9067
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSyncEvent;
|
|
9068
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSyncEvent;
|
|
9069
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSyncEvent;
|
|
9070
|
+
static equals(a: StreamSyncEvent | PlainMessage<StreamSyncEvent> | undefined, b: StreamSyncEvent | PlainMessage<StreamSyncEvent> | undefined): boolean;
|
|
9064
9071
|
}
|
|
9065
9072
|
/**
|
|
9066
9073
|
* ///////////////////////////////
|
|
9067
|
-
*
|
|
9074
|
+
* AudioEncode
|
|
9068
9075
|
*
|
|
9069
|
-
* @generated from message norsk.api.media.
|
|
9076
|
+
* @generated from message norsk.api.media.AacEncodeConfiguration
|
|
9070
9077
|
*/
|
|
9071
|
-
export declare class
|
|
9078
|
+
export declare class AacEncodeConfiguration extends Message<AacEncodeConfiguration> {
|
|
9072
9079
|
/**
|
|
9073
9080
|
* @generated from field: norsk.api.media.SampleRate sample_rate = 1;
|
|
9074
9081
|
*/
|
|
9075
9082
|
sampleRate: SampleRate;
|
|
9076
9083
|
/**
|
|
9077
|
-
* @generated from field: norsk.api.media.
|
|
9084
|
+
* @generated from field: norsk.api.media.AacEncodeConfiguration.AacProfile profile = 2;
|
|
9078
9085
|
*/
|
|
9079
|
-
profile:
|
|
9086
|
+
profile: AacEncodeConfiguration_AacProfile;
|
|
9080
9087
|
/**
|
|
9081
|
-
* @generated from field: norsk.api.media.
|
|
9088
|
+
* @generated from field: norsk.api.media.AacEncodeConfiguration.AacEncapsulation encapsulation = 3;
|
|
9082
9089
|
*/
|
|
9083
|
-
encapsulation:
|
|
9084
|
-
constructor(data?: PartialMessage<
|
|
9090
|
+
encapsulation: AacEncodeConfiguration_AacEncapsulation;
|
|
9091
|
+
constructor(data?: PartialMessage<AacEncodeConfiguration>);
|
|
9085
9092
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9086
|
-
static readonly typeName = "norsk.api.media.
|
|
9093
|
+
static readonly typeName = "norsk.api.media.AacEncodeConfiguration";
|
|
9087
9094
|
static readonly fields: FieldList;
|
|
9088
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9089
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9090
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9091
|
-
static equals(a:
|
|
9095
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AacEncodeConfiguration;
|
|
9096
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AacEncodeConfiguration;
|
|
9097
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AacEncodeConfiguration;
|
|
9098
|
+
static equals(a: AacEncodeConfiguration | PlainMessage<AacEncodeConfiguration> | undefined, b: AacEncodeConfiguration | PlainMessage<AacEncodeConfiguration> | undefined): boolean;
|
|
9092
9099
|
}
|
|
9093
9100
|
/**
|
|
9094
|
-
* @generated from enum norsk.api.media.
|
|
9101
|
+
* @generated from enum norsk.api.media.AacEncodeConfiguration.AacProfile
|
|
9095
9102
|
*/
|
|
9096
|
-
export declare enum
|
|
9103
|
+
export declare enum AacEncodeConfiguration_AacProfile {
|
|
9097
9104
|
/**
|
|
9098
9105
|
* @generated from enum value: AAC_LC_PROFILE = 0;
|
|
9099
9106
|
*/
|
|
@@ -9108,9 +9115,9 @@ export declare enum AacEncoderConfiguration_AacProfile {
|
|
|
9108
9115
|
AAC_HIGH_PROFILE = 2
|
|
9109
9116
|
}
|
|
9110
9117
|
/**
|
|
9111
|
-
* @generated from enum norsk.api.media.
|
|
9118
|
+
* @generated from enum norsk.api.media.AacEncodeConfiguration.AacEncapsulation
|
|
9112
9119
|
*/
|
|
9113
|
-
export declare enum
|
|
9120
|
+
export declare enum AacEncodeConfiguration_AacEncapsulation {
|
|
9114
9121
|
/**
|
|
9115
9122
|
* @generated from enum value: AAC_ADTS_ENCAPSULATION = 0;
|
|
9116
9123
|
*/
|
|
@@ -9121,22 +9128,22 @@ export declare enum AacEncoderConfiguration_AacEncapsulation {
|
|
|
9121
9128
|
AAC_RAW_ENCAPSULATION = 1
|
|
9122
9129
|
}
|
|
9123
9130
|
/**
|
|
9124
|
-
* @generated from message norsk.api.media.
|
|
9131
|
+
* @generated from message norsk.api.media.OpusEncodeConfiguration
|
|
9125
9132
|
*/
|
|
9126
|
-
export declare class
|
|
9127
|
-
constructor(data?: PartialMessage<
|
|
9133
|
+
export declare class OpusEncodeConfiguration extends Message<OpusEncodeConfiguration> {
|
|
9134
|
+
constructor(data?: PartialMessage<OpusEncodeConfiguration>);
|
|
9128
9135
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9129
|
-
static readonly typeName = "norsk.api.media.
|
|
9136
|
+
static readonly typeName = "norsk.api.media.OpusEncodeConfiguration";
|
|
9130
9137
|
static readonly fields: FieldList;
|
|
9131
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9132
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9133
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9134
|
-
static equals(a:
|
|
9138
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OpusEncodeConfiguration;
|
|
9139
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OpusEncodeConfiguration;
|
|
9140
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OpusEncodeConfiguration;
|
|
9141
|
+
static equals(a: OpusEncodeConfiguration | PlainMessage<OpusEncodeConfiguration> | undefined, b: OpusEncodeConfiguration | PlainMessage<OpusEncodeConfiguration> | undefined): boolean;
|
|
9135
9142
|
}
|
|
9136
9143
|
/**
|
|
9137
|
-
* @generated from message norsk.api.media.
|
|
9144
|
+
* @generated from message norsk.api.media.AudioEncodeConfiguration
|
|
9138
9145
|
*/
|
|
9139
|
-
export declare class
|
|
9146
|
+
export declare class AudioEncodeConfiguration extends Message<AudioEncodeConfiguration> {
|
|
9140
9147
|
/**
|
|
9141
9148
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
9142
9149
|
*/
|
|
@@ -9154,43 +9161,43 @@ export declare class AudioEncoderConfiguration extends Message<AudioEncoderConfi
|
|
|
9154
9161
|
*/
|
|
9155
9162
|
renditionName?: RenditionName;
|
|
9156
9163
|
/**
|
|
9157
|
-
* @generated from oneof norsk.api.media.
|
|
9164
|
+
* @generated from oneof norsk.api.media.AudioEncodeConfiguration.encoder
|
|
9158
9165
|
*/
|
|
9159
9166
|
encoder: {
|
|
9160
9167
|
/**
|
|
9161
|
-
* @generated from field: norsk.api.media.
|
|
9168
|
+
* @generated from field: norsk.api.media.AacEncodeConfiguration aac = 5;
|
|
9162
9169
|
*/
|
|
9163
|
-
value:
|
|
9170
|
+
value: AacEncodeConfiguration;
|
|
9164
9171
|
case: "aac";
|
|
9165
9172
|
} | {
|
|
9166
9173
|
/**
|
|
9167
|
-
* @generated from field: norsk.api.media.
|
|
9174
|
+
* @generated from field: norsk.api.media.OpusEncodeConfiguration opus = 6;
|
|
9168
9175
|
*/
|
|
9169
|
-
value:
|
|
9176
|
+
value: OpusEncodeConfiguration;
|
|
9170
9177
|
case: "opus";
|
|
9171
9178
|
} | {
|
|
9172
9179
|
case: undefined;
|
|
9173
9180
|
value?: undefined;
|
|
9174
9181
|
};
|
|
9175
|
-
constructor(data?: PartialMessage<
|
|
9182
|
+
constructor(data?: PartialMessage<AudioEncodeConfiguration>);
|
|
9176
9183
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9177
|
-
static readonly typeName = "norsk.api.media.
|
|
9184
|
+
static readonly typeName = "norsk.api.media.AudioEncodeConfiguration";
|
|
9178
9185
|
static readonly fields: FieldList;
|
|
9179
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9180
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9181
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9182
|
-
static equals(a:
|
|
9186
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioEncodeConfiguration;
|
|
9187
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioEncodeConfiguration;
|
|
9188
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioEncodeConfiguration;
|
|
9189
|
+
static equals(a: AudioEncodeConfiguration | PlainMessage<AudioEncodeConfiguration> | undefined, b: AudioEncodeConfiguration | PlainMessage<AudioEncodeConfiguration> | undefined): boolean;
|
|
9183
9190
|
}
|
|
9184
9191
|
/**
|
|
9185
9192
|
* Message to change how an audio encode is performed.
|
|
9186
9193
|
*
|
|
9187
|
-
* @generated from message norsk.api.media.
|
|
9194
|
+
* @generated from message norsk.api.media.AudioEncodeMessage
|
|
9188
9195
|
*/
|
|
9189
|
-
export declare class
|
|
9196
|
+
export declare class AudioEncodeMessage extends Message<AudioEncodeMessage> {
|
|
9190
9197
|
/**
|
|
9191
9198
|
* Subscription or configuration
|
|
9192
9199
|
*
|
|
9193
|
-
* @generated from oneof norsk.api.media.
|
|
9200
|
+
* @generated from oneof norsk.api.media.AudioEncodeMessage.message
|
|
9194
9201
|
*/
|
|
9195
9202
|
message: {
|
|
9196
9203
|
/**
|
|
@@ -9204,29 +9211,29 @@ export declare class AudioEncoderMessage extends Message<AudioEncoderMessage> {
|
|
|
9204
9211
|
/**
|
|
9205
9212
|
* Settings to control the encode characteristics
|
|
9206
9213
|
*
|
|
9207
|
-
* @generated from field: norsk.api.media.
|
|
9214
|
+
* @generated from field: norsk.api.media.AudioEncodeConfiguration configuration = 2;
|
|
9208
9215
|
*/
|
|
9209
|
-
value:
|
|
9216
|
+
value: AudioEncodeConfiguration;
|
|
9210
9217
|
case: "configuration";
|
|
9211
9218
|
} | {
|
|
9212
9219
|
case: undefined;
|
|
9213
9220
|
value?: undefined;
|
|
9214
9221
|
};
|
|
9215
|
-
constructor(data?: PartialMessage<
|
|
9222
|
+
constructor(data?: PartialMessage<AudioEncodeMessage>);
|
|
9216
9223
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9217
|
-
static readonly typeName = "norsk.api.media.
|
|
9224
|
+
static readonly typeName = "norsk.api.media.AudioEncodeMessage";
|
|
9218
9225
|
static readonly fields: FieldList;
|
|
9219
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9220
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9221
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9222
|
-
static equals(a:
|
|
9226
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioEncodeMessage;
|
|
9227
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioEncodeMessage;
|
|
9228
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioEncodeMessage;
|
|
9229
|
+
static equals(a: AudioEncodeMessage | PlainMessage<AudioEncodeMessage> | undefined, b: AudioEncodeMessage | PlainMessage<AudioEncodeMessage> | undefined): boolean;
|
|
9223
9230
|
}
|
|
9224
9231
|
/**
|
|
9225
|
-
* @generated from message norsk.api.media.
|
|
9232
|
+
* @generated from message norsk.api.media.AudioEncodeEvent
|
|
9226
9233
|
*/
|
|
9227
|
-
export declare class
|
|
9234
|
+
export declare class AudioEncodeEvent extends Message<AudioEncodeEvent> {
|
|
9228
9235
|
/**
|
|
9229
|
-
* @generated from oneof norsk.api.media.
|
|
9236
|
+
* @generated from oneof norsk.api.media.AudioEncodeEvent.message
|
|
9230
9237
|
*/
|
|
9231
9238
|
message: {
|
|
9232
9239
|
/**
|
|
@@ -9250,19 +9257,19 @@ export declare class AudioEncoderEvent extends Message<AudioEncoderEvent> {
|
|
|
9250
9257
|
case: undefined;
|
|
9251
9258
|
value?: undefined;
|
|
9252
9259
|
};
|
|
9253
|
-
constructor(data?: PartialMessage<
|
|
9260
|
+
constructor(data?: PartialMessage<AudioEncodeEvent>);
|
|
9254
9261
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9255
|
-
static readonly typeName = "norsk.api.media.
|
|
9262
|
+
static readonly typeName = "norsk.api.media.AudioEncodeEvent";
|
|
9256
9263
|
static readonly fields: FieldList;
|
|
9257
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9258
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9259
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9260
|
-
static equals(a:
|
|
9264
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioEncodeEvent;
|
|
9265
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioEncodeEvent;
|
|
9266
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioEncodeEvent;
|
|
9267
|
+
static equals(a: AudioEncodeEvent | PlainMessage<AudioEncodeEvent> | undefined, b: AudioEncodeEvent | PlainMessage<AudioEncodeEvent> | undefined): boolean;
|
|
9261
9268
|
}
|
|
9262
9269
|
/**
|
|
9263
|
-
* @generated from message norsk.api.media.
|
|
9270
|
+
* @generated from message norsk.api.media.StreamSwitchSmoothConfiguration
|
|
9264
9271
|
*/
|
|
9265
|
-
export declare class
|
|
9272
|
+
export declare class StreamSwitchSmoothConfiguration extends Message<StreamSwitchSmoothConfiguration> {
|
|
9266
9273
|
/**
|
|
9267
9274
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
9268
9275
|
*/
|
|
@@ -9295,40 +9302,40 @@ export declare class SmoothSwitcherConfiguration extends Message<SmoothSwitcherC
|
|
|
9295
9302
|
* @generated from field: norsk.api.media.SampleRate sample_rate = 6;
|
|
9296
9303
|
*/
|
|
9297
9304
|
sampleRate: SampleRate;
|
|
9298
|
-
constructor(data?: PartialMessage<
|
|
9305
|
+
constructor(data?: PartialMessage<StreamSwitchSmoothConfiguration>);
|
|
9299
9306
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9300
|
-
static readonly typeName = "norsk.api.media.
|
|
9307
|
+
static readonly typeName = "norsk.api.media.StreamSwitchSmoothConfiguration";
|
|
9301
9308
|
static readonly fields: FieldList;
|
|
9302
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9303
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9304
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9305
|
-
static equals(a:
|
|
9309
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothConfiguration;
|
|
9310
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchSmoothConfiguration;
|
|
9311
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothConfiguration;
|
|
9312
|
+
static equals(a: StreamSwitchSmoothConfiguration | PlainMessage<StreamSwitchSmoothConfiguration> | undefined, b: StreamSwitchSmoothConfiguration | PlainMessage<StreamSwitchSmoothConfiguration> | undefined): boolean;
|
|
9306
9313
|
}
|
|
9307
9314
|
/**
|
|
9308
|
-
* @generated from message norsk.api.media.
|
|
9315
|
+
* @generated from message norsk.api.media.StreamSwitchSmoothSwitch
|
|
9309
9316
|
*/
|
|
9310
|
-
export declare class
|
|
9317
|
+
export declare class StreamSwitchSmoothSwitch extends Message<StreamSwitchSmoothSwitch> {
|
|
9311
9318
|
/**
|
|
9312
9319
|
* The pin to select as the new active source
|
|
9313
9320
|
*
|
|
9314
9321
|
* @generated from field: norsk.api.media.InputPin new_active_source = 1;
|
|
9315
9322
|
*/
|
|
9316
9323
|
newActiveSource?: InputPin;
|
|
9317
|
-
constructor(data?: PartialMessage<
|
|
9324
|
+
constructor(data?: PartialMessage<StreamSwitchSmoothSwitch>);
|
|
9318
9325
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9319
|
-
static readonly typeName = "norsk.api.media.
|
|
9326
|
+
static readonly typeName = "norsk.api.media.StreamSwitchSmoothSwitch";
|
|
9320
9327
|
static readonly fields: FieldList;
|
|
9321
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9322
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9323
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9324
|
-
static equals(a:
|
|
9328
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothSwitch;
|
|
9329
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitch;
|
|
9330
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitch;
|
|
9331
|
+
static equals(a: StreamSwitchSmoothSwitch | PlainMessage<StreamSwitchSmoothSwitch> | undefined, b: StreamSwitchSmoothSwitch | PlainMessage<StreamSwitchSmoothSwitch> | undefined): boolean;
|
|
9325
9332
|
}
|
|
9326
9333
|
/**
|
|
9327
|
-
* @generated from message norsk.api.media.
|
|
9334
|
+
* @generated from message norsk.api.media.StreamSwitchSmoothMessage
|
|
9328
9335
|
*/
|
|
9329
|
-
export declare class
|
|
9336
|
+
export declare class StreamSwitchSmoothMessage extends Message<StreamSwitchSmoothMessage> {
|
|
9330
9337
|
/**
|
|
9331
|
-
* @generated from oneof norsk.api.media.
|
|
9338
|
+
* @generated from oneof norsk.api.media.StreamSwitchSmoothMessage.message
|
|
9332
9339
|
*/
|
|
9333
9340
|
message: {
|
|
9334
9341
|
/**
|
|
@@ -9338,35 +9345,35 @@ export declare class SmoothSwitcherMessage extends Message<SmoothSwitcherMessage
|
|
|
9338
9345
|
case: "subscription";
|
|
9339
9346
|
} | {
|
|
9340
9347
|
/**
|
|
9341
|
-
* @generated from field: norsk.api.media.
|
|
9348
|
+
* @generated from field: norsk.api.media.StreamSwitchSmoothConfiguration initial_config = 2;
|
|
9342
9349
|
*/
|
|
9343
|
-
value:
|
|
9350
|
+
value: StreamSwitchSmoothConfiguration;
|
|
9344
9351
|
case: "initialConfig";
|
|
9345
9352
|
} | {
|
|
9346
9353
|
/**
|
|
9347
|
-
* @generated from field: norsk.api.media.
|
|
9354
|
+
* @generated from field: norsk.api.media.StreamSwitchSmoothSwitch switch_source = 3;
|
|
9348
9355
|
*/
|
|
9349
|
-
value:
|
|
9356
|
+
value: StreamSwitchSmoothSwitch;
|
|
9350
9357
|
case: "switchSource";
|
|
9351
9358
|
} | {
|
|
9352
9359
|
case: undefined;
|
|
9353
9360
|
value?: undefined;
|
|
9354
9361
|
};
|
|
9355
|
-
constructor(data?: PartialMessage<
|
|
9362
|
+
constructor(data?: PartialMessage<StreamSwitchSmoothMessage>);
|
|
9356
9363
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9357
|
-
static readonly typeName = "norsk.api.media.
|
|
9364
|
+
static readonly typeName = "norsk.api.media.StreamSwitchSmoothMessage";
|
|
9358
9365
|
static readonly fields: FieldList;
|
|
9359
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9360
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9361
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9362
|
-
static equals(a:
|
|
9366
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothMessage;
|
|
9367
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchSmoothMessage;
|
|
9368
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothMessage;
|
|
9369
|
+
static equals(a: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined, b: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined): boolean;
|
|
9363
9370
|
}
|
|
9364
9371
|
/**
|
|
9365
|
-
* @generated from message norsk.api.media.
|
|
9372
|
+
* @generated from message norsk.api.media.StreamSwitchSmoothEvent
|
|
9366
9373
|
*/
|
|
9367
|
-
export declare class
|
|
9374
|
+
export declare class StreamSwitchSmoothEvent extends Message<StreamSwitchSmoothEvent> {
|
|
9368
9375
|
/**
|
|
9369
|
-
* @generated from oneof norsk.api.media.
|
|
9376
|
+
* @generated from oneof norsk.api.media.StreamSwitchSmoothEvent.message
|
|
9370
9377
|
*/
|
|
9371
9378
|
message: {
|
|
9372
9379
|
/**
|
|
@@ -9390,19 +9397,19 @@ export declare class SmoothSwitcherEvent extends Message<SmoothSwitcherEvent> {
|
|
|
9390
9397
|
case: undefined;
|
|
9391
9398
|
value?: undefined;
|
|
9392
9399
|
};
|
|
9393
|
-
constructor(data?: PartialMessage<
|
|
9400
|
+
constructor(data?: PartialMessage<StreamSwitchSmoothEvent>);
|
|
9394
9401
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9395
|
-
static readonly typeName = "norsk.api.media.
|
|
9402
|
+
static readonly typeName = "norsk.api.media.StreamSwitchSmoothEvent";
|
|
9396
9403
|
static readonly fields: FieldList;
|
|
9397
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9398
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9399
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9400
|
-
static equals(a:
|
|
9404
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothEvent;
|
|
9405
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchSmoothEvent;
|
|
9406
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothEvent;
|
|
9407
|
+
static equals(a: StreamSwitchSmoothEvent | PlainMessage<StreamSwitchSmoothEvent> | undefined, b: StreamSwitchSmoothEvent | PlainMessage<StreamSwitchSmoothEvent> | undefined): boolean;
|
|
9401
9408
|
}
|
|
9402
9409
|
/**
|
|
9403
|
-
* @generated from message norsk.api.media.
|
|
9410
|
+
* @generated from message norsk.api.media.StreamSwitchHardConfiguration
|
|
9404
9411
|
*/
|
|
9405
|
-
export declare class
|
|
9412
|
+
export declare class StreamSwitchHardConfiguration extends Message<StreamSwitchHardConfiguration> {
|
|
9406
9413
|
/**
|
|
9407
9414
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
9408
9415
|
*/
|
|
@@ -9419,40 +9426,40 @@ export declare class HardSwitcherConfiguration extends Message<HardSwitcherConfi
|
|
|
9419
9426
|
* @generated from field: string output_source = 3;
|
|
9420
9427
|
*/
|
|
9421
9428
|
outputSource: string;
|
|
9422
|
-
constructor(data?: PartialMessage<
|
|
9429
|
+
constructor(data?: PartialMessage<StreamSwitchHardConfiguration>);
|
|
9423
9430
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9424
|
-
static readonly typeName = "norsk.api.media.
|
|
9431
|
+
static readonly typeName = "norsk.api.media.StreamSwitchHardConfiguration";
|
|
9425
9432
|
static readonly fields: FieldList;
|
|
9426
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9427
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9428
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9429
|
-
static equals(a:
|
|
9433
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchHardConfiguration;
|
|
9434
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchHardConfiguration;
|
|
9435
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchHardConfiguration;
|
|
9436
|
+
static equals(a: StreamSwitchHardConfiguration | PlainMessage<StreamSwitchHardConfiguration> | undefined, b: StreamSwitchHardConfiguration | PlainMessage<StreamSwitchHardConfiguration> | undefined): boolean;
|
|
9430
9437
|
}
|
|
9431
9438
|
/**
|
|
9432
|
-
* @generated from message norsk.api.media.
|
|
9439
|
+
* @generated from message norsk.api.media.StreamSwitchHardSwitch
|
|
9433
9440
|
*/
|
|
9434
|
-
export declare class
|
|
9441
|
+
export declare class StreamSwitchHardSwitch extends Message<StreamSwitchHardSwitch> {
|
|
9435
9442
|
/**
|
|
9436
9443
|
* The pin to select as the new active source
|
|
9437
9444
|
*
|
|
9438
9445
|
* @generated from field: norsk.api.media.InputPin new_active_source = 1;
|
|
9439
9446
|
*/
|
|
9440
9447
|
newActiveSource?: InputPin;
|
|
9441
|
-
constructor(data?: PartialMessage<
|
|
9448
|
+
constructor(data?: PartialMessage<StreamSwitchHardSwitch>);
|
|
9442
9449
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9443
|
-
static readonly typeName = "norsk.api.media.
|
|
9450
|
+
static readonly typeName = "norsk.api.media.StreamSwitchHardSwitch";
|
|
9444
9451
|
static readonly fields: FieldList;
|
|
9445
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9446
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9447
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9448
|
-
static equals(a:
|
|
9452
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchHardSwitch;
|
|
9453
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchHardSwitch;
|
|
9454
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchHardSwitch;
|
|
9455
|
+
static equals(a: StreamSwitchHardSwitch | PlainMessage<StreamSwitchHardSwitch> | undefined, b: StreamSwitchHardSwitch | PlainMessage<StreamSwitchHardSwitch> | undefined): boolean;
|
|
9449
9456
|
}
|
|
9450
9457
|
/**
|
|
9451
|
-
* @generated from message norsk.api.media.
|
|
9458
|
+
* @generated from message norsk.api.media.StreamSwitchHardMessage
|
|
9452
9459
|
*/
|
|
9453
|
-
export declare class
|
|
9460
|
+
export declare class StreamSwitchHardMessage extends Message<StreamSwitchHardMessage> {
|
|
9454
9461
|
/**
|
|
9455
|
-
* @generated from oneof norsk.api.media.
|
|
9462
|
+
* @generated from oneof norsk.api.media.StreamSwitchHardMessage.message
|
|
9456
9463
|
*/
|
|
9457
9464
|
message: {
|
|
9458
9465
|
/**
|
|
@@ -9462,35 +9469,35 @@ export declare class HardSwitcherMessage extends Message<HardSwitcherMessage> {
|
|
|
9462
9469
|
case: "subscription";
|
|
9463
9470
|
} | {
|
|
9464
9471
|
/**
|
|
9465
|
-
* @generated from field: norsk.api.media.
|
|
9472
|
+
* @generated from field: norsk.api.media.StreamSwitchHardConfiguration initial_config = 2;
|
|
9466
9473
|
*/
|
|
9467
|
-
value:
|
|
9474
|
+
value: StreamSwitchHardConfiguration;
|
|
9468
9475
|
case: "initialConfig";
|
|
9469
9476
|
} | {
|
|
9470
9477
|
/**
|
|
9471
|
-
* @generated from field: norsk.api.media.
|
|
9478
|
+
* @generated from field: norsk.api.media.StreamSwitchHardSwitch switch_source = 3;
|
|
9472
9479
|
*/
|
|
9473
|
-
value:
|
|
9480
|
+
value: StreamSwitchHardSwitch;
|
|
9474
9481
|
case: "switchSource";
|
|
9475
9482
|
} | {
|
|
9476
9483
|
case: undefined;
|
|
9477
9484
|
value?: undefined;
|
|
9478
9485
|
};
|
|
9479
|
-
constructor(data?: PartialMessage<
|
|
9486
|
+
constructor(data?: PartialMessage<StreamSwitchHardMessage>);
|
|
9480
9487
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9481
|
-
static readonly typeName = "norsk.api.media.
|
|
9488
|
+
static readonly typeName = "norsk.api.media.StreamSwitchHardMessage";
|
|
9482
9489
|
static readonly fields: FieldList;
|
|
9483
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9484
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9485
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9486
|
-
static equals(a:
|
|
9490
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchHardMessage;
|
|
9491
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchHardMessage;
|
|
9492
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchHardMessage;
|
|
9493
|
+
static equals(a: StreamSwitchHardMessage | PlainMessage<StreamSwitchHardMessage> | undefined, b: StreamSwitchHardMessage | PlainMessage<StreamSwitchHardMessage> | undefined): boolean;
|
|
9487
9494
|
}
|
|
9488
9495
|
/**
|
|
9489
|
-
* @generated from message norsk.api.media.
|
|
9496
|
+
* @generated from message norsk.api.media.StreamSwitchHardEvent
|
|
9490
9497
|
*/
|
|
9491
|
-
export declare class
|
|
9498
|
+
export declare class StreamSwitchHardEvent extends Message<StreamSwitchHardEvent> {
|
|
9492
9499
|
/**
|
|
9493
|
-
* @generated from oneof norsk.api.media.
|
|
9500
|
+
* @generated from oneof norsk.api.media.StreamSwitchHardEvent.message
|
|
9494
9501
|
*/
|
|
9495
9502
|
message: {
|
|
9496
9503
|
/**
|
|
@@ -9514,45 +9521,45 @@ export declare class HardSwitcherEvent extends Message<HardSwitcherEvent> {
|
|
|
9514
9521
|
case: undefined;
|
|
9515
9522
|
value?: undefined;
|
|
9516
9523
|
};
|
|
9517
|
-
constructor(data?: PartialMessage<
|
|
9524
|
+
constructor(data?: PartialMessage<StreamSwitchHardEvent>);
|
|
9518
9525
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9519
|
-
static readonly typeName = "norsk.api.media.
|
|
9526
|
+
static readonly typeName = "norsk.api.media.StreamSwitchHardEvent";
|
|
9520
9527
|
static readonly fields: FieldList;
|
|
9521
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9522
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9523
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9524
|
-
static equals(a:
|
|
9528
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchHardEvent;
|
|
9529
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchHardEvent;
|
|
9530
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchHardEvent;
|
|
9531
|
+
static equals(a: StreamSwitchHardEvent | PlainMessage<StreamSwitchHardEvent> | undefined, b: StreamSwitchHardEvent | PlainMessage<StreamSwitchHardEvent> | undefined): boolean;
|
|
9525
9532
|
}
|
|
9526
9533
|
/**
|
|
9527
9534
|
* *
|
|
9528
9535
|
* The default sampling windows are 1s, 5s, and 30s.
|
|
9529
9536
|
*
|
|
9530
|
-
* @generated from message norsk.api.media.
|
|
9537
|
+
* @generated from message norsk.api.media.StreamStatisticsConfiguration
|
|
9531
9538
|
*/
|
|
9532
|
-
export declare class
|
|
9539
|
+
export declare class StreamStatisticsConfiguration extends Message<StreamStatisticsConfiguration> {
|
|
9533
9540
|
/**
|
|
9534
9541
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
9535
9542
|
*/
|
|
9536
9543
|
id?: MediaNodeId;
|
|
9537
9544
|
/**
|
|
9538
|
-
* @generated from field: norsk.api.media.
|
|
9545
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
|
|
9539
9546
|
*/
|
|
9540
|
-
statsSampling?:
|
|
9541
|
-
constructor(data?: PartialMessage<
|
|
9547
|
+
statsSampling?: StreamStatisticsSampling;
|
|
9548
|
+
constructor(data?: PartialMessage<StreamStatisticsConfiguration>);
|
|
9542
9549
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9543
|
-
static readonly typeName = "norsk.api.media.
|
|
9550
|
+
static readonly typeName = "norsk.api.media.StreamStatisticsConfiguration";
|
|
9544
9551
|
static readonly fields: FieldList;
|
|
9545
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9546
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9547
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9548
|
-
static equals(a:
|
|
9552
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamStatisticsConfiguration;
|
|
9553
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamStatisticsConfiguration;
|
|
9554
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamStatisticsConfiguration;
|
|
9555
|
+
static equals(a: StreamStatisticsConfiguration | PlainMessage<StreamStatisticsConfiguration> | undefined, b: StreamStatisticsConfiguration | PlainMessage<StreamStatisticsConfiguration> | undefined): boolean;
|
|
9549
9556
|
}
|
|
9550
9557
|
/**
|
|
9551
|
-
* @generated from message norsk.api.media.
|
|
9558
|
+
* @generated from message norsk.api.media.StreamStatisticsMessage
|
|
9552
9559
|
*/
|
|
9553
|
-
export declare class
|
|
9560
|
+
export declare class StreamStatisticsMessage extends Message<StreamStatisticsMessage> {
|
|
9554
9561
|
/**
|
|
9555
|
-
* @generated from oneof norsk.api.media.
|
|
9562
|
+
* @generated from oneof norsk.api.media.StreamStatisticsMessage.message
|
|
9556
9563
|
*/
|
|
9557
9564
|
message: {
|
|
9558
9565
|
/**
|
|
@@ -9562,29 +9569,29 @@ export declare class StreamStatsMessage extends Message<StreamStatsMessage> {
|
|
|
9562
9569
|
case: "subscription";
|
|
9563
9570
|
} | {
|
|
9564
9571
|
/**
|
|
9565
|
-
* @generated from field: norsk.api.media.
|
|
9572
|
+
* @generated from field: norsk.api.media.StreamStatisticsConfiguration configuration = 2;
|
|
9566
9573
|
*/
|
|
9567
|
-
value:
|
|
9574
|
+
value: StreamStatisticsConfiguration;
|
|
9568
9575
|
case: "configuration";
|
|
9569
9576
|
} | {
|
|
9570
9577
|
case: undefined;
|
|
9571
9578
|
value?: undefined;
|
|
9572
9579
|
};
|
|
9573
|
-
constructor(data?: PartialMessage<
|
|
9580
|
+
constructor(data?: PartialMessage<StreamStatisticsMessage>);
|
|
9574
9581
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9575
|
-
static readonly typeName = "norsk.api.media.
|
|
9582
|
+
static readonly typeName = "norsk.api.media.StreamStatisticsMessage";
|
|
9576
9583
|
static readonly fields: FieldList;
|
|
9577
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9578
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9579
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9580
|
-
static equals(a:
|
|
9584
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamStatisticsMessage;
|
|
9585
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamStatisticsMessage;
|
|
9586
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamStatisticsMessage;
|
|
9587
|
+
static equals(a: StreamStatisticsMessage | PlainMessage<StreamStatisticsMessage> | undefined, b: StreamStatisticsMessage | PlainMessage<StreamStatisticsMessage> | undefined): boolean;
|
|
9581
9588
|
}
|
|
9582
9589
|
/**
|
|
9583
|
-
* @generated from message norsk.api.media.
|
|
9590
|
+
* @generated from message norsk.api.media.StreamStatisticsEvent
|
|
9584
9591
|
*/
|
|
9585
|
-
export declare class
|
|
9592
|
+
export declare class StreamStatisticsEvent extends Message<StreamStatisticsEvent> {
|
|
9586
9593
|
/**
|
|
9587
|
-
* @generated from oneof norsk.api.media.
|
|
9594
|
+
* @generated from oneof norsk.api.media.StreamStatisticsEvent.message
|
|
9588
9595
|
*/
|
|
9589
9596
|
message: {
|
|
9590
9597
|
/**
|
|
@@ -9600,10 +9607,10 @@ export declare class StreamStatsEvent extends Message<StreamStatsEvent> {
|
|
|
9600
9607
|
case: "outboundContext";
|
|
9601
9608
|
} | {
|
|
9602
9609
|
/**
|
|
9603
|
-
* @generated from field: norsk.api.media.
|
|
9610
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
|
|
9604
9611
|
*/
|
|
9605
|
-
value:
|
|
9606
|
-
case: "
|
|
9612
|
+
value: MultiStreamStatistics;
|
|
9613
|
+
case: "streamStatistics";
|
|
9607
9614
|
} | {
|
|
9608
9615
|
/**
|
|
9609
9616
|
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 4;
|
|
@@ -9614,19 +9621,19 @@ export declare class StreamStatsEvent extends Message<StreamStatsEvent> {
|
|
|
9614
9621
|
case: undefined;
|
|
9615
9622
|
value?: undefined;
|
|
9616
9623
|
};
|
|
9617
|
-
constructor(data?: PartialMessage<
|
|
9624
|
+
constructor(data?: PartialMessage<StreamStatisticsEvent>);
|
|
9618
9625
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9619
|
-
static readonly typeName = "norsk.api.media.
|
|
9626
|
+
static readonly typeName = "norsk.api.media.StreamStatisticsEvent";
|
|
9620
9627
|
static readonly fields: FieldList;
|
|
9621
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9622
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9623
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9624
|
-
static equals(a:
|
|
9628
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamStatisticsEvent;
|
|
9629
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamStatisticsEvent;
|
|
9630
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamStatisticsEvent;
|
|
9631
|
+
static equals(a: StreamStatisticsEvent | PlainMessage<StreamStatisticsEvent> | undefined, b: StreamStatisticsEvent | PlainMessage<StreamStatisticsEvent> | undefined): boolean;
|
|
9625
9632
|
}
|
|
9626
9633
|
/**
|
|
9627
|
-
* @generated from message norsk.api.media.
|
|
9634
|
+
* @generated from message norsk.api.media.AudioMeasureLevelsConfiguration
|
|
9628
9635
|
*/
|
|
9629
|
-
export declare class
|
|
9636
|
+
export declare class AudioMeasureLevelsConfiguration extends Message<AudioMeasureLevelsConfiguration> {
|
|
9630
9637
|
/**
|
|
9631
9638
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
9632
9639
|
*/
|
|
@@ -9635,21 +9642,21 @@ export declare class AudioLevelsConfiguration extends Message<AudioLevelsConfigu
|
|
|
9635
9642
|
* @generated from field: uint32 intervalFrames = 2;
|
|
9636
9643
|
*/
|
|
9637
9644
|
intervalFrames: number;
|
|
9638
|
-
constructor(data?: PartialMessage<
|
|
9645
|
+
constructor(data?: PartialMessage<AudioMeasureLevelsConfiguration>);
|
|
9639
9646
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9640
|
-
static readonly typeName = "norsk.api.media.
|
|
9647
|
+
static readonly typeName = "norsk.api.media.AudioMeasureLevelsConfiguration";
|
|
9641
9648
|
static readonly fields: FieldList;
|
|
9642
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9643
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9644
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9645
|
-
static equals(a:
|
|
9649
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMeasureLevelsConfiguration;
|
|
9650
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMeasureLevelsConfiguration;
|
|
9651
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMeasureLevelsConfiguration;
|
|
9652
|
+
static equals(a: AudioMeasureLevelsConfiguration | PlainMessage<AudioMeasureLevelsConfiguration> | undefined, b: AudioMeasureLevelsConfiguration | PlainMessage<AudioMeasureLevelsConfiguration> | undefined): boolean;
|
|
9646
9653
|
}
|
|
9647
9654
|
/**
|
|
9648
|
-
* @generated from message norsk.api.media.
|
|
9655
|
+
* @generated from message norsk.api.media.AudioMeasureLevelsMessage
|
|
9649
9656
|
*/
|
|
9650
|
-
export declare class
|
|
9657
|
+
export declare class AudioMeasureLevelsMessage extends Message<AudioMeasureLevelsMessage> {
|
|
9651
9658
|
/**
|
|
9652
|
-
* @generated from oneof norsk.api.media.
|
|
9659
|
+
* @generated from oneof norsk.api.media.AudioMeasureLevelsMessage.message
|
|
9653
9660
|
*/
|
|
9654
9661
|
message: {
|
|
9655
9662
|
/**
|
|
@@ -9659,22 +9666,22 @@ export declare class AudioLevelsMessage extends Message<AudioLevelsMessage> {
|
|
|
9659
9666
|
case: "subscription";
|
|
9660
9667
|
} | {
|
|
9661
9668
|
/**
|
|
9662
|
-
* @generated from field: norsk.api.media.
|
|
9669
|
+
* @generated from field: norsk.api.media.AudioMeasureLevelsConfiguration configuration = 2;
|
|
9663
9670
|
*/
|
|
9664
|
-
value:
|
|
9671
|
+
value: AudioMeasureLevelsConfiguration;
|
|
9665
9672
|
case: "configuration";
|
|
9666
9673
|
} | {
|
|
9667
9674
|
case: undefined;
|
|
9668
9675
|
value?: undefined;
|
|
9669
9676
|
};
|
|
9670
|
-
constructor(data?: PartialMessage<
|
|
9677
|
+
constructor(data?: PartialMessage<AudioMeasureLevelsMessage>);
|
|
9671
9678
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9672
|
-
static readonly typeName = "norsk.api.media.
|
|
9679
|
+
static readonly typeName = "norsk.api.media.AudioMeasureLevelsMessage";
|
|
9673
9680
|
static readonly fields: FieldList;
|
|
9674
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9675
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9676
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9677
|
-
static equals(a:
|
|
9681
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMeasureLevelsMessage;
|
|
9682
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMeasureLevelsMessage;
|
|
9683
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMeasureLevelsMessage;
|
|
9684
|
+
static equals(a: AudioMeasureLevelsMessage | PlainMessage<AudioMeasureLevelsMessage> | undefined, b: AudioMeasureLevelsMessage | PlainMessage<AudioMeasureLevelsMessage> | undefined): boolean;
|
|
9678
9685
|
}
|
|
9679
9686
|
/**
|
|
9680
9687
|
* A time interval measured as ticks / (ticks per second)
|
|
@@ -9749,9 +9756,9 @@ export declare class ChannelLevels extends Message<ChannelLevels> {
|
|
|
9749
9756
|
static equals(a: ChannelLevels | PlainMessage<ChannelLevels> | undefined, b: ChannelLevels | PlainMessage<ChannelLevels> | undefined): boolean;
|
|
9750
9757
|
}
|
|
9751
9758
|
/**
|
|
9752
|
-
* @generated from message norsk.api.media.
|
|
9759
|
+
* @generated from message norsk.api.media.AudioMeasureLevels
|
|
9753
9760
|
*/
|
|
9754
|
-
export declare class
|
|
9761
|
+
export declare class AudioMeasureLevels extends Message<AudioMeasureLevels> {
|
|
9755
9762
|
/**
|
|
9756
9763
|
* @generated from field: norsk.api.media.StreamKey stream = 1;
|
|
9757
9764
|
*/
|
|
@@ -9764,21 +9771,21 @@ export declare class AudioLevels extends Message<AudioLevels> {
|
|
|
9764
9771
|
* @generated from field: repeated norsk.api.media.ChannelLevels channel_levels = 3;
|
|
9765
9772
|
*/
|
|
9766
9773
|
channelLevels: ChannelLevels[];
|
|
9767
|
-
constructor(data?: PartialMessage<
|
|
9774
|
+
constructor(data?: PartialMessage<AudioMeasureLevels>);
|
|
9768
9775
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9769
|
-
static readonly typeName = "norsk.api.media.
|
|
9776
|
+
static readonly typeName = "norsk.api.media.AudioMeasureLevels";
|
|
9770
9777
|
static readonly fields: FieldList;
|
|
9771
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9772
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9773
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9774
|
-
static equals(a:
|
|
9778
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMeasureLevels;
|
|
9779
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMeasureLevels;
|
|
9780
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMeasureLevels;
|
|
9781
|
+
static equals(a: AudioMeasureLevels | PlainMessage<AudioMeasureLevels> | undefined, b: AudioMeasureLevels | PlainMessage<AudioMeasureLevels> | undefined): boolean;
|
|
9775
9782
|
}
|
|
9776
9783
|
/**
|
|
9777
|
-
* @generated from message norsk.api.media.
|
|
9784
|
+
* @generated from message norsk.api.media.AudioMeasureLevelsEvent
|
|
9778
9785
|
*/
|
|
9779
|
-
export declare class
|
|
9786
|
+
export declare class AudioMeasureLevelsEvent extends Message<AudioMeasureLevelsEvent> {
|
|
9780
9787
|
/**
|
|
9781
|
-
* @generated from oneof norsk.api.media.
|
|
9788
|
+
* @generated from oneof norsk.api.media.AudioMeasureLevelsEvent.message
|
|
9782
9789
|
*/
|
|
9783
9790
|
message: {
|
|
9784
9791
|
/**
|
|
@@ -9794,9 +9801,9 @@ export declare class AudioLevelsEvent extends Message<AudioLevelsEvent> {
|
|
|
9794
9801
|
case: "outboundContext";
|
|
9795
9802
|
} | {
|
|
9796
9803
|
/**
|
|
9797
|
-
* @generated from field: norsk.api.media.
|
|
9804
|
+
* @generated from field: norsk.api.media.AudioMeasureLevels levels = 3;
|
|
9798
9805
|
*/
|
|
9799
|
-
value:
|
|
9806
|
+
value: AudioMeasureLevels;
|
|
9800
9807
|
case: "levels";
|
|
9801
9808
|
} | {
|
|
9802
9809
|
/**
|
|
@@ -9808,14 +9815,14 @@ export declare class AudioLevelsEvent extends Message<AudioLevelsEvent> {
|
|
|
9808
9815
|
case: undefined;
|
|
9809
9816
|
value?: undefined;
|
|
9810
9817
|
};
|
|
9811
|
-
constructor(data?: PartialMessage<
|
|
9818
|
+
constructor(data?: PartialMessage<AudioMeasureLevelsEvent>);
|
|
9812
9819
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9813
|
-
static readonly typeName = "norsk.api.media.
|
|
9820
|
+
static readonly typeName = "norsk.api.media.AudioMeasureLevelsEvent";
|
|
9814
9821
|
static readonly fields: FieldList;
|
|
9815
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
9816
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
9817
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
9818
|
-
static equals(a:
|
|
9822
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioMeasureLevelsEvent;
|
|
9823
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioMeasureLevelsEvent;
|
|
9824
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioMeasureLevelsEvent;
|
|
9825
|
+
static equals(a: AudioMeasureLevelsEvent | PlainMessage<AudioMeasureLevelsEvent> | undefined, b: AudioMeasureLevelsEvent | PlainMessage<AudioMeasureLevelsEvent> | undefined): boolean;
|
|
9819
9826
|
}
|
|
9820
9827
|
/**
|
|
9821
9828
|
* ///////////////////////////////
|
|
@@ -10076,9 +10083,9 @@ export declare class RtpInputConfiguration extends Message<RtpInputConfiguration
|
|
|
10076
10083
|
*/
|
|
10077
10084
|
streams: RtpStream[];
|
|
10078
10085
|
/**
|
|
10079
|
-
* @generated from field: norsk.api.media.
|
|
10086
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
10080
10087
|
*/
|
|
10081
|
-
statsSampling?:
|
|
10088
|
+
statsSampling?: StreamStatisticsSampling;
|
|
10082
10089
|
constructor(data?: PartialMessage<RtpInputConfiguration>);
|
|
10083
10090
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10084
10091
|
static readonly typeName = "norsk.api.media.RtpInputConfiguration";
|
|
@@ -10141,10 +10148,10 @@ export declare class RtpInputEvent extends Message<RtpInputEvent> {
|
|
|
10141
10148
|
case: "outboundContext";
|
|
10142
10149
|
} | {
|
|
10143
10150
|
/**
|
|
10144
|
-
* @generated from field: norsk.api.media.
|
|
10151
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 3;
|
|
10145
10152
|
*/
|
|
10146
|
-
value:
|
|
10147
|
-
case: "
|
|
10153
|
+
value: MultiStreamStatistics;
|
|
10154
|
+
case: "streamStatistics";
|
|
10148
10155
|
} | {
|
|
10149
10156
|
case: undefined;
|
|
10150
10157
|
value?: undefined;
|
|
@@ -10162,9 +10169,9 @@ export declare class RtpInputEvent extends Message<RtpInputEvent> {
|
|
|
10162
10169
|
* aws_region is the transcribe endpoint. The region in aws_credentials is the
|
|
10163
10170
|
* authentication region
|
|
10164
10171
|
*
|
|
10165
|
-
* @generated from message norsk.api.media.
|
|
10172
|
+
* @generated from message norsk.api.media.AudioTranscribeAwsConfiguration
|
|
10166
10173
|
*/
|
|
10167
|
-
export declare class
|
|
10174
|
+
export declare class AudioTranscribeAwsConfiguration extends Message<AudioTranscribeAwsConfiguration> {
|
|
10168
10175
|
/**
|
|
10169
10176
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
10170
10177
|
*/
|
|
@@ -10178,6 +10185,8 @@ export declare class AwsTranscribeConfiguration extends Message<AwsTranscribeCon
|
|
|
10178
10185
|
*/
|
|
10179
10186
|
language: string;
|
|
10180
10187
|
/**
|
|
10188
|
+
* Region for the transcribe endpoint
|
|
10189
|
+
*
|
|
10181
10190
|
* @generated from field: string aws_region = 4;
|
|
10182
10191
|
*/
|
|
10183
10192
|
awsRegion: string;
|
|
@@ -10193,21 +10202,21 @@ export declare class AwsTranscribeConfiguration extends Message<AwsTranscribeCon
|
|
|
10193
10202
|
* @generated from field: norsk.api.media.SentenceStabilizationMode sentence_stabilization_mode = 7;
|
|
10194
10203
|
*/
|
|
10195
10204
|
sentenceStabilizationMode: SentenceStabilizationMode;
|
|
10196
|
-
constructor(data?: PartialMessage<
|
|
10205
|
+
constructor(data?: PartialMessage<AudioTranscribeAwsConfiguration>);
|
|
10197
10206
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10198
|
-
static readonly typeName = "norsk.api.media.
|
|
10207
|
+
static readonly typeName = "norsk.api.media.AudioTranscribeAwsConfiguration";
|
|
10199
10208
|
static readonly fields: FieldList;
|
|
10200
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10201
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10202
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10203
|
-
static equals(a:
|
|
10209
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioTranscribeAwsConfiguration;
|
|
10210
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioTranscribeAwsConfiguration;
|
|
10211
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioTranscribeAwsConfiguration;
|
|
10212
|
+
static equals(a: AudioTranscribeAwsConfiguration | PlainMessage<AudioTranscribeAwsConfiguration> | undefined, b: AudioTranscribeAwsConfiguration | PlainMessage<AudioTranscribeAwsConfiguration> | undefined): boolean;
|
|
10204
10213
|
}
|
|
10205
10214
|
/**
|
|
10206
|
-
* @generated from message norsk.api.media.
|
|
10215
|
+
* @generated from message norsk.api.media.AudioTranscribeAwsMessage
|
|
10207
10216
|
*/
|
|
10208
|
-
export declare class
|
|
10217
|
+
export declare class AudioTranscribeAwsMessage extends Message<AudioTranscribeAwsMessage> {
|
|
10209
10218
|
/**
|
|
10210
|
-
* @generated from oneof norsk.api.media.
|
|
10219
|
+
* @generated from oneof norsk.api.media.AudioTranscribeAwsMessage.message
|
|
10211
10220
|
*/
|
|
10212
10221
|
message: {
|
|
10213
10222
|
/**
|
|
@@ -10217,29 +10226,29 @@ export declare class AwsTranscribeMessage extends Message<AwsTranscribeMessage>
|
|
|
10217
10226
|
case: "subscription";
|
|
10218
10227
|
} | {
|
|
10219
10228
|
/**
|
|
10220
|
-
* @generated from field: norsk.api.media.
|
|
10229
|
+
* @generated from field: norsk.api.media.AudioTranscribeAwsConfiguration configuration = 2;
|
|
10221
10230
|
*/
|
|
10222
|
-
value:
|
|
10231
|
+
value: AudioTranscribeAwsConfiguration;
|
|
10223
10232
|
case: "configuration";
|
|
10224
10233
|
} | {
|
|
10225
10234
|
case: undefined;
|
|
10226
10235
|
value?: undefined;
|
|
10227
10236
|
};
|
|
10228
|
-
constructor(data?: PartialMessage<
|
|
10237
|
+
constructor(data?: PartialMessage<AudioTranscribeAwsMessage>);
|
|
10229
10238
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10230
|
-
static readonly typeName = "norsk.api.media.
|
|
10239
|
+
static readonly typeName = "norsk.api.media.AudioTranscribeAwsMessage";
|
|
10231
10240
|
static readonly fields: FieldList;
|
|
10232
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10233
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10234
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10235
|
-
static equals(a:
|
|
10241
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioTranscribeAwsMessage;
|
|
10242
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioTranscribeAwsMessage;
|
|
10243
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioTranscribeAwsMessage;
|
|
10244
|
+
static equals(a: AudioTranscribeAwsMessage | PlainMessage<AudioTranscribeAwsMessage> | undefined, b: AudioTranscribeAwsMessage | PlainMessage<AudioTranscribeAwsMessage> | undefined): boolean;
|
|
10236
10245
|
}
|
|
10237
10246
|
/**
|
|
10238
|
-
* @generated from message norsk.api.media.
|
|
10247
|
+
* @generated from message norsk.api.media.AudioTranscribeAwsEvent
|
|
10239
10248
|
*/
|
|
10240
|
-
export declare class
|
|
10249
|
+
export declare class AudioTranscribeAwsEvent extends Message<AudioTranscribeAwsEvent> {
|
|
10241
10250
|
/**
|
|
10242
|
-
* @generated from oneof norsk.api.media.
|
|
10251
|
+
* @generated from oneof norsk.api.media.AudioTranscribeAwsEvent.message
|
|
10243
10252
|
*/
|
|
10244
10253
|
message: {
|
|
10245
10254
|
/**
|
|
@@ -10263,14 +10272,14 @@ export declare class AwsTranscribeEvent extends Message<AwsTranscribeEvent> {
|
|
|
10263
10272
|
case: undefined;
|
|
10264
10273
|
value?: undefined;
|
|
10265
10274
|
};
|
|
10266
|
-
constructor(data?: PartialMessage<
|
|
10275
|
+
constructor(data?: PartialMessage<AudioTranscribeAwsEvent>);
|
|
10267
10276
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10268
|
-
static readonly typeName = "norsk.api.media.
|
|
10277
|
+
static readonly typeName = "norsk.api.media.AudioTranscribeAwsEvent";
|
|
10269
10278
|
static readonly fields: FieldList;
|
|
10270
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10271
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10272
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10273
|
-
static equals(a:
|
|
10279
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioTranscribeAwsEvent;
|
|
10280
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioTranscribeAwsEvent;
|
|
10281
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioTranscribeAwsEvent;
|
|
10282
|
+
static equals(a: AudioTranscribeAwsEvent | PlainMessage<AudioTranscribeAwsEvent> | undefined, b: AudioTranscribeAwsEvent | PlainMessage<AudioTranscribeAwsEvent> | undefined): boolean;
|
|
10274
10283
|
}
|
|
10275
10284
|
/**
|
|
10276
10285
|
* ////////////////////////////////////////////////////////////////////////////
|