@norskvideo/norsk-api 1.0.338 → 1.0.340
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 +11 -11
- package/lib/media_grpc_pb.js +10 -10
- package/lib/media_pb.d.ts +391 -42
- package/lib/media_pb.js +437 -37
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +642 -62
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -1684,6 +1684,14 @@ export declare class StreamMetadata extends Message<StreamMetadata> {
|
|
|
1684
1684
|
*/
|
|
1685
1685
|
value: StreamMetadata_AncillaryMetadata;
|
|
1686
1686
|
case: "ancillary";
|
|
1687
|
+
} | {
|
|
1688
|
+
/**
|
|
1689
|
+
* Playlist metadata
|
|
1690
|
+
*
|
|
1691
|
+
* @generated from field: norsk.api.media.StreamMetadata.PlaylistMetadata playlist = 6;
|
|
1692
|
+
*/
|
|
1693
|
+
value: StreamMetadata_PlaylistMetadata;
|
|
1694
|
+
case: "playlist";
|
|
1687
1695
|
} | {
|
|
1688
1696
|
case: undefined;
|
|
1689
1697
|
value?: undefined;
|
|
@@ -1778,6 +1786,21 @@ export declare class StreamMetadata_SubtitleMetadata extends Message<StreamMetad
|
|
|
1778
1786
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadata_SubtitleMetadata;
|
|
1779
1787
|
static equals(a: StreamMetadata_SubtitleMetadata | PlainMessage<StreamMetadata_SubtitleMetadata> | undefined, b: StreamMetadata_SubtitleMetadata | PlainMessage<StreamMetadata_SubtitleMetadata> | undefined): boolean;
|
|
1780
1788
|
}
|
|
1789
|
+
/**
|
|
1790
|
+
* Metadata for a playlist stream
|
|
1791
|
+
*
|
|
1792
|
+
* @generated from message norsk.api.media.StreamMetadata.PlaylistMetadata
|
|
1793
|
+
*/
|
|
1794
|
+
export declare class StreamMetadata_PlaylistMetadata extends Message<StreamMetadata_PlaylistMetadata> {
|
|
1795
|
+
constructor(data?: PartialMessage<StreamMetadata_PlaylistMetadata>);
|
|
1796
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1797
|
+
static readonly typeName = "norsk.api.media.StreamMetadata.PlaylistMetadata";
|
|
1798
|
+
static readonly fields: FieldList;
|
|
1799
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadata_PlaylistMetadata;
|
|
1800
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamMetadata_PlaylistMetadata;
|
|
1801
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadata_PlaylistMetadata;
|
|
1802
|
+
static equals(a: StreamMetadata_PlaylistMetadata | PlainMessage<StreamMetadata_PlaylistMetadata> | undefined, b: StreamMetadata_PlaylistMetadata | PlainMessage<StreamMetadata_PlaylistMetadata> | undefined): boolean;
|
|
1803
|
+
}
|
|
1781
1804
|
/**
|
|
1782
1805
|
* Metadata for an ancillary stream
|
|
1783
1806
|
*
|
|
@@ -2082,6 +2105,243 @@ export declare class StreamStatisticsSampling extends Message<StreamStatisticsSa
|
|
|
2082
2105
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamStatisticsSampling;
|
|
2083
2106
|
static equals(a: StreamStatisticsSampling | PlainMessage<StreamStatisticsSampling> | undefined, b: StreamStatisticsSampling | PlainMessage<StreamStatisticsSampling> | undefined): boolean;
|
|
2084
2107
|
}
|
|
2108
|
+
/**
|
|
2109
|
+
* @generated from message norsk.api.media.CodecPictureStructure
|
|
2110
|
+
*/
|
|
2111
|
+
export declare class CodecPictureStructure extends Message<CodecPictureStructure> {
|
|
2112
|
+
/**
|
|
2113
|
+
* @generated from oneof norsk.api.media.CodecPictureStructure.message
|
|
2114
|
+
*/
|
|
2115
|
+
message: {
|
|
2116
|
+
/**
|
|
2117
|
+
* @generated from field: norsk.api.media.CodecPictureStructure.Mpeg2PictureStructure mpeg2video = 1;
|
|
2118
|
+
*/
|
|
2119
|
+
value: CodecPictureStructure_Mpeg2PictureStructure;
|
|
2120
|
+
case: "mpeg2video";
|
|
2121
|
+
} | {
|
|
2122
|
+
/**
|
|
2123
|
+
* @generated from field: norsk.api.media.CodecPictureStructure.H264PictureStructure h264 = 2;
|
|
2124
|
+
*/
|
|
2125
|
+
value: CodecPictureStructure_H264PictureStructure;
|
|
2126
|
+
case: "h264";
|
|
2127
|
+
} | {
|
|
2128
|
+
/**
|
|
2129
|
+
* @generated from field: norsk.api.media.CodecPictureStructure.HEVCPictureStructure hevc = 3;
|
|
2130
|
+
*/
|
|
2131
|
+
value: CodecPictureStructure_HEVCPictureStructure;
|
|
2132
|
+
case: "hevc";
|
|
2133
|
+
} | {
|
|
2134
|
+
case: undefined;
|
|
2135
|
+
value?: undefined;
|
|
2136
|
+
};
|
|
2137
|
+
constructor(data?: PartialMessage<CodecPictureStructure>);
|
|
2138
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2139
|
+
static readonly typeName = "norsk.api.media.CodecPictureStructure";
|
|
2140
|
+
static readonly fields: FieldList;
|
|
2141
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CodecPictureStructure;
|
|
2142
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CodecPictureStructure;
|
|
2143
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CodecPictureStructure;
|
|
2144
|
+
static equals(a: CodecPictureStructure | PlainMessage<CodecPictureStructure> | undefined, b: CodecPictureStructure | PlainMessage<CodecPictureStructure> | undefined): boolean;
|
|
2145
|
+
}
|
|
2146
|
+
/**
|
|
2147
|
+
* @generated from message norsk.api.media.CodecPictureStructure.Mpeg2PictureStructure
|
|
2148
|
+
*/
|
|
2149
|
+
export declare class CodecPictureStructure_Mpeg2PictureStructure extends Message<CodecPictureStructure_Mpeg2PictureStructure> {
|
|
2150
|
+
/**
|
|
2151
|
+
* @generated from field: norsk.api.media.CodecPictureStructure.Mpeg2PictureStructure.Mpeg2GopInfo gop_info = 1;
|
|
2152
|
+
*/
|
|
2153
|
+
gopInfo: CodecPictureStructure_Mpeg2PictureStructure_Mpeg2GopInfo;
|
|
2154
|
+
constructor(data?: PartialMessage<CodecPictureStructure_Mpeg2PictureStructure>);
|
|
2155
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2156
|
+
static readonly typeName = "norsk.api.media.CodecPictureStructure.Mpeg2PictureStructure";
|
|
2157
|
+
static readonly fields: FieldList;
|
|
2158
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CodecPictureStructure_Mpeg2PictureStructure;
|
|
2159
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CodecPictureStructure_Mpeg2PictureStructure;
|
|
2160
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CodecPictureStructure_Mpeg2PictureStructure;
|
|
2161
|
+
static equals(a: CodecPictureStructure_Mpeg2PictureStructure | PlainMessage<CodecPictureStructure_Mpeg2PictureStructure> | undefined, b: CodecPictureStructure_Mpeg2PictureStructure | PlainMessage<CodecPictureStructure_Mpeg2PictureStructure> | undefined): boolean;
|
|
2162
|
+
}
|
|
2163
|
+
/**
|
|
2164
|
+
* @generated from enum norsk.api.media.CodecPictureStructure.Mpeg2PictureStructure.Mpeg2GopInfo
|
|
2165
|
+
*/
|
|
2166
|
+
export declare enum CodecPictureStructure_Mpeg2PictureStructure_Mpeg2GopInfo {
|
|
2167
|
+
/**
|
|
2168
|
+
* There is no gop information, either because it is not coded or this is not the start of a gop
|
|
2169
|
+
*
|
|
2170
|
+
* @generated from enum value: MPEG2_GOP_UNKNOWN = 0;
|
|
2171
|
+
*/
|
|
2172
|
+
MPEG2_GOP_UNKNOWN = 0,
|
|
2173
|
+
/**
|
|
2174
|
+
* Indicates gop information is present and this is the start of a closed gop
|
|
2175
|
+
*
|
|
2176
|
+
* @generated from enum value: MPEG2_GOP_CLOSED = 1;
|
|
2177
|
+
*/
|
|
2178
|
+
MPEG2_GOP_CLOSED = 1,
|
|
2179
|
+
/**
|
|
2180
|
+
* Indicates gop information is present and this is the start of an open gop
|
|
2181
|
+
*
|
|
2182
|
+
* @generated from enum value: MPEG2_GOP_OPEN = 2;
|
|
2183
|
+
*/
|
|
2184
|
+
MPEG2_GOP_OPEN = 2
|
|
2185
|
+
}
|
|
2186
|
+
/**
|
|
2187
|
+
* @generated from message norsk.api.media.CodecPictureStructure.H264PictureStructure
|
|
2188
|
+
*/
|
|
2189
|
+
export declare class CodecPictureStructure_H264PictureStructure extends Message<CodecPictureStructure_H264PictureStructure> {
|
|
2190
|
+
/**
|
|
2191
|
+
* @generated from field: bool idr_frame = 1;
|
|
2192
|
+
*/
|
|
2193
|
+
idrFrame: boolean;
|
|
2194
|
+
/**
|
|
2195
|
+
* @generated from field: repeated norsk.api.media.CodecPictureStructure.H264PictureStructure.H264SliceType slice_types = 2;
|
|
2196
|
+
*/
|
|
2197
|
+
sliceTypes: CodecPictureStructure_H264PictureStructure_H264SliceType[];
|
|
2198
|
+
constructor(data?: PartialMessage<CodecPictureStructure_H264PictureStructure>);
|
|
2199
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2200
|
+
static readonly typeName = "norsk.api.media.CodecPictureStructure.H264PictureStructure";
|
|
2201
|
+
static readonly fields: FieldList;
|
|
2202
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CodecPictureStructure_H264PictureStructure;
|
|
2203
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CodecPictureStructure_H264PictureStructure;
|
|
2204
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CodecPictureStructure_H264PictureStructure;
|
|
2205
|
+
static equals(a: CodecPictureStructure_H264PictureStructure | PlainMessage<CodecPictureStructure_H264PictureStructure> | undefined, b: CodecPictureStructure_H264PictureStructure | PlainMessage<CodecPictureStructure_H264PictureStructure> | undefined): boolean;
|
|
2206
|
+
}
|
|
2207
|
+
/**
|
|
2208
|
+
* @generated from enum norsk.api.media.CodecPictureStructure.H264PictureStructure.H264SliceType
|
|
2209
|
+
*/
|
|
2210
|
+
export declare enum CodecPictureStructure_H264PictureStructure_H264SliceType {
|
|
2211
|
+
/**
|
|
2212
|
+
* @generated from enum value: H264_SLICE_TYPE_UNKNOWN = 0;
|
|
2213
|
+
*/
|
|
2214
|
+
UNKNOWN = 0,
|
|
2215
|
+
/**
|
|
2216
|
+
* @generated from enum value: H264_SLICE_TYPE_I = 1;
|
|
2217
|
+
*/
|
|
2218
|
+
I = 1,
|
|
2219
|
+
/**
|
|
2220
|
+
* @generated from enum value: H264_SLICE_TYPE_P = 2;
|
|
2221
|
+
*/
|
|
2222
|
+
P = 2,
|
|
2223
|
+
/**
|
|
2224
|
+
* @generated from enum value: H264_SLICE_TYPE_B = 3;
|
|
2225
|
+
*/
|
|
2226
|
+
B = 3,
|
|
2227
|
+
/**
|
|
2228
|
+
* @generated from enum value: H264_SLICE_TYPE_SI = 4;
|
|
2229
|
+
*/
|
|
2230
|
+
SI = 4,
|
|
2231
|
+
/**
|
|
2232
|
+
* @generated from enum value: H264_SLICE_TYPE_SP = 5;
|
|
2233
|
+
*/
|
|
2234
|
+
SP = 5
|
|
2235
|
+
}
|
|
2236
|
+
/**
|
|
2237
|
+
* @generated from message norsk.api.media.CodecPictureStructure.HEVCPictureStructure
|
|
2238
|
+
*/
|
|
2239
|
+
export declare class CodecPictureStructure_HEVCPictureStructure extends Message<CodecPictureStructure_HEVCPictureStructure> {
|
|
2240
|
+
/**
|
|
2241
|
+
* @generated from field: bool irap_frame = 1;
|
|
2242
|
+
*/
|
|
2243
|
+
irapFrame: boolean;
|
|
2244
|
+
/**
|
|
2245
|
+
* @generated from field: bool idr_frame = 2;
|
|
2246
|
+
*/
|
|
2247
|
+
idrFrame: boolean;
|
|
2248
|
+
/**
|
|
2249
|
+
* @generated from field: repeated norsk.api.media.CodecPictureStructure.HEVCPictureStructure.HEVCSliceType slice_types = 3;
|
|
2250
|
+
*/
|
|
2251
|
+
sliceTypes: CodecPictureStructure_HEVCPictureStructure_HEVCSliceType[];
|
|
2252
|
+
constructor(data?: PartialMessage<CodecPictureStructure_HEVCPictureStructure>);
|
|
2253
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2254
|
+
static readonly typeName = "norsk.api.media.CodecPictureStructure.HEVCPictureStructure";
|
|
2255
|
+
static readonly fields: FieldList;
|
|
2256
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CodecPictureStructure_HEVCPictureStructure;
|
|
2257
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CodecPictureStructure_HEVCPictureStructure;
|
|
2258
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CodecPictureStructure_HEVCPictureStructure;
|
|
2259
|
+
static equals(a: CodecPictureStructure_HEVCPictureStructure | PlainMessage<CodecPictureStructure_HEVCPictureStructure> | undefined, b: CodecPictureStructure_HEVCPictureStructure | PlainMessage<CodecPictureStructure_HEVCPictureStructure> | undefined): boolean;
|
|
2260
|
+
}
|
|
2261
|
+
/**
|
|
2262
|
+
* @generated from enum norsk.api.media.CodecPictureStructure.HEVCPictureStructure.HEVCSliceType
|
|
2263
|
+
*/
|
|
2264
|
+
export declare enum CodecPictureStructure_HEVCPictureStructure_HEVCSliceType {
|
|
2265
|
+
/**
|
|
2266
|
+
* @generated from enum value: HEVC_SLICE_TYPE_UNKNOWN = 0;
|
|
2267
|
+
*/
|
|
2268
|
+
HEVC_SLICE_TYPE_UNKNOWN = 0,
|
|
2269
|
+
/**
|
|
2270
|
+
* @generated from enum value: HEVC_SLICE_TYPE_I = 1;
|
|
2271
|
+
*/
|
|
2272
|
+
HEVC_SLICE_TYPE_I = 1,
|
|
2273
|
+
/**
|
|
2274
|
+
* @generated from enum value: HEVC_SLICE_TYPE_P = 2;
|
|
2275
|
+
*/
|
|
2276
|
+
HEVC_SLICE_TYPE_P = 2,
|
|
2277
|
+
/**
|
|
2278
|
+
* @generated from enum value: HEVC_SLICE_TYPE_B = 3;
|
|
2279
|
+
*/
|
|
2280
|
+
HEVC_SLICE_TYPE_B = 3
|
|
2281
|
+
}
|
|
2282
|
+
/**
|
|
2283
|
+
* @generated from message norsk.api.media.GopStructure
|
|
2284
|
+
*/
|
|
2285
|
+
export declare class GopStructure extends Message<GopStructure> {
|
|
2286
|
+
/**
|
|
2287
|
+
* @generated from field: norsk.api.media.StreamKey stream_key = 1;
|
|
2288
|
+
*/
|
|
2289
|
+
streamKey?: StreamKey;
|
|
2290
|
+
/**
|
|
2291
|
+
* @generated from field: repeated norsk.api.media.GopStructure.SinglePictureStructure pictures = 2;
|
|
2292
|
+
*/
|
|
2293
|
+
pictures: GopStructure_SinglePictureStructure[];
|
|
2294
|
+
constructor(data?: PartialMessage<GopStructure>);
|
|
2295
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2296
|
+
static readonly typeName = "norsk.api.media.GopStructure";
|
|
2297
|
+
static readonly fields: FieldList;
|
|
2298
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GopStructure;
|
|
2299
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GopStructure;
|
|
2300
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GopStructure;
|
|
2301
|
+
static equals(a: GopStructure | PlainMessage<GopStructure> | undefined, b: GopStructure | PlainMessage<GopStructure> | undefined): boolean;
|
|
2302
|
+
}
|
|
2303
|
+
/**
|
|
2304
|
+
* @generated from enum norsk.api.media.GopStructure.PictureType
|
|
2305
|
+
*/
|
|
2306
|
+
export declare enum GopStructure_PictureType {
|
|
2307
|
+
/**
|
|
2308
|
+
* @generated from enum value: PICTURE_TYPE_UNKNOWN = 0;
|
|
2309
|
+
*/
|
|
2310
|
+
UNKNOWN = 0,
|
|
2311
|
+
/**
|
|
2312
|
+
* @generated from enum value: PICTURE_TYPE_I = 1;
|
|
2313
|
+
*/
|
|
2314
|
+
I = 1,
|
|
2315
|
+
/**
|
|
2316
|
+
* @generated from enum value: PICTURE_TYPE_P = 2;
|
|
2317
|
+
*/
|
|
2318
|
+
P = 2,
|
|
2319
|
+
/**
|
|
2320
|
+
* @generated from enum value: PICTURE_TYPE_B = 3;
|
|
2321
|
+
*/
|
|
2322
|
+
B = 3
|
|
2323
|
+
}
|
|
2324
|
+
/**
|
|
2325
|
+
* @generated from message norsk.api.media.GopStructure.SinglePictureStructure
|
|
2326
|
+
*/
|
|
2327
|
+
export declare class GopStructure_SinglePictureStructure extends Message<GopStructure_SinglePictureStructure> {
|
|
2328
|
+
/**
|
|
2329
|
+
* @generated from field: norsk.api.media.GopStructure.PictureType generic_picture_type = 1;
|
|
2330
|
+
*/
|
|
2331
|
+
genericPictureType: GopStructure_PictureType;
|
|
2332
|
+
/**
|
|
2333
|
+
* @generated from field: norsk.api.media.CodecPictureStructure codec_structure = 2;
|
|
2334
|
+
*/
|
|
2335
|
+
codecStructure?: CodecPictureStructure;
|
|
2336
|
+
constructor(data?: PartialMessage<GopStructure_SinglePictureStructure>);
|
|
2337
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2338
|
+
static readonly typeName = "norsk.api.media.GopStructure.SinglePictureStructure";
|
|
2339
|
+
static readonly fields: FieldList;
|
|
2340
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GopStructure_SinglePictureStructure;
|
|
2341
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GopStructure_SinglePictureStructure;
|
|
2342
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GopStructure_SinglePictureStructure;
|
|
2343
|
+
static equals(a: GopStructure_SinglePictureStructure | PlainMessage<GopStructure_SinglePictureStructure> | undefined, b: GopStructure_SinglePictureStructure | PlainMessage<GopStructure_SinglePictureStructure> | undefined): boolean;
|
|
2344
|
+
}
|
|
2085
2345
|
/**
|
|
2086
2346
|
* @generated from message norsk.api.media.ConnectionId
|
|
2087
2347
|
*/
|
|
@@ -2571,6 +2831,12 @@ export declare class RtmpServerInputEvent extends Message<RtmpServerInputEvent>
|
|
|
2571
2831
|
*/
|
|
2572
2832
|
value: RtmpBytesRead;
|
|
2573
2833
|
case: "bytesRead";
|
|
2834
|
+
} | {
|
|
2835
|
+
/**
|
|
2836
|
+
* @generated from field: norsk.api.media.GopStructure gop_structure = 9;
|
|
2837
|
+
*/
|
|
2838
|
+
value: GopStructure;
|
|
2839
|
+
case: "gopStructure";
|
|
2574
2840
|
} | {
|
|
2575
2841
|
case: undefined;
|
|
2576
2842
|
value?: undefined;
|
|
@@ -2767,6 +3033,12 @@ export declare class TsInputEvent extends Message<TsInputEvent> {
|
|
|
2767
3033
|
*/
|
|
2768
3034
|
value: MultiStreamStatistics;
|
|
2769
3035
|
case: "streamStatistics";
|
|
3036
|
+
} | {
|
|
3037
|
+
/**
|
|
3038
|
+
* @generated from field: norsk.api.media.GopStructure gop_structure = 6;
|
|
3039
|
+
*/
|
|
3040
|
+
value: GopStructure;
|
|
3041
|
+
case: "gopStructure";
|
|
2770
3042
|
} | {
|
|
2771
3043
|
case: undefined;
|
|
2772
3044
|
value?: undefined;
|
|
@@ -3229,6 +3501,12 @@ export declare class SrtInputEvent extends Message<SrtInputEvent> {
|
|
|
3229
3501
|
*/
|
|
3230
3502
|
value: MultiStreamStatistics;
|
|
3231
3503
|
case: "streamStatistics";
|
|
3504
|
+
} | {
|
|
3505
|
+
/**
|
|
3506
|
+
* @generated from field: norsk.api.media.GopStructure gop_structure = 8;
|
|
3507
|
+
*/
|
|
3508
|
+
value: GopStructure;
|
|
3509
|
+
case: "gopStructure";
|
|
3232
3510
|
} | {
|
|
3233
3511
|
case: undefined;
|
|
3234
3512
|
value?: undefined;
|
|
@@ -4835,6 +5113,10 @@ export declare class VideoComposeConfiguration extends Message<VideoComposeConfi
|
|
|
4835
5113
|
* @generated from field: norsk.api.media.VideoComposeConfiguration.MissingStreamBehaviour missing_stream_behaviour = 7;
|
|
4836
5114
|
*/
|
|
4837
5115
|
missingStreamBehaviour: VideoComposeConfiguration_MissingStreamBehaviour;
|
|
5116
|
+
/**
|
|
5117
|
+
* @generated from field: norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration hardware_acceleration = 8;
|
|
5118
|
+
*/
|
|
5119
|
+
hardwareAcceleration: VideoComposeConfiguration_ComposeHardwareAcceleration;
|
|
4838
5120
|
constructor(data?: PartialMessage<VideoComposeConfiguration>);
|
|
4839
5121
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4840
5122
|
static readonly typeName = "norsk.api.media.VideoComposeConfiguration";
|
|
@@ -4844,6 +5126,19 @@ export declare class VideoComposeConfiguration extends Message<VideoComposeConfi
|
|
|
4844
5126
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoComposeConfiguration;
|
|
4845
5127
|
static equals(a: VideoComposeConfiguration | PlainMessage<VideoComposeConfiguration> | undefined, b: VideoComposeConfiguration | PlainMessage<VideoComposeConfiguration> | undefined): boolean;
|
|
4846
5128
|
}
|
|
5129
|
+
/**
|
|
5130
|
+
* @generated from enum norsk.api.media.VideoComposeConfiguration.ComposeHardwareAcceleration
|
|
5131
|
+
*/
|
|
5132
|
+
export declare enum VideoComposeConfiguration_ComposeHardwareAcceleration {
|
|
5133
|
+
/**
|
|
5134
|
+
* @generated from enum value: NONE = 0;
|
|
5135
|
+
*/
|
|
5136
|
+
NONE = 0,
|
|
5137
|
+
/**
|
|
5138
|
+
* @generated from enum value: QUADRA = 1;
|
|
5139
|
+
*/
|
|
5140
|
+
QUADRA = 1
|
|
5141
|
+
}
|
|
4847
5142
|
/**
|
|
4848
5143
|
* @generated from enum norsk.api.media.VideoComposeConfiguration.PixelFormat
|
|
4849
5144
|
*/
|
|
@@ -6381,9 +6676,9 @@ export declare class CmafWebVttMessage extends Message<CmafWebVttMessage> {
|
|
|
6381
6676
|
static equals(a: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined, b: CmafWebVttMessage | PlainMessage<CmafWebVttMessage> | undefined): boolean;
|
|
6382
6677
|
}
|
|
6383
6678
|
/**
|
|
6384
|
-
* @generated from message norsk.api.media.
|
|
6679
|
+
* @generated from message norsk.api.media.CmafMultiVariantConfiguration
|
|
6385
6680
|
*/
|
|
6386
|
-
export declare class
|
|
6681
|
+
export declare class CmafMultiVariantConfiguration extends Message<CmafMultiVariantConfiguration> {
|
|
6387
6682
|
/**
|
|
6388
6683
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
6389
6684
|
*/
|
|
@@ -6401,7 +6696,7 @@ export declare class CmafMasterConfiguration extends Message<CmafMasterConfigura
|
|
|
6401
6696
|
*/
|
|
6402
6697
|
destinations: CMAFDestination[];
|
|
6403
6698
|
/**
|
|
6404
|
-
* Directives to add to the m3u
|
|
6699
|
+
* Directives to add to the m3u multi variant playlist
|
|
6405
6700
|
*
|
|
6406
6701
|
* @generated from field: string m3u_additions = 5;
|
|
6407
6702
|
*/
|
|
@@ -6412,21 +6707,21 @@ export declare class CmafMasterConfiguration extends Message<CmafMasterConfigura
|
|
|
6412
6707
|
* @generated from field: string mpd_additions = 6;
|
|
6413
6708
|
*/
|
|
6414
6709
|
mpdAdditions: string;
|
|
6415
|
-
constructor(data?: PartialMessage<
|
|
6710
|
+
constructor(data?: PartialMessage<CmafMultiVariantConfiguration>);
|
|
6416
6711
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6417
|
-
static readonly typeName = "norsk.api.media.
|
|
6712
|
+
static readonly typeName = "norsk.api.media.CmafMultiVariantConfiguration";
|
|
6418
6713
|
static readonly fields: FieldList;
|
|
6419
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6420
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6421
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6422
|
-
static equals(a:
|
|
6714
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMultiVariantConfiguration;
|
|
6715
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMultiVariantConfiguration;
|
|
6716
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMultiVariantConfiguration;
|
|
6717
|
+
static equals(a: CmafMultiVariantConfiguration | PlainMessage<CmafMultiVariantConfiguration> | undefined, b: CmafMultiVariantConfiguration | PlainMessage<CmafMultiVariantConfiguration> | undefined): boolean;
|
|
6423
6718
|
}
|
|
6424
6719
|
/**
|
|
6425
|
-
* @generated from message norsk.api.media.
|
|
6720
|
+
* @generated from message norsk.api.media.CmafMultiVariantMessage
|
|
6426
6721
|
*/
|
|
6427
|
-
export declare class
|
|
6722
|
+
export declare class CmafMultiVariantMessage extends Message<CmafMultiVariantMessage> {
|
|
6428
6723
|
/**
|
|
6429
|
-
* @generated from oneof norsk.api.media.
|
|
6724
|
+
* @generated from oneof norsk.api.media.CmafMultiVariantMessage.message
|
|
6430
6725
|
*/
|
|
6431
6726
|
message: {
|
|
6432
6727
|
/**
|
|
@@ -6436,9 +6731,9 @@ export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
|
|
|
6436
6731
|
case: "subscription";
|
|
6437
6732
|
} | {
|
|
6438
6733
|
/**
|
|
6439
|
-
* @generated from field: norsk.api.media.
|
|
6734
|
+
* @generated from field: norsk.api.media.CmafMultiVariantConfiguration configuration = 2;
|
|
6440
6735
|
*/
|
|
6441
|
-
value:
|
|
6736
|
+
value: CmafMultiVariantConfiguration;
|
|
6442
6737
|
case: "configuration";
|
|
6443
6738
|
} | {
|
|
6444
6739
|
/**
|
|
@@ -6450,14 +6745,14 @@ export declare class CmafMasterMessage extends Message<CmafMasterMessage> {
|
|
|
6450
6745
|
case: undefined;
|
|
6451
6746
|
value?: undefined;
|
|
6452
6747
|
};
|
|
6453
|
-
constructor(data?: PartialMessage<
|
|
6748
|
+
constructor(data?: PartialMessage<CmafMultiVariantMessage>);
|
|
6454
6749
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6455
|
-
static readonly typeName = "norsk.api.media.
|
|
6750
|
+
static readonly typeName = "norsk.api.media.CmafMultiVariantMessage";
|
|
6456
6751
|
static readonly fields: FieldList;
|
|
6457
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6458
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6459
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6460
|
-
static equals(a:
|
|
6752
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CmafMultiVariantMessage;
|
|
6753
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CmafMultiVariantMessage;
|
|
6754
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CmafMultiVariantMessage;
|
|
6755
|
+
static equals(a: CmafMultiVariantMessage | PlainMessage<CmafMultiVariantMessage> | undefined, b: CmafMultiVariantMessage | PlainMessage<CmafMultiVariantMessage> | undefined): boolean;
|
|
6461
6756
|
}
|
|
6462
6757
|
/**
|
|
6463
6758
|
* @generated from message norsk.api.media.HlsTsCombinedPushConfiguration
|
|
@@ -6608,6 +6903,12 @@ export declare class HlsOutputEvent extends Message<HlsOutputEvent> {
|
|
|
6608
6903
|
*/
|
|
6609
6904
|
value: MultiStreamStatistics;
|
|
6610
6905
|
case: "streamStatistics";
|
|
6906
|
+
} | {
|
|
6907
|
+
/**
|
|
6908
|
+
* @generated from field: norsk.api.media.Context outbound_context = 5;
|
|
6909
|
+
*/
|
|
6910
|
+
value: Context;
|
|
6911
|
+
case: "outboundContext";
|
|
6611
6912
|
} | {
|
|
6612
6913
|
case: undefined;
|
|
6613
6914
|
value?: undefined;
|
|
@@ -8627,10 +8928,6 @@ export declare class QuadraH264 extends Message<QuadraH264> {
|
|
|
8627
8928
|
* @generated from field: norsk.api.media.OptionalInt bitrate = 4;
|
|
8628
8929
|
*/
|
|
8629
8930
|
bitrate?: OptionalInt;
|
|
8630
|
-
/**
|
|
8631
|
-
* @generated from field: norsk.api.media.OptionalBool flushGop = 5;
|
|
8632
|
-
*/
|
|
8633
|
-
flushGop?: OptionalBool;
|
|
8634
8931
|
/**
|
|
8635
8932
|
* @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
|
|
8636
8933
|
*/
|
|
@@ -8639,10 +8936,6 @@ export declare class QuadraH264 extends Message<QuadraH264> {
|
|
|
8639
8936
|
* @generated from field: norsk.api.media.OptionalInt crf = 7;
|
|
8640
8937
|
*/
|
|
8641
8938
|
crf?: OptionalInt;
|
|
8642
|
-
/**
|
|
8643
|
-
* @generated from field: norsk.api.media.OptionalBool cbr = 8;
|
|
8644
|
-
*/
|
|
8645
|
-
cbr?: OptionalBool;
|
|
8646
8939
|
/**
|
|
8647
8940
|
* @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
|
|
8648
8941
|
*/
|
|
@@ -8668,9 +8961,45 @@ export declare class QuadraH264 extends Message<QuadraH264> {
|
|
|
8668
8961
|
*/
|
|
8669
8962
|
intraQp?: OptionalInt;
|
|
8670
8963
|
/**
|
|
8671
|
-
* @generated from field: norsk.api.media.
|
|
8964
|
+
* @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
|
|
8672
8965
|
*/
|
|
8673
|
-
|
|
8966
|
+
hrdEnable?: OptionalBool;
|
|
8967
|
+
/**
|
|
8968
|
+
* @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
|
|
8969
|
+
*/
|
|
8970
|
+
dolbyVisionProfile?: OptionalInt;
|
|
8971
|
+
/**
|
|
8972
|
+
* @generated from field: norsk.api.media.OptionalBool fillerEnable = 20;
|
|
8973
|
+
*/
|
|
8974
|
+
fillerEnable?: OptionalBool;
|
|
8975
|
+
/**
|
|
8976
|
+
* @generated from field: norsk.api.media.OptionalInt minQp = 21;
|
|
8977
|
+
*/
|
|
8978
|
+
minQp?: OptionalInt;
|
|
8979
|
+
/**
|
|
8980
|
+
* @generated from field: norsk.api.media.OptionalInt maxQp = 22;
|
|
8981
|
+
*/
|
|
8982
|
+
maxQp?: OptionalInt;
|
|
8983
|
+
/**
|
|
8984
|
+
* @generated from field: norsk.api.media.OptionalInt maxDeltaQp = 23;
|
|
8985
|
+
*/
|
|
8986
|
+
maxDeltaQp?: OptionalInt;
|
|
8987
|
+
/**
|
|
8988
|
+
* @generated from field: norsk.api.media.OptionalBool cuLevelRCEnable = 24;
|
|
8989
|
+
*/
|
|
8990
|
+
cuLevelRCEnable?: OptionalBool;
|
|
8991
|
+
/**
|
|
8992
|
+
* @generated from field: norsk.api.media.OptionalInt lookAheadDepth = 25;
|
|
8993
|
+
*/
|
|
8994
|
+
lookAheadDepth?: OptionalInt;
|
|
8995
|
+
/**
|
|
8996
|
+
* @generated from field: norsk.api.media.OptionalInt vbvBufferSize = 26;
|
|
8997
|
+
*/
|
|
8998
|
+
vbvBufferSize?: OptionalInt;
|
|
8999
|
+
/**
|
|
9000
|
+
* @generated from field: norsk.api.media.OptionalInt vbvMaxRate = 27;
|
|
9001
|
+
*/
|
|
9002
|
+
vbvMaxRate?: OptionalInt;
|
|
8674
9003
|
constructor(data?: PartialMessage<QuadraH264>);
|
|
8675
9004
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8676
9005
|
static readonly typeName = "norsk.api.media.QuadraH264";
|
|
@@ -8729,10 +9058,6 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
|
|
|
8729
9058
|
* @generated from field: norsk.api.media.OptionalInt bitrate = 4;
|
|
8730
9059
|
*/
|
|
8731
9060
|
bitrate?: OptionalInt;
|
|
8732
|
-
/**
|
|
8733
|
-
* @generated from field: norsk.api.media.OptionalBool flushGop = 5;
|
|
8734
|
-
*/
|
|
8735
|
-
flushGop?: OptionalBool;
|
|
8736
9061
|
/**
|
|
8737
9062
|
* @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
|
|
8738
9063
|
*/
|
|
@@ -8741,10 +9066,6 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
|
|
|
8741
9066
|
* @generated from field: norsk.api.media.OptionalInt crf = 7;
|
|
8742
9067
|
*/
|
|
8743
9068
|
crf?: OptionalInt;
|
|
8744
|
-
/**
|
|
8745
|
-
* @generated from field: norsk.api.media.OptionalBool cbr = 8;
|
|
8746
|
-
*/
|
|
8747
|
-
cbr?: OptionalBool;
|
|
8748
9069
|
/**
|
|
8749
9070
|
* @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
|
|
8750
9071
|
*/
|
|
@@ -8777,10 +9098,6 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
|
|
|
8777
9098
|
* @generated from field: norsk.api.media.OptionalInt intraQp = 16;
|
|
8778
9099
|
*/
|
|
8779
9100
|
intraQp?: OptionalInt;
|
|
8780
|
-
/**
|
|
8781
|
-
* @generated from field: norsk.api.media.OptionalInt rcInitDelay = 17;
|
|
8782
|
-
*/
|
|
8783
|
-
rcInitDelay?: OptionalInt;
|
|
8784
9101
|
/**
|
|
8785
9102
|
* @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
|
|
8786
9103
|
*/
|
|
@@ -8789,6 +9106,38 @@ export declare class QuadraHevc extends Message<QuadraHevc> {
|
|
|
8789
9106
|
* @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
|
|
8790
9107
|
*/
|
|
8791
9108
|
dolbyVisionProfile?: OptionalInt;
|
|
9109
|
+
/**
|
|
9110
|
+
* @generated from field: norsk.api.media.OptionalBool fillerEnable = 20;
|
|
9111
|
+
*/
|
|
9112
|
+
fillerEnable?: OptionalBool;
|
|
9113
|
+
/**
|
|
9114
|
+
* @generated from field: norsk.api.media.OptionalInt minQp = 21;
|
|
9115
|
+
*/
|
|
9116
|
+
minQp?: OptionalInt;
|
|
9117
|
+
/**
|
|
9118
|
+
* @generated from field: norsk.api.media.OptionalInt maxQp = 22;
|
|
9119
|
+
*/
|
|
9120
|
+
maxQp?: OptionalInt;
|
|
9121
|
+
/**
|
|
9122
|
+
* @generated from field: norsk.api.media.OptionalInt maxDeltaQp = 23;
|
|
9123
|
+
*/
|
|
9124
|
+
maxDeltaQp?: OptionalInt;
|
|
9125
|
+
/**
|
|
9126
|
+
* @generated from field: norsk.api.media.OptionalBool cuLevelRCEnable = 24;
|
|
9127
|
+
*/
|
|
9128
|
+
cuLevelRCEnable?: OptionalBool;
|
|
9129
|
+
/**
|
|
9130
|
+
* @generated from field: norsk.api.media.OptionalInt lookAheadDepth = 25;
|
|
9131
|
+
*/
|
|
9132
|
+
lookAheadDepth?: OptionalInt;
|
|
9133
|
+
/**
|
|
9134
|
+
* @generated from field: norsk.api.media.OptionalInt vbvBufferSize = 26;
|
|
9135
|
+
*/
|
|
9136
|
+
vbvBufferSize?: OptionalInt;
|
|
9137
|
+
/**
|
|
9138
|
+
* @generated from field: norsk.api.media.OptionalInt vbvMaxRate = 27;
|
|
9139
|
+
*/
|
|
9140
|
+
vbvMaxRate?: OptionalInt;
|
|
8792
9141
|
constructor(data?: PartialMessage<QuadraHevc>);
|
|
8793
9142
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8794
9143
|
static readonly typeName = "norsk.api.media.QuadraHevc";
|