@norskvideo/norsk-api 1.0.334 → 1.0.336
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 +48 -0
- package/lib/media_grpc_pb.js +110 -2
- package/lib/media_pb.d.ts +1944 -263
- package/lib/media_pb.js +2189 -183
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +4670 -1783
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
-
import { Message } from "@bufbuild/protobuf";
|
|
2
|
+
import { Empty, Message } from "@bufbuild/protobuf";
|
|
3
3
|
import { CurrentLoad, Log, Version } from "./shared/common_pb.js";
|
|
4
4
|
/**
|
|
5
5
|
* Enumeration of possible channel positions.
|
|
@@ -1629,6 +1629,14 @@ export declare class StreamMetadata extends Message<StreamMetadata> {
|
|
|
1629
1629
|
*/
|
|
1630
1630
|
value: StreamMetadata_SubtitleMetadata;
|
|
1631
1631
|
case: "subtitle";
|
|
1632
|
+
} | {
|
|
1633
|
+
/**
|
|
1634
|
+
* Ancillary metadata
|
|
1635
|
+
*
|
|
1636
|
+
* @generated from field: norsk.api.media.StreamMetadata.AncillaryMetadata ancillary = 5;
|
|
1637
|
+
*/
|
|
1638
|
+
value: StreamMetadata_AncillaryMetadata;
|
|
1639
|
+
case: "ancillary";
|
|
1632
1640
|
} | {
|
|
1633
1641
|
case: undefined;
|
|
1634
1642
|
value?: undefined;
|
|
@@ -1723,6 +1731,21 @@ export declare class StreamMetadata_SubtitleMetadata extends Message<StreamMetad
|
|
|
1723
1731
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadata_SubtitleMetadata;
|
|
1724
1732
|
static equals(a: StreamMetadata_SubtitleMetadata | PlainMessage<StreamMetadata_SubtitleMetadata> | undefined, b: StreamMetadata_SubtitleMetadata | PlainMessage<StreamMetadata_SubtitleMetadata> | undefined): boolean;
|
|
1725
1733
|
}
|
|
1734
|
+
/**
|
|
1735
|
+
* Metadata for an ancillary stream
|
|
1736
|
+
*
|
|
1737
|
+
* @generated from message norsk.api.media.StreamMetadata.AncillaryMetadata
|
|
1738
|
+
*/
|
|
1739
|
+
export declare class StreamMetadata_AncillaryMetadata extends Message<StreamMetadata_AncillaryMetadata> {
|
|
1740
|
+
constructor(data?: PartialMessage<StreamMetadata_AncillaryMetadata>);
|
|
1741
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1742
|
+
static readonly typeName = "norsk.api.media.StreamMetadata.AncillaryMetadata";
|
|
1743
|
+
static readonly fields: FieldList;
|
|
1744
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamMetadata_AncillaryMetadata;
|
|
1745
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamMetadata_AncillaryMetadata;
|
|
1746
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamMetadata_AncillaryMetadata;
|
|
1747
|
+
static equals(a: StreamMetadata_AncillaryMetadata | PlainMessage<StreamMetadata_AncillaryMetadata> | undefined, b: StreamMetadata_AncillaryMetadata | PlainMessage<StreamMetadata_AncillaryMetadata> | undefined): boolean;
|
|
1748
|
+
}
|
|
1726
1749
|
/**
|
|
1727
1750
|
* *
|
|
1728
1751
|
* The Context message is sent from Norsk in response to a
|
|
@@ -1756,6 +1779,62 @@ export declare class Context extends Message<Context> {
|
|
|
1756
1779
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Context;
|
|
1757
1780
|
static equals(a: Context | PlainMessage<Context> | undefined, b: Context | PlainMessage<Context> | undefined): boolean;
|
|
1758
1781
|
}
|
|
1782
|
+
/**
|
|
1783
|
+
* *
|
|
1784
|
+
* The MultipleContext message is sent from Norsk in response to a
|
|
1785
|
+
* change to either the Media Node's inbound set of streams for
|
|
1786
|
+
* certain nodes that are permitted non-disjoint context keys
|
|
1787
|
+
* .
|
|
1788
|
+
* Once received, your code **must** acknowledge the context change
|
|
1789
|
+
* with a call to `Media.UnblockCall`,
|
|
1790
|
+
* passing in the `blockingCallRef`; note that if using the
|
|
1791
|
+
* JavaScript SDK then this is automatically handled.
|
|
1792
|
+
*
|
|
1793
|
+
* @generated from message norsk.api.media.MultipleContext
|
|
1794
|
+
*/
|
|
1795
|
+
export declare class MultipleContext extends Message<MultipleContext> {
|
|
1796
|
+
/**
|
|
1797
|
+
* @generated from field: repeated norsk.api.media.TaggedContext contexts = 1;
|
|
1798
|
+
*/
|
|
1799
|
+
contexts: TaggedContext[];
|
|
1800
|
+
/**
|
|
1801
|
+
* The reference for acknowledging the context change
|
|
1802
|
+
*
|
|
1803
|
+
* @generated from field: string blocking_call_ref = 2;
|
|
1804
|
+
*/
|
|
1805
|
+
blockingCallRef: string;
|
|
1806
|
+
constructor(data?: PartialMessage<MultipleContext>);
|
|
1807
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1808
|
+
static readonly typeName = "norsk.api.media.MultipleContext";
|
|
1809
|
+
static readonly fields: FieldList;
|
|
1810
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MultipleContext;
|
|
1811
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MultipleContext;
|
|
1812
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MultipleContext;
|
|
1813
|
+
static equals(a: MultipleContext | PlainMessage<MultipleContext> | undefined, b: MultipleContext | PlainMessage<MultipleContext> | undefined): boolean;
|
|
1814
|
+
}
|
|
1815
|
+
/**
|
|
1816
|
+
* @generated from message norsk.api.media.TaggedContext
|
|
1817
|
+
*/
|
|
1818
|
+
export declare class TaggedContext extends Message<TaggedContext> {
|
|
1819
|
+
/**
|
|
1820
|
+
* The set of streams
|
|
1821
|
+
*
|
|
1822
|
+
* @generated from field: repeated norsk.api.media.StreamMetadata streams = 1;
|
|
1823
|
+
*/
|
|
1824
|
+
streams: StreamMetadata[];
|
|
1825
|
+
/**
|
|
1826
|
+
* @generated from field: norsk.api.media.InputPin pin = 2;
|
|
1827
|
+
*/
|
|
1828
|
+
pin?: InputPin;
|
|
1829
|
+
constructor(data?: PartialMessage<TaggedContext>);
|
|
1830
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
1831
|
+
static readonly typeName = "norsk.api.media.TaggedContext";
|
|
1832
|
+
static readonly fields: FieldList;
|
|
1833
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TaggedContext;
|
|
1834
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TaggedContext;
|
|
1835
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TaggedContext;
|
|
1836
|
+
static equals(a: TaggedContext | PlainMessage<TaggedContext> | undefined, b: TaggedContext | PlainMessage<TaggedContext> | undefined): boolean;
|
|
1837
|
+
}
|
|
1759
1838
|
/**
|
|
1760
1839
|
* @generated from message norsk.api.media.BlockingCallRef
|
|
1761
1840
|
*/
|
|
@@ -2530,7 +2609,11 @@ export declare enum TsProgram_TsStreamType {
|
|
|
2530
2609
|
/**
|
|
2531
2610
|
* @generated from enum value: HEVC = 10;
|
|
2532
2611
|
*/
|
|
2533
|
-
HEVC = 10
|
|
2612
|
+
HEVC = 10,
|
|
2613
|
+
/**
|
|
2614
|
+
* @generated from enum value: SCTE35 = 11;
|
|
2615
|
+
*/
|
|
2616
|
+
SCTE35 = 11
|
|
2534
2617
|
}
|
|
2535
2618
|
/**
|
|
2536
2619
|
* @generated from message norsk.api.media.TsProgram.TsPid
|
|
@@ -2670,6 +2753,12 @@ export declare class FileTsInputConfiguration extends Message<FileTsInputConfigu
|
|
|
2670
2753
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
2671
2754
|
*/
|
|
2672
2755
|
statsSampling?: StreamStatisticsSampling;
|
|
2756
|
+
/**
|
|
2757
|
+
* Loop back to play the start after reaching the end of the file
|
|
2758
|
+
*
|
|
2759
|
+
* @generated from field: bool loop = 5;
|
|
2760
|
+
*/
|
|
2761
|
+
loop: boolean;
|
|
2673
2762
|
constructor(data?: PartialMessage<FileTsInputConfiguration>);
|
|
2674
2763
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2675
2764
|
static readonly typeName = "norsk.api.media.FileTsInputConfiguration";
|
|
@@ -2679,6 +2768,23 @@ export declare class FileTsInputConfiguration extends Message<FileTsInputConfigu
|
|
|
2679
2768
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputConfiguration;
|
|
2680
2769
|
static equals(a: FileTsInputConfiguration | PlainMessage<FileTsInputConfiguration> | undefined, b: FileTsInputConfiguration | PlainMessage<FileTsInputConfiguration> | undefined): boolean;
|
|
2681
2770
|
}
|
|
2771
|
+
/**
|
|
2772
|
+
* @generated from message norsk.api.media.FileTsInputConfigurationUpdate
|
|
2773
|
+
*/
|
|
2774
|
+
export declare class FileTsInputConfigurationUpdate extends Message<FileTsInputConfigurationUpdate> {
|
|
2775
|
+
/**
|
|
2776
|
+
* @generated from field: norsk.api.media.OptionalBool loop = 1;
|
|
2777
|
+
*/
|
|
2778
|
+
loop?: OptionalBool;
|
|
2779
|
+
constructor(data?: PartialMessage<FileTsInputConfigurationUpdate>);
|
|
2780
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2781
|
+
static readonly typeName = "norsk.api.media.FileTsInputConfigurationUpdate";
|
|
2782
|
+
static readonly fields: FieldList;
|
|
2783
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputConfigurationUpdate;
|
|
2784
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsInputConfigurationUpdate;
|
|
2785
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputConfigurationUpdate;
|
|
2786
|
+
static equals(a: FileTsInputConfigurationUpdate | PlainMessage<FileTsInputConfigurationUpdate> | undefined, b: FileTsInputConfigurationUpdate | PlainMessage<FileTsInputConfigurationUpdate> | undefined): boolean;
|
|
2787
|
+
}
|
|
2682
2788
|
/**
|
|
2683
2789
|
* @generated from message norsk.api.media.FileTsInputMessage
|
|
2684
2790
|
*/
|
|
@@ -2698,6 +2804,12 @@ export declare class FileTsInputMessage extends Message<FileTsInputMessage> {
|
|
|
2698
2804
|
*/
|
|
2699
2805
|
value: TimestampProgramNudge;
|
|
2700
2806
|
case: "nudge";
|
|
2807
|
+
} | {
|
|
2808
|
+
/**
|
|
2809
|
+
* @generated from field: norsk.api.media.FileTsInputConfigurationUpdate update_config = 3;
|
|
2810
|
+
*/
|
|
2811
|
+
value: FileTsInputConfigurationUpdate;
|
|
2812
|
+
case: "updateConfig";
|
|
2701
2813
|
} | {
|
|
2702
2814
|
case: undefined;
|
|
2703
2815
|
value?: undefined;
|
|
@@ -2711,32 +2823,6 @@ export declare class FileTsInputMessage extends Message<FileTsInputMessage> {
|
|
|
2711
2823
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputMessage;
|
|
2712
2824
|
static equals(a: FileTsInputMessage | PlainMessage<FileTsInputMessage> | undefined, b: FileTsInputMessage | PlainMessage<FileTsInputMessage> | undefined): boolean;
|
|
2713
2825
|
}
|
|
2714
|
-
/**
|
|
2715
|
-
* @generated from message norsk.api.media.FileTsInputEvent
|
|
2716
|
-
*/
|
|
2717
|
-
export declare class FileTsInputEvent extends Message<FileTsInputEvent> {
|
|
2718
|
-
/**
|
|
2719
|
-
* @generated from oneof norsk.api.media.FileTsInputEvent.message
|
|
2720
|
-
*/
|
|
2721
|
-
message: {
|
|
2722
|
-
/**
|
|
2723
|
-
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 1;
|
|
2724
|
-
*/
|
|
2725
|
-
value: MultiStreamStatistics;
|
|
2726
|
-
case: "streamStatistics";
|
|
2727
|
-
} | {
|
|
2728
|
-
case: undefined;
|
|
2729
|
-
value?: undefined;
|
|
2730
|
-
};
|
|
2731
|
-
constructor(data?: PartialMessage<FileTsInputEvent>);
|
|
2732
|
-
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
2733
|
-
static readonly typeName = "norsk.api.media.FileTsInputEvent";
|
|
2734
|
-
static readonly fields: FieldList;
|
|
2735
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileTsInputEvent;
|
|
2736
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileTsInputEvent;
|
|
2737
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileTsInputEvent;
|
|
2738
|
-
static equals(a: FileTsInputEvent | PlainMessage<FileTsInputEvent> | undefined, b: FileTsInputEvent | PlainMessage<FileTsInputEvent> | undefined): boolean;
|
|
2739
|
-
}
|
|
2740
2826
|
/**
|
|
2741
2827
|
* @generated from message norsk.api.media.FileWebVttInputConfiguration
|
|
2742
2828
|
*/
|
|
@@ -3174,32 +3260,6 @@ export declare class UdpTsInputMessage extends Message<UdpTsInputMessage> {
|
|
|
3174
3260
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UdpTsInputMessage;
|
|
3175
3261
|
static equals(a: UdpTsInputMessage | PlainMessage<UdpTsInputMessage> | undefined, b: UdpTsInputMessage | PlainMessage<UdpTsInputMessage> | undefined): boolean;
|
|
3176
3262
|
}
|
|
3177
|
-
/**
|
|
3178
|
-
* @generated from message norsk.api.media.UdpTsInputEvent
|
|
3179
|
-
*/
|
|
3180
|
-
export declare class UdpTsInputEvent extends Message<UdpTsInputEvent> {
|
|
3181
|
-
/**
|
|
3182
|
-
* @generated from oneof norsk.api.media.UdpTsInputEvent.message
|
|
3183
|
-
*/
|
|
3184
|
-
message: {
|
|
3185
|
-
/**
|
|
3186
|
-
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 1;
|
|
3187
|
-
*/
|
|
3188
|
-
value: MultiStreamStatistics;
|
|
3189
|
-
case: "streamStatistics";
|
|
3190
|
-
} | {
|
|
3191
|
-
case: undefined;
|
|
3192
|
-
value?: undefined;
|
|
3193
|
-
};
|
|
3194
|
-
constructor(data?: PartialMessage<UdpTsInputEvent>);
|
|
3195
|
-
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3196
|
-
static readonly typeName = "norsk.api.media.UdpTsInputEvent";
|
|
3197
|
-
static readonly fields: FieldList;
|
|
3198
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UdpTsInputEvent;
|
|
3199
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UdpTsInputEvent;
|
|
3200
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UdpTsInputEvent;
|
|
3201
|
-
static equals(a: UdpTsInputEvent | PlainMessage<UdpTsInputEvent> | undefined, b: UdpTsInputEvent | PlainMessage<UdpTsInputEvent> | undefined): boolean;
|
|
3202
|
-
}
|
|
3203
3263
|
/**
|
|
3204
3264
|
* @generated from message norsk.api.media.M3u8MediaInputConfiguration
|
|
3205
3265
|
*/
|
|
@@ -3687,6 +3747,12 @@ export declare class FileMp4InputConfiguration extends Message<FileMp4InputConfi
|
|
|
3687
3747
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
3688
3748
|
*/
|
|
3689
3749
|
statsSampling?: StreamStatisticsSampling;
|
|
3750
|
+
/**
|
|
3751
|
+
* Loop back to play the start after reaching the end of the file
|
|
3752
|
+
*
|
|
3753
|
+
* @generated from field: bool loop = 5;
|
|
3754
|
+
*/
|
|
3755
|
+
loop: boolean;
|
|
3690
3756
|
constructor(data?: PartialMessage<FileMp4InputConfiguration>);
|
|
3691
3757
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3692
3758
|
static readonly typeName = "norsk.api.media.FileMp4InputConfiguration";
|
|
@@ -3696,6 +3762,23 @@ export declare class FileMp4InputConfiguration extends Message<FileMp4InputConfi
|
|
|
3696
3762
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputConfiguration;
|
|
3697
3763
|
static equals(a: FileMp4InputConfiguration | PlainMessage<FileMp4InputConfiguration> | undefined, b: FileMp4InputConfiguration | PlainMessage<FileMp4InputConfiguration> | undefined): boolean;
|
|
3698
3764
|
}
|
|
3765
|
+
/**
|
|
3766
|
+
* @generated from message norsk.api.media.FileMp4InputConfigurationUpdate
|
|
3767
|
+
*/
|
|
3768
|
+
export declare class FileMp4InputConfigurationUpdate extends Message<FileMp4InputConfigurationUpdate> {
|
|
3769
|
+
/**
|
|
3770
|
+
* @generated from field: norsk.api.media.OptionalBool loop = 1;
|
|
3771
|
+
*/
|
|
3772
|
+
loop?: OptionalBool;
|
|
3773
|
+
constructor(data?: PartialMessage<FileMp4InputConfigurationUpdate>);
|
|
3774
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
3775
|
+
static readonly typeName = "norsk.api.media.FileMp4InputConfigurationUpdate";
|
|
3776
|
+
static readonly fields: FieldList;
|
|
3777
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FileMp4InputConfigurationUpdate;
|
|
3778
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FileMp4InputConfigurationUpdate;
|
|
3779
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FileMp4InputConfigurationUpdate;
|
|
3780
|
+
static equals(a: FileMp4InputConfigurationUpdate | PlainMessage<FileMp4InputConfigurationUpdate> | undefined, b: FileMp4InputConfigurationUpdate | PlainMessage<FileMp4InputConfigurationUpdate> | undefined): boolean;
|
|
3781
|
+
}
|
|
3699
3782
|
/**
|
|
3700
3783
|
* @generated from message norsk.api.media.FileMp4InputMessage
|
|
3701
3784
|
*/
|
|
@@ -3715,6 +3798,12 @@ export declare class FileMp4InputMessage extends Message<FileMp4InputMessage> {
|
|
|
3715
3798
|
*/
|
|
3716
3799
|
value: TimestampNudge;
|
|
3717
3800
|
case: "nudge";
|
|
3801
|
+
} | {
|
|
3802
|
+
/**
|
|
3803
|
+
* @generated from field: norsk.api.media.FileMp4InputConfigurationUpdate update_config = 3;
|
|
3804
|
+
*/
|
|
3805
|
+
value: FileMp4InputConfigurationUpdate;
|
|
3806
|
+
case: "updateConfig";
|
|
3718
3807
|
} | {
|
|
3719
3808
|
case: undefined;
|
|
3720
3809
|
value?: undefined;
|
|
@@ -4211,6 +4300,62 @@ export declare class BrowserInputEvent extends Message<BrowserInputEvent> {
|
|
|
4211
4300
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BrowserInputEvent;
|
|
4212
4301
|
static equals(a: BrowserInputEvent | PlainMessage<BrowserInputEvent> | undefined, b: BrowserInputEvent | PlainMessage<BrowserInputEvent> | undefined): boolean;
|
|
4213
4302
|
}
|
|
4303
|
+
/**
|
|
4304
|
+
* @generated from message norsk.api.media.WebRtcIceServerConfiguration
|
|
4305
|
+
*/
|
|
4306
|
+
export declare class WebRtcIceServerConfiguration extends Message<WebRtcIceServerConfiguration> {
|
|
4307
|
+
/**
|
|
4308
|
+
* STUN/TURN servers to use for the Norsk server (and by default report to
|
|
4309
|
+
* clients)
|
|
4310
|
+
*
|
|
4311
|
+
* @generated from field: repeated norsk.api.media.WebRtcIceServer servers = 1;
|
|
4312
|
+
*/
|
|
4313
|
+
servers: WebRtcIceServer[];
|
|
4314
|
+
/**
|
|
4315
|
+
* STUN/TURN servers to report to a connecting client (eg via WHIP/WHEP). If
|
|
4316
|
+
* specified overrides the configuration in servers
|
|
4317
|
+
*
|
|
4318
|
+
* @generated from field: repeated norsk.api.media.WebRtcIceServer reported_servers = 2;
|
|
4319
|
+
*/
|
|
4320
|
+
reportedServers: WebRtcIceServer[];
|
|
4321
|
+
constructor(data?: PartialMessage<WebRtcIceServerConfiguration>);
|
|
4322
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4323
|
+
static readonly typeName = "norsk.api.media.WebRtcIceServerConfiguration";
|
|
4324
|
+
static readonly fields: FieldList;
|
|
4325
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRtcIceServerConfiguration;
|
|
4326
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRtcIceServerConfiguration;
|
|
4327
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRtcIceServerConfiguration;
|
|
4328
|
+
static equals(a: WebRtcIceServerConfiguration | PlainMessage<WebRtcIceServerConfiguration> | undefined, b: WebRtcIceServerConfiguration | PlainMessage<WebRtcIceServerConfiguration> | undefined): boolean;
|
|
4329
|
+
}
|
|
4330
|
+
/**
|
|
4331
|
+
* @generated from message norsk.api.media.WebRtcIceServer
|
|
4332
|
+
*/
|
|
4333
|
+
export declare class WebRtcIceServer extends Message<WebRtcIceServer> {
|
|
4334
|
+
/**
|
|
4335
|
+
* @generated from field: repeated string urls = 1;
|
|
4336
|
+
*/
|
|
4337
|
+
urls: string[];
|
|
4338
|
+
/**
|
|
4339
|
+
* The username to use when logging into a TURN server. Ignored otherwise.
|
|
4340
|
+
*
|
|
4341
|
+
* @generated from field: string username = 2;
|
|
4342
|
+
*/
|
|
4343
|
+
username: string;
|
|
4344
|
+
/**
|
|
4345
|
+
* The username to use when logging into a TURN server. Ignored otherwise.
|
|
4346
|
+
*
|
|
4347
|
+
* @generated from field: string credential = 3;
|
|
4348
|
+
*/
|
|
4349
|
+
credential: string;
|
|
4350
|
+
constructor(data?: PartialMessage<WebRtcIceServer>);
|
|
4351
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4352
|
+
static readonly typeName = "norsk.api.media.WebRtcIceServer";
|
|
4353
|
+
static readonly fields: FieldList;
|
|
4354
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRtcIceServer;
|
|
4355
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRtcIceServer;
|
|
4356
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRtcIceServer;
|
|
4357
|
+
static equals(a: WebRtcIceServer | PlainMessage<WebRtcIceServer> | undefined, b: WebRtcIceServer | PlainMessage<WebRtcIceServer> | undefined): boolean;
|
|
4358
|
+
}
|
|
4214
4359
|
/**
|
|
4215
4360
|
* @generated from message norsk.api.media.WhipInputConfiguration
|
|
4216
4361
|
*/
|
|
@@ -4227,6 +4372,12 @@ export declare class WhipInputConfiguration extends Message<WhipInputConfigurati
|
|
|
4227
4372
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
4228
4373
|
*/
|
|
4229
4374
|
statsSampling?: StreamStatisticsSampling;
|
|
4375
|
+
/**
|
|
4376
|
+
* Optionally configure ICE servers (STUN/TURN)
|
|
4377
|
+
*
|
|
4378
|
+
* @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 4;
|
|
4379
|
+
*/
|
|
4380
|
+
iceServerConfiguration?: WebRtcIceServerConfiguration;
|
|
4230
4381
|
constructor(data?: PartialMessage<WhipInputConfiguration>);
|
|
4231
4382
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
4232
4383
|
static readonly typeName = "norsk.api.media.WhipInputConfiguration";
|
|
@@ -5495,13 +5646,31 @@ export declare class AudioSplitMultichannelEvent extends Message<AudioSplitMulti
|
|
|
5495
5646
|
*/
|
|
5496
5647
|
export declare class Mp4Encryption extends Message<Mp4Encryption> {
|
|
5497
5648
|
/**
|
|
5649
|
+
* The 16-byte key ID used to identify the key, hexadecimal or GUID encoded.
|
|
5650
|
+
*
|
|
5498
5651
|
* @generated from field: string encryption_key_id = 1;
|
|
5499
5652
|
*/
|
|
5500
5653
|
encryptionKeyId: string;
|
|
5501
5654
|
/**
|
|
5655
|
+
* The 16-byte key used to encrypt the data, hexadecimal encoded.
|
|
5656
|
+
*
|
|
5502
5657
|
* @generated from field: string encryption_key = 2;
|
|
5503
5658
|
*/
|
|
5504
5659
|
encryptionKey: string;
|
|
5660
|
+
/**
|
|
5661
|
+
* The PSSH box(es) to include in the MP4, base64 encoded.
|
|
5662
|
+
* This is typically given by the DRM provider.
|
|
5663
|
+
*
|
|
5664
|
+
* @generated from field: string encryption_pssh = 3;
|
|
5665
|
+
*/
|
|
5666
|
+
encryptionPssh: string;
|
|
5667
|
+
/**
|
|
5668
|
+
* The common encryption scheme used to encrypt data, as per ISO/IEC
|
|
5669
|
+
* 23001-7:2016.
|
|
5670
|
+
*
|
|
5671
|
+
* @generated from field: norsk.api.media.Mp4Encryption.Mp4EncryptionScheme encryption_scheme = 4;
|
|
5672
|
+
*/
|
|
5673
|
+
encryptionScheme: Mp4Encryption_Mp4EncryptionScheme;
|
|
5505
5674
|
constructor(data?: PartialMessage<Mp4Encryption>);
|
|
5506
5675
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5507
5676
|
static readonly typeName = "norsk.api.media.Mp4Encryption";
|
|
@@ -5511,6 +5680,26 @@ export declare class Mp4Encryption extends Message<Mp4Encryption> {
|
|
|
5511
5680
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Mp4Encryption;
|
|
5512
5681
|
static equals(a: Mp4Encryption | PlainMessage<Mp4Encryption> | undefined, b: Mp4Encryption | PlainMessage<Mp4Encryption> | undefined): boolean;
|
|
5513
5682
|
}
|
|
5683
|
+
/**
|
|
5684
|
+
* @generated from enum norsk.api.media.Mp4Encryption.Mp4EncryptionScheme
|
|
5685
|
+
*/
|
|
5686
|
+
export declare enum Mp4Encryption_Mp4EncryptionScheme {
|
|
5687
|
+
/**
|
|
5688
|
+
* Default: CBCS encryption scheme (AES-CBC 10% pattern encryption).
|
|
5689
|
+
* Full-sample encryption for audio tracks, subsample encryption for video
|
|
5690
|
+
* tracks.
|
|
5691
|
+
*
|
|
5692
|
+
* @generated from enum value: MP4_ENCRYPTION_SCHEME_CBCS = 0;
|
|
5693
|
+
*/
|
|
5694
|
+
CBCS = 0,
|
|
5695
|
+
/**
|
|
5696
|
+
* CENC encryption scheme (AES-CTR). Full-sample encryption for audio
|
|
5697
|
+
* tracks, subsample encryption for video tracks.
|
|
5698
|
+
*
|
|
5699
|
+
* @generated from enum value: MP4_ENCRYPTION_SCHEME_CENC = 1;
|
|
5700
|
+
*/
|
|
5701
|
+
CENC = 1
|
|
5702
|
+
}
|
|
5514
5703
|
/**
|
|
5515
5704
|
* @generated from message norsk.api.media.AwsS3PushDestination
|
|
5516
5705
|
*/
|
|
@@ -5649,6 +5838,18 @@ export declare class CmafVideoConfiguration extends Message<CmafVideoConfigurati
|
|
|
5649
5838
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 7;
|
|
5650
5839
|
*/
|
|
5651
5840
|
destinations: CMAFDestination[];
|
|
5841
|
+
/**
|
|
5842
|
+
* Directives to add to the m3u media playlist
|
|
5843
|
+
*
|
|
5844
|
+
* @generated from field: string m3u_additions = 8;
|
|
5845
|
+
*/
|
|
5846
|
+
m3uAdditions: string;
|
|
5847
|
+
/**
|
|
5848
|
+
* XML fragment to add to the mpd Representation element
|
|
5849
|
+
*
|
|
5850
|
+
* @generated from field: string mpd_additions = 9;
|
|
5851
|
+
*/
|
|
5852
|
+
mpdAdditions: string;
|
|
5652
5853
|
constructor(data?: PartialMessage<CmafVideoConfiguration>);
|
|
5653
5854
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5654
5855
|
static readonly typeName = "norsk.api.media.CmafVideoConfiguration";
|
|
@@ -5720,6 +5921,18 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
|
|
|
5720
5921
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
|
|
5721
5922
|
*/
|
|
5722
5923
|
destinations: CMAFDestination[];
|
|
5924
|
+
/**
|
|
5925
|
+
* Directives to add to the m3u media playlist
|
|
5926
|
+
*
|
|
5927
|
+
* @generated from field: string m3u_additions = 6;
|
|
5928
|
+
*/
|
|
5929
|
+
m3uAdditions: string;
|
|
5930
|
+
/**
|
|
5931
|
+
* XML fragment to add to the mpd Representation element
|
|
5932
|
+
*
|
|
5933
|
+
* @generated from field: string mpd_additions = 7;
|
|
5934
|
+
*/
|
|
5935
|
+
mpdAdditions: string;
|
|
5723
5936
|
constructor(data?: PartialMessage<HlsTsVideoConfiguration>);
|
|
5724
5937
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5725
5938
|
static readonly typeName = "norsk.api.media.HlsTsVideoConfiguration";
|
|
@@ -5799,6 +6012,18 @@ export declare class CmafAudioConfiguration extends Message<CmafAudioConfigurati
|
|
|
5799
6012
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 8;
|
|
5800
6013
|
*/
|
|
5801
6014
|
destinations: CMAFDestination[];
|
|
6015
|
+
/**
|
|
6016
|
+
* Directives to add to the m3u media playlist
|
|
6017
|
+
*
|
|
6018
|
+
* @generated from field: string m3u_additions = 9;
|
|
6019
|
+
*/
|
|
6020
|
+
m3uAdditions: string;
|
|
6021
|
+
/**
|
|
6022
|
+
* XML fragment to add to the mpd Representation element
|
|
6023
|
+
*
|
|
6024
|
+
* @generated from field: string mpd_additions = 10;
|
|
6025
|
+
*/
|
|
6026
|
+
mpdAdditions: string;
|
|
5802
6027
|
constructor(data?: PartialMessage<CmafAudioConfiguration>);
|
|
5803
6028
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5804
6029
|
static readonly typeName = "norsk.api.media.CmafAudioConfiguration";
|
|
@@ -5870,6 +6095,18 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
|
|
|
5870
6095
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 5;
|
|
5871
6096
|
*/
|
|
5872
6097
|
destinations: CMAFDestination[];
|
|
6098
|
+
/**
|
|
6099
|
+
* Directives to add to the m3u media playlist
|
|
6100
|
+
*
|
|
6101
|
+
* @generated from field: string m3u_additions = 6;
|
|
6102
|
+
*/
|
|
6103
|
+
m3uAdditions: string;
|
|
6104
|
+
/**
|
|
6105
|
+
* XML fragment to add to the mpd Representation element
|
|
6106
|
+
*
|
|
6107
|
+
* @generated from field: string mpd_additions = 7;
|
|
6108
|
+
*/
|
|
6109
|
+
mpdAdditions: string;
|
|
5873
6110
|
constructor(data?: PartialMessage<HlsTsAudioConfiguration>);
|
|
5874
6111
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
5875
6112
|
static readonly typeName = "norsk.api.media.HlsTsAudioConfiguration";
|
|
@@ -6104,6 +6341,18 @@ export declare class CmafMasterConfiguration extends Message<CmafMasterConfigura
|
|
|
6104
6341
|
* @generated from field: repeated norsk.api.media.CMAFDestination destinations = 4;
|
|
6105
6342
|
*/
|
|
6106
6343
|
destinations: CMAFDestination[];
|
|
6344
|
+
/**
|
|
6345
|
+
* Directives to add to the m3u master playlist
|
|
6346
|
+
*
|
|
6347
|
+
* @generated from field: string m3u_additions = 5;
|
|
6348
|
+
*/
|
|
6349
|
+
m3uAdditions: string;
|
|
6350
|
+
/**
|
|
6351
|
+
* XML fragment to add to the (top-level) MPD element
|
|
6352
|
+
*
|
|
6353
|
+
* @generated from field: string mpd_additions = 6;
|
|
6354
|
+
*/
|
|
6355
|
+
mpdAdditions: string;
|
|
6107
6356
|
constructor(data?: PartialMessage<CmafMasterConfiguration>);
|
|
6108
6357
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6109
6358
|
static readonly typeName = "norsk.api.media.CmafMasterConfiguration";
|
|
@@ -6179,6 +6428,18 @@ export declare class HlsTsCombinedPushConfiguration extends Message<HlsTsCombine
|
|
|
6179
6428
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
|
|
6180
6429
|
*/
|
|
6181
6430
|
statsSampling?: StreamStatisticsSampling;
|
|
6431
|
+
/**
|
|
6432
|
+
* Directives to add to the m3u media playlists
|
|
6433
|
+
*
|
|
6434
|
+
* @generated from field: string m3u_additions = 7;
|
|
6435
|
+
*/
|
|
6436
|
+
m3uAdditions: string;
|
|
6437
|
+
/**
|
|
6438
|
+
* XML fragment to add to the mpd Representation elements
|
|
6439
|
+
*
|
|
6440
|
+
* @generated from field: string mpd_additions = 8;
|
|
6441
|
+
*/
|
|
6442
|
+
mpdAdditions: string;
|
|
6182
6443
|
constructor(data?: PartialMessage<HlsTsCombinedPushConfiguration>);
|
|
6183
6444
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6184
6445
|
static readonly typeName = "norsk.api.media.HlsTsCombinedPushConfiguration";
|
|
@@ -6325,6 +6586,10 @@ export declare class UdpTsOutputConfiguration extends Message<UdpTsOutputConfigu
|
|
|
6325
6586
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 5;
|
|
6326
6587
|
*/
|
|
6327
6588
|
statsSampling?: StreamStatisticsSampling;
|
|
6589
|
+
/**
|
|
6590
|
+
* @generated from field: uint32 buffer_delay_ms = 6;
|
|
6591
|
+
*/
|
|
6592
|
+
bufferDelayMs: number;
|
|
6328
6593
|
constructor(data?: PartialMessage<UdpTsOutputConfiguration>);
|
|
6329
6594
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6330
6595
|
static readonly typeName = "norsk.api.media.UdpTsOutputConfiguration";
|
|
@@ -6442,6 +6707,10 @@ export declare class SrtOutputConfiguration extends Message<SrtOutputConfigurati
|
|
|
6442
6707
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 8;
|
|
6443
6708
|
*/
|
|
6444
6709
|
statsSampling?: StreamStatisticsSampling;
|
|
6710
|
+
/**
|
|
6711
|
+
* @generated from field: uint32 buffer_delay_ms = 9;
|
|
6712
|
+
*/
|
|
6713
|
+
bufferDelayMs: number;
|
|
6445
6714
|
constructor(data?: PartialMessage<SrtOutputConfiguration>);
|
|
6446
6715
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6447
6716
|
static readonly typeName = "norsk.api.media.SrtOutputConfiguration";
|
|
@@ -6553,6 +6822,10 @@ export declare class WhipOutputConfiguration extends Message<WhipOutputConfigura
|
|
|
6553
6822
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 4;
|
|
6554
6823
|
*/
|
|
6555
6824
|
statsSampling?: StreamStatisticsSampling;
|
|
6825
|
+
/**
|
|
6826
|
+
* @generated from field: uint32 buffer_delay_ms = 5;
|
|
6827
|
+
*/
|
|
6828
|
+
bufferDelayMs: number;
|
|
6556
6829
|
constructor(data?: PartialMessage<WhipOutputConfiguration>);
|
|
6557
6830
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6558
6831
|
static readonly typeName = "norsk.api.media.WhipOutputConfiguration";
|
|
@@ -6594,6 +6867,50 @@ export declare class WhipOutputMessage extends Message<WhipOutputMessage> {
|
|
|
6594
6867
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputMessage;
|
|
6595
6868
|
static equals(a: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined, b: WhipOutputMessage | PlainMessage<WhipOutputMessage> | undefined): boolean;
|
|
6596
6869
|
}
|
|
6870
|
+
/**
|
|
6871
|
+
* @generated from message norsk.api.media.WhipOutputEvent
|
|
6872
|
+
*/
|
|
6873
|
+
export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
|
|
6874
|
+
/**
|
|
6875
|
+
* @generated from oneof norsk.api.media.WhipOutputEvent.message
|
|
6876
|
+
*/
|
|
6877
|
+
message: {
|
|
6878
|
+
/**
|
|
6879
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
6880
|
+
*/
|
|
6881
|
+
value: MediaNodeId;
|
|
6882
|
+
case: "nodeId";
|
|
6883
|
+
} | {
|
|
6884
|
+
/**
|
|
6885
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 2;
|
|
6886
|
+
*/
|
|
6887
|
+
value: SubscriptionResponse;
|
|
6888
|
+
case: "subscriptionResponse";
|
|
6889
|
+
} | {
|
|
6890
|
+
/**
|
|
6891
|
+
* @generated from field: norsk.api.media.Context inbound_context = 3;
|
|
6892
|
+
*/
|
|
6893
|
+
value: Context;
|
|
6894
|
+
case: "inboundContext";
|
|
6895
|
+
} | {
|
|
6896
|
+
/**
|
|
6897
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
6898
|
+
*/
|
|
6899
|
+
value: MultiStreamStatistics;
|
|
6900
|
+
case: "streamStatistics";
|
|
6901
|
+
} | {
|
|
6902
|
+
case: undefined;
|
|
6903
|
+
value?: undefined;
|
|
6904
|
+
};
|
|
6905
|
+
constructor(data?: PartialMessage<WhipOutputEvent>);
|
|
6906
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6907
|
+
static readonly typeName = "norsk.api.media.WhipOutputEvent";
|
|
6908
|
+
static readonly fields: FieldList;
|
|
6909
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhipOutputEvent;
|
|
6910
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhipOutputEvent;
|
|
6911
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhipOutputEvent;
|
|
6912
|
+
static equals(a: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined, b: WhipOutputEvent | PlainMessage<WhipOutputEvent> | undefined): boolean;
|
|
6913
|
+
}
|
|
6597
6914
|
/**
|
|
6598
6915
|
* @generated from message norsk.api.media.WebRTCBrowserDuplexConfiguration
|
|
6599
6916
|
*/
|
|
@@ -6606,6 +6923,16 @@ export declare class WebRTCBrowserDuplexConfiguration extends Message<WebRTCBrow
|
|
|
6606
6923
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
|
|
6607
6924
|
*/
|
|
6608
6925
|
statsSampling?: StreamStatisticsSampling;
|
|
6926
|
+
/**
|
|
6927
|
+
* Optionally configure ICE servers (STUN/TURN)
|
|
6928
|
+
*
|
|
6929
|
+
* @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
|
|
6930
|
+
*/
|
|
6931
|
+
iceServerConfiguration?: WebRtcIceServerConfiguration;
|
|
6932
|
+
/**
|
|
6933
|
+
* @generated from field: uint32 buffer_delay_ms = 4;
|
|
6934
|
+
*/
|
|
6935
|
+
bufferDelayMs: number;
|
|
6609
6936
|
constructor(data?: PartialMessage<WebRTCBrowserDuplexConfiguration>);
|
|
6610
6937
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6611
6938
|
static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexConfiguration";
|
|
@@ -6648,11 +6975,11 @@ export declare class WebRTCBrowserDuplexMessage extends Message<WebRTCBrowserDup
|
|
|
6648
6975
|
static equals(a: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined, b: WebRTCBrowserDuplexMessage | PlainMessage<WebRTCBrowserDuplexMessage> | undefined): boolean;
|
|
6649
6976
|
}
|
|
6650
6977
|
/**
|
|
6651
|
-
* @generated from message norsk.api.media.
|
|
6978
|
+
* @generated from message norsk.api.media.WebRTCBrowserDuplexEvent
|
|
6652
6979
|
*/
|
|
6653
|
-
export declare class
|
|
6980
|
+
export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuplexEvent> {
|
|
6654
6981
|
/**
|
|
6655
|
-
* @generated from oneof norsk.api.media.
|
|
6982
|
+
* @generated from oneof norsk.api.media.WebRTCBrowserDuplexEvent.message
|
|
6656
6983
|
*/
|
|
6657
6984
|
message: {
|
|
6658
6985
|
/**
|
|
@@ -6674,7 +7001,13 @@ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
|
|
|
6674
7001
|
case: "inboundContext";
|
|
6675
7002
|
} | {
|
|
6676
7003
|
/**
|
|
6677
|
-
* @generated from field: norsk.api.media.
|
|
7004
|
+
* @generated from field: norsk.api.media.Context outbound_context = 4;
|
|
7005
|
+
*/
|
|
7006
|
+
value: Context;
|
|
7007
|
+
case: "outboundContext";
|
|
7008
|
+
} | {
|
|
7009
|
+
/**
|
|
7010
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
|
|
6678
7011
|
*/
|
|
6679
7012
|
value: MultiStreamStatistics;
|
|
6680
7013
|
case: "streamStatistics";
|
|
@@ -6682,21 +7015,84 @@ export declare class WhipOutputEvent extends Message<WhipOutputEvent> {
|
|
|
6682
7015
|
case: undefined;
|
|
6683
7016
|
value?: undefined;
|
|
6684
7017
|
};
|
|
6685
|
-
constructor(data?: PartialMessage<
|
|
7018
|
+
constructor(data?: PartialMessage<WebRTCBrowserDuplexEvent>);
|
|
6686
7019
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6687
|
-
static readonly typeName = "norsk.api.media.
|
|
7020
|
+
static readonly typeName = "norsk.api.media.WebRTCBrowserDuplexEvent";
|
|
6688
7021
|
static readonly fields: FieldList;
|
|
6689
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
6690
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
6691
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
6692
|
-
static equals(a:
|
|
7022
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebRTCBrowserDuplexEvent;
|
|
7023
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
|
|
7024
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebRTCBrowserDuplexEvent;
|
|
7025
|
+
static equals(a: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined, b: WebRTCBrowserDuplexEvent | PlainMessage<WebRTCBrowserDuplexEvent> | undefined): boolean;
|
|
6693
7026
|
}
|
|
6694
7027
|
/**
|
|
6695
|
-
* @generated from message norsk.api.media.
|
|
7028
|
+
* @generated from message norsk.api.media.WhepOutputConfiguration
|
|
6696
7029
|
*/
|
|
6697
|
-
export declare class
|
|
7030
|
+
export declare class WhepOutputConfiguration extends Message<WhepOutputConfiguration> {
|
|
6698
7031
|
/**
|
|
6699
|
-
* @generated from
|
|
7032
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
7033
|
+
*/
|
|
7034
|
+
id?: MediaNodeId;
|
|
7035
|
+
/**
|
|
7036
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 2;
|
|
7037
|
+
*/
|
|
7038
|
+
statsSampling?: StreamStatisticsSampling;
|
|
7039
|
+
/**
|
|
7040
|
+
* Optionally configure ICE servers (STUN/TURN)
|
|
7041
|
+
*
|
|
7042
|
+
* @generated from field: norsk.api.media.WebRtcIceServerConfiguration ice_server_configuration = 3;
|
|
7043
|
+
*/
|
|
7044
|
+
iceServerConfiguration?: WebRtcIceServerConfiguration;
|
|
7045
|
+
/**
|
|
7046
|
+
* @generated from field: uint32 buffer_delay_ms = 4;
|
|
7047
|
+
*/
|
|
7048
|
+
bufferDelayMs: number;
|
|
7049
|
+
constructor(data?: PartialMessage<WhepOutputConfiguration>);
|
|
7050
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7051
|
+
static readonly typeName = "norsk.api.media.WhepOutputConfiguration";
|
|
7052
|
+
static readonly fields: FieldList;
|
|
7053
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputConfiguration;
|
|
7054
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputConfiguration;
|
|
7055
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputConfiguration;
|
|
7056
|
+
static equals(a: WhepOutputConfiguration | PlainMessage<WhepOutputConfiguration> | undefined, b: WhepOutputConfiguration | PlainMessage<WhepOutputConfiguration> | undefined): boolean;
|
|
7057
|
+
}
|
|
7058
|
+
/**
|
|
7059
|
+
* @generated from message norsk.api.media.WhepOutputMessage
|
|
7060
|
+
*/
|
|
7061
|
+
export declare class WhepOutputMessage extends Message<WhepOutputMessage> {
|
|
7062
|
+
/**
|
|
7063
|
+
* @generated from oneof norsk.api.media.WhepOutputMessage.message
|
|
7064
|
+
*/
|
|
7065
|
+
message: {
|
|
7066
|
+
/**
|
|
7067
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
7068
|
+
*/
|
|
7069
|
+
value: Subscription;
|
|
7070
|
+
case: "subscription";
|
|
7071
|
+
} | {
|
|
7072
|
+
/**
|
|
7073
|
+
* @generated from field: norsk.api.media.WhepOutputConfiguration configuration = 2;
|
|
7074
|
+
*/
|
|
7075
|
+
value: WhepOutputConfiguration;
|
|
7076
|
+
case: "configuration";
|
|
7077
|
+
} | {
|
|
7078
|
+
case: undefined;
|
|
7079
|
+
value?: undefined;
|
|
7080
|
+
};
|
|
7081
|
+
constructor(data?: PartialMessage<WhepOutputMessage>);
|
|
7082
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7083
|
+
static readonly typeName = "norsk.api.media.WhepOutputMessage";
|
|
7084
|
+
static readonly fields: FieldList;
|
|
7085
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputMessage;
|
|
7086
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputMessage;
|
|
7087
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputMessage;
|
|
7088
|
+
static equals(a: WhepOutputMessage | PlainMessage<WhepOutputMessage> | undefined, b: WhepOutputMessage | PlainMessage<WhepOutputMessage> | undefined): boolean;
|
|
7089
|
+
}
|
|
7090
|
+
/**
|
|
7091
|
+
* @generated from message norsk.api.media.WhepOutputEvent
|
|
7092
|
+
*/
|
|
7093
|
+
export declare class WhepOutputEvent extends Message<WhepOutputEvent> {
|
|
7094
|
+
/**
|
|
7095
|
+
* @generated from oneof norsk.api.media.WhepOutputEvent.message
|
|
6700
7096
|
*/
|
|
6701
7097
|
message: {
|
|
6702
7098
|
/**
|
|
@@ -6718,13 +7114,7 @@ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuple
|
|
|
6718
7114
|
case: "inboundContext";
|
|
6719
7115
|
} | {
|
|
6720
7116
|
/**
|
|
6721
|
-
* @generated from field: norsk.api.media.
|
|
6722
|
-
*/
|
|
6723
|
-
value: Context;
|
|
6724
|
-
case: "outboundContext";
|
|
6725
|
-
} | {
|
|
6726
|
-
/**
|
|
6727
|
-
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 5;
|
|
7117
|
+
* @generated from field: norsk.api.media.MultiStreamStatistics stream_statistics = 4;
|
|
6728
7118
|
*/
|
|
6729
7119
|
value: MultiStreamStatistics;
|
|
6730
7120
|
case: "streamStatistics";
|
|
@@ -6732,14 +7122,14 @@ export declare class WebRTCBrowserDuplexEvent extends Message<WebRTCBrowserDuple
|
|
|
6732
7122
|
case: undefined;
|
|
6733
7123
|
value?: undefined;
|
|
6734
7124
|
};
|
|
6735
|
-
constructor(data?: PartialMessage<
|
|
7125
|
+
constructor(data?: PartialMessage<WhepOutputEvent>);
|
|
6736
7126
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6737
|
-
static readonly typeName = "norsk.api.media.
|
|
7127
|
+
static readonly typeName = "norsk.api.media.WhepOutputEvent";
|
|
6738
7128
|
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:
|
|
7129
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WhepOutputEvent;
|
|
7130
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WhepOutputEvent;
|
|
7131
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WhepOutputEvent;
|
|
7132
|
+
static equals(a: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined, b: WhepOutputEvent | PlainMessage<WhepOutputEvent> | undefined): boolean;
|
|
6743
7133
|
}
|
|
6744
7134
|
/**
|
|
6745
7135
|
* @generated from message norsk.api.media.RtmpOutputConfiguration
|
|
@@ -6757,6 +7147,10 @@ export declare class RtmpOutputConfiguration extends Message<RtmpOutputConfigura
|
|
|
6757
7147
|
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 3;
|
|
6758
7148
|
*/
|
|
6759
7149
|
statsSampling?: StreamStatisticsSampling;
|
|
7150
|
+
/**
|
|
7151
|
+
* @generated from field: uint32 buffer_delay_ms = 4;
|
|
7152
|
+
*/
|
|
7153
|
+
bufferDelayMs: number;
|
|
6760
7154
|
constructor(data?: PartialMessage<RtmpOutputConfiguration>);
|
|
6761
7155
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6762
7156
|
static readonly typeName = "norsk.api.media.RtmpOutputConfiguration";
|
|
@@ -6960,11 +7354,15 @@ export declare class FileMp4OutputConfiguration extends Message<FileMp4OutputCon
|
|
|
6960
7354
|
*/
|
|
6961
7355
|
nonfragmentedFileName: string;
|
|
6962
7356
|
/**
|
|
6963
|
-
* @generated from field: norsk.api.media.Mp4Encryption
|
|
7357
|
+
* @generated from field: norsk.api.media.Mp4Encryption audio_encryption = 4;
|
|
6964
7358
|
*/
|
|
6965
|
-
|
|
7359
|
+
audioEncryption?: Mp4Encryption;
|
|
6966
7360
|
/**
|
|
6967
|
-
* @generated from field: norsk.api.media.
|
|
7361
|
+
* @generated from field: norsk.api.media.Mp4Encryption video_encryption = 5;
|
|
7362
|
+
*/
|
|
7363
|
+
videoEncryption?: Mp4Encryption;
|
|
7364
|
+
/**
|
|
7365
|
+
* @generated from field: norsk.api.media.StreamStatisticsSampling stats_sampling = 6;
|
|
6968
7366
|
*/
|
|
6969
7367
|
statsSampling?: StreamStatisticsSampling;
|
|
6970
7368
|
constructor(data?: PartialMessage<FileMp4OutputConfiguration>);
|
|
@@ -7134,6 +7532,23 @@ export declare class OptionalInt extends Message<OptionalInt> {
|
|
|
7134
7532
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalInt;
|
|
7135
7533
|
static equals(a: OptionalInt | PlainMessage<OptionalInt> | undefined, b: OptionalInt | PlainMessage<OptionalInt> | undefined): boolean;
|
|
7136
7534
|
}
|
|
7535
|
+
/**
|
|
7536
|
+
* @generated from message norsk.api.media.OptionalInt64
|
|
7537
|
+
*/
|
|
7538
|
+
export declare class OptionalInt64 extends Message<OptionalInt64> {
|
|
7539
|
+
/**
|
|
7540
|
+
* @generated from field: uint64 value = 1;
|
|
7541
|
+
*/
|
|
7542
|
+
value: bigint;
|
|
7543
|
+
constructor(data?: PartialMessage<OptionalInt64>);
|
|
7544
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7545
|
+
static readonly typeName = "norsk.api.media.OptionalInt64";
|
|
7546
|
+
static readonly fields: FieldList;
|
|
7547
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OptionalInt64;
|
|
7548
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OptionalInt64;
|
|
7549
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalInt64;
|
|
7550
|
+
static equals(a: OptionalInt64 | PlainMessage<OptionalInt64> | undefined, b: OptionalInt64 | PlainMessage<OptionalInt64> | undefined): boolean;
|
|
7551
|
+
}
|
|
7137
7552
|
/**
|
|
7138
7553
|
* @generated from message norsk.api.media.OptionalBool
|
|
7139
7554
|
*/
|
|
@@ -7776,16 +8191,28 @@ export declare class VideoEncodeStream extends Message<VideoEncodeStream> {
|
|
|
7776
8191
|
case: "nvidiaHevc";
|
|
7777
8192
|
} | {
|
|
7778
8193
|
/**
|
|
7779
|
-
* @generated from field: norsk.api.media.
|
|
8194
|
+
* @generated from field: norsk.api.media.LoganH264 loganH264 = 9;
|
|
8195
|
+
*/
|
|
8196
|
+
value: LoganH264;
|
|
8197
|
+
case: "loganH264";
|
|
8198
|
+
} | {
|
|
8199
|
+
/**
|
|
8200
|
+
* @generated from field: norsk.api.media.LoganHevc loganHevc = 10;
|
|
8201
|
+
*/
|
|
8202
|
+
value: LoganHevc;
|
|
8203
|
+
case: "loganHevc";
|
|
8204
|
+
} | {
|
|
8205
|
+
/**
|
|
8206
|
+
* @generated from field: norsk.api.media.QuadraH264 quadraH264 = 11;
|
|
7780
8207
|
*/
|
|
7781
|
-
value:
|
|
7782
|
-
case: "
|
|
8208
|
+
value: QuadraH264;
|
|
8209
|
+
case: "quadraH264";
|
|
7783
8210
|
} | {
|
|
7784
8211
|
/**
|
|
7785
|
-
* @generated from field: norsk.api.media.
|
|
8212
|
+
* @generated from field: norsk.api.media.QuadraHevc quadraHevc = 12;
|
|
7786
8213
|
*/
|
|
7787
|
-
value:
|
|
7788
|
-
case: "
|
|
8214
|
+
value: QuadraHevc;
|
|
8215
|
+
case: "quadraHevc";
|
|
7789
8216
|
} | {
|
|
7790
8217
|
case: undefined;
|
|
7791
8218
|
value?: undefined;
|
|
@@ -8110,9 +8537,9 @@ export declare enum NvidiaHevc_NvidiaHevcTier {
|
|
|
8110
8537
|
HIGH = 1
|
|
8111
8538
|
}
|
|
8112
8539
|
/**
|
|
8113
|
-
* @generated from message norsk.api.media.
|
|
8540
|
+
* @generated from message norsk.api.media.QuadraH264
|
|
8114
8541
|
*/
|
|
8115
|
-
export declare class
|
|
8542
|
+
export declare class QuadraH264 extends Message<QuadraH264> {
|
|
8116
8543
|
/**
|
|
8117
8544
|
* @generated from field: string extraOpts = 1;
|
|
8118
8545
|
*/
|
|
@@ -8154,9 +8581,9 @@ export declare class NetintH264 extends Message<NetintH264> {
|
|
|
8154
8581
|
*/
|
|
8155
8582
|
intraPeriod?: OptionalInt;
|
|
8156
8583
|
/**
|
|
8157
|
-
* @generated from field: norsk.api.media.
|
|
8584
|
+
* @generated from field: norsk.api.media.QuadraH264.QuadraH264Profile profile = 11;
|
|
8158
8585
|
*/
|
|
8159
|
-
profile:
|
|
8586
|
+
profile: QuadraH264_QuadraH264Profile;
|
|
8160
8587
|
/**
|
|
8161
8588
|
* @generated from field: norsk.api.media.OptionalInt level = 12;
|
|
8162
8589
|
*/
|
|
@@ -8173,48 +8600,48 @@ export declare class NetintH264 extends Message<NetintH264> {
|
|
|
8173
8600
|
* @generated from field: norsk.api.media.OptionalInt rcInitDelay = 15;
|
|
8174
8601
|
*/
|
|
8175
8602
|
rcInitDelay?: OptionalInt;
|
|
8176
|
-
constructor(data?: PartialMessage<
|
|
8603
|
+
constructor(data?: PartialMessage<QuadraH264>);
|
|
8177
8604
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8178
|
-
static readonly typeName = "norsk.api.media.
|
|
8605
|
+
static readonly typeName = "norsk.api.media.QuadraH264";
|
|
8179
8606
|
static readonly fields: FieldList;
|
|
8180
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8181
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8182
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8183
|
-
static equals(a:
|
|
8607
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraH264;
|
|
8608
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraH264;
|
|
8609
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraH264;
|
|
8610
|
+
static equals(a: QuadraH264 | PlainMessage<QuadraH264> | undefined, b: QuadraH264 | PlainMessage<QuadraH264> | undefined): boolean;
|
|
8184
8611
|
}
|
|
8185
8612
|
/**
|
|
8186
|
-
* @generated from enum norsk.api.media.
|
|
8613
|
+
* @generated from enum norsk.api.media.QuadraH264.QuadraH264Profile
|
|
8187
8614
|
*/
|
|
8188
|
-
export declare enum
|
|
8615
|
+
export declare enum QuadraH264_QuadraH264Profile {
|
|
8189
8616
|
/**
|
|
8190
|
-
* @generated from enum value:
|
|
8617
|
+
* @generated from enum value: QUADRA_H264_PROFILE_DEFAULT = 0;
|
|
8191
8618
|
*/
|
|
8192
8619
|
DEFAULT = 0,
|
|
8193
8620
|
/**
|
|
8194
|
-
* @generated from enum value:
|
|
8621
|
+
* @generated from enum value: QUADRA_H264_PROFILE_BASELINE = 1;
|
|
8195
8622
|
*/
|
|
8196
8623
|
BASELINE = 1,
|
|
8197
8624
|
/**
|
|
8198
|
-
* @generated from enum value:
|
|
8625
|
+
* @generated from enum value: QUADRA_H264_PROFILE_MAIN = 2;
|
|
8199
8626
|
*/
|
|
8200
8627
|
MAIN = 2,
|
|
8201
8628
|
/**
|
|
8202
|
-
* @generated from enum value:
|
|
8629
|
+
* @generated from enum value: QUADRA_H264_PROFILE_EXTENDED = 3;
|
|
8203
8630
|
*/
|
|
8204
8631
|
EXTENDED = 3,
|
|
8205
8632
|
/**
|
|
8206
|
-
* @generated from enum value:
|
|
8633
|
+
* @generated from enum value: QUADRA_H264_PROFILE_HIGH = 4;
|
|
8207
8634
|
*/
|
|
8208
8635
|
HIGH = 4,
|
|
8209
8636
|
/**
|
|
8210
|
-
* @generated from enum value:
|
|
8637
|
+
* @generated from enum value: QUADRA_H264_PROFILE_HIGH10 = 5;
|
|
8211
8638
|
*/
|
|
8212
8639
|
HIGH10 = 5
|
|
8213
8640
|
}
|
|
8214
8641
|
/**
|
|
8215
|
-
* @generated from message norsk.api.media.
|
|
8642
|
+
* @generated from message norsk.api.media.QuadraHevc
|
|
8216
8643
|
*/
|
|
8217
|
-
export declare class
|
|
8644
|
+
export declare class QuadraHevc extends Message<QuadraHevc> {
|
|
8218
8645
|
/**
|
|
8219
8646
|
* @generated from field: string extraOpts = 1;
|
|
8220
8647
|
*/
|
|
@@ -8256,13 +8683,13 @@ export declare class NetintHevc extends Message<NetintHevc> {
|
|
|
8256
8683
|
*/
|
|
8257
8684
|
intraPeriod?: OptionalInt;
|
|
8258
8685
|
/**
|
|
8259
|
-
* @generated from field: norsk.api.media.
|
|
8686
|
+
* @generated from field: norsk.api.media.QuadraHevc.QuadraHevcTier tier = 11;
|
|
8260
8687
|
*/
|
|
8261
|
-
tier:
|
|
8688
|
+
tier: QuadraHevc_QuadraHevcTier;
|
|
8262
8689
|
/**
|
|
8263
|
-
* @generated from field: norsk.api.media.
|
|
8690
|
+
* @generated from field: norsk.api.media.QuadraHevc.QuadraHevcProfile profile = 12;
|
|
8264
8691
|
*/
|
|
8265
|
-
profile:
|
|
8692
|
+
profile: QuadraHevc_QuadraHevcProfile;
|
|
8266
8693
|
/**
|
|
8267
8694
|
* @generated from field: norsk.api.media.OptionalInt level = 13;
|
|
8268
8695
|
*/
|
|
@@ -8291,172 +8718,397 @@ export declare class NetintHevc extends Message<NetintHevc> {
|
|
|
8291
8718
|
* @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
|
|
8292
8719
|
*/
|
|
8293
8720
|
dolbyVisionProfile?: OptionalInt;
|
|
8294
|
-
constructor(data?: PartialMessage<
|
|
8721
|
+
constructor(data?: PartialMessage<QuadraHevc>);
|
|
8295
8722
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8296
|
-
static readonly typeName = "norsk.api.media.
|
|
8723
|
+
static readonly typeName = "norsk.api.media.QuadraHevc";
|
|
8297
8724
|
static readonly fields: FieldList;
|
|
8298
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8299
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8300
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8301
|
-
static equals(a:
|
|
8725
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraHevc;
|
|
8726
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraHevc;
|
|
8727
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraHevc;
|
|
8728
|
+
static equals(a: QuadraHevc | PlainMessage<QuadraHevc> | undefined, b: QuadraHevc | PlainMessage<QuadraHevc> | undefined): boolean;
|
|
8302
8729
|
}
|
|
8303
8730
|
/**
|
|
8304
|
-
* @generated from enum norsk.api.media.
|
|
8731
|
+
* @generated from enum norsk.api.media.QuadraHevc.QuadraHevcProfile
|
|
8305
8732
|
*/
|
|
8306
|
-
export declare enum
|
|
8733
|
+
export declare enum QuadraHevc_QuadraHevcProfile {
|
|
8307
8734
|
/**
|
|
8308
|
-
* @generated from enum value:
|
|
8735
|
+
* @generated from enum value: QUADRA_HEVC_PROFILE_DEFAULT = 0;
|
|
8309
8736
|
*/
|
|
8310
8737
|
DEFAULT = 0,
|
|
8311
8738
|
/**
|
|
8312
|
-
* @generated from enum value:
|
|
8739
|
+
* @generated from enum value: QUADRA_HEVC_PROFILE_MAIN = 1;
|
|
8313
8740
|
*/
|
|
8314
8741
|
MAIN = 1,
|
|
8315
8742
|
/**
|
|
8316
|
-
* @generated from enum value:
|
|
8743
|
+
* @generated from enum value: QUADRA_HEVC_PROFILE_MAIN10 = 2;
|
|
8317
8744
|
*/
|
|
8318
8745
|
MAIN10 = 2
|
|
8319
8746
|
}
|
|
8320
8747
|
/**
|
|
8321
|
-
* @generated from enum norsk.api.media.
|
|
8748
|
+
* @generated from enum norsk.api.media.QuadraHevc.QuadraHevcTier
|
|
8322
8749
|
*/
|
|
8323
|
-
export declare enum
|
|
8750
|
+
export declare enum QuadraHevc_QuadraHevcTier {
|
|
8324
8751
|
/**
|
|
8325
|
-
* @generated from enum value:
|
|
8752
|
+
* @generated from enum value: QUADRA_HEVC_TIER_MAIN = 0;
|
|
8326
8753
|
*/
|
|
8327
8754
|
MAIN = 0,
|
|
8328
8755
|
/**
|
|
8329
|
-
* @generated from enum value:
|
|
8756
|
+
* @generated from enum value: QUADRA_HEVC_TIER_HIGH = 1;
|
|
8330
8757
|
*/
|
|
8331
8758
|
HIGH = 1
|
|
8332
8759
|
}
|
|
8333
8760
|
/**
|
|
8334
|
-
* @generated from message norsk.api.media.
|
|
8761
|
+
* @generated from message norsk.api.media.LoganH264
|
|
8335
8762
|
*/
|
|
8336
|
-
export declare class
|
|
8763
|
+
export declare class LoganH264 extends Message<LoganH264> {
|
|
8337
8764
|
/**
|
|
8338
|
-
* @generated from field:
|
|
8765
|
+
* @generated from field: string extraOpts = 1;
|
|
8339
8766
|
*/
|
|
8340
|
-
|
|
8767
|
+
extraOpts: string;
|
|
8341
8768
|
/**
|
|
8342
|
-
* @generated from field: norsk.api.media.
|
|
8769
|
+
* @generated from field: norsk.api.media.OptionalBool enableAud = 2;
|
|
8343
8770
|
*/
|
|
8344
|
-
|
|
8771
|
+
enableAud?: OptionalBool;
|
|
8345
8772
|
/**
|
|
8346
|
-
* @generated from field: norsk.api.media.
|
|
8773
|
+
* @generated from field: norsk.api.media.OptionalInt gpuIndex = 3;
|
|
8347
8774
|
*/
|
|
8348
|
-
|
|
8775
|
+
gpuIndex?: OptionalInt;
|
|
8349
8776
|
/**
|
|
8350
|
-
* @generated from field: norsk.api.media.
|
|
8777
|
+
* @generated from field: norsk.api.media.OptionalInt bitrate = 4;
|
|
8351
8778
|
*/
|
|
8352
|
-
|
|
8353
|
-
constructor(data?: PartialMessage<VideoTransformConfiguration>);
|
|
8354
|
-
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8355
|
-
static readonly typeName = "norsk.api.media.VideoTransformConfiguration";
|
|
8356
|
-
static readonly fields: FieldList;
|
|
8357
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTransformConfiguration;
|
|
8358
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoTransformConfiguration;
|
|
8359
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoTransformConfiguration;
|
|
8360
|
-
static equals(a: VideoTransformConfiguration | PlainMessage<VideoTransformConfiguration> | undefined, b: VideoTransformConfiguration | PlainMessage<VideoTransformConfiguration> | undefined): boolean;
|
|
8361
|
-
}
|
|
8362
|
-
/**
|
|
8363
|
-
* @generated from message norsk.api.media.VideoTransformMessage
|
|
8364
|
-
*/
|
|
8365
|
-
export declare class VideoTransformMessage extends Message<VideoTransformMessage> {
|
|
8779
|
+
bitrate?: OptionalInt;
|
|
8366
8780
|
/**
|
|
8367
|
-
* @generated from
|
|
8781
|
+
* @generated from field: norsk.api.media.OptionalBool flushGop = 5;
|
|
8368
8782
|
*/
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
|
|
8377
|
-
|
|
8378
|
-
|
|
8379
|
-
|
|
8380
|
-
|
|
8381
|
-
|
|
8382
|
-
|
|
8383
|
-
|
|
8384
|
-
|
|
8385
|
-
|
|
8783
|
+
flushGop?: OptionalBool;
|
|
8784
|
+
/**
|
|
8785
|
+
* @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
|
|
8786
|
+
*/
|
|
8787
|
+
enableVfr?: OptionalBool;
|
|
8788
|
+
/**
|
|
8789
|
+
* @generated from field: norsk.api.media.OptionalInt crf = 7;
|
|
8790
|
+
*/
|
|
8791
|
+
crf?: OptionalInt;
|
|
8792
|
+
/**
|
|
8793
|
+
* @generated from field: norsk.api.media.OptionalBool cbr = 8;
|
|
8794
|
+
*/
|
|
8795
|
+
cbr?: OptionalBool;
|
|
8796
|
+
/**
|
|
8797
|
+
* @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
|
|
8798
|
+
*/
|
|
8799
|
+
gopPresetIndex?: OptionalInt;
|
|
8800
|
+
/**
|
|
8801
|
+
* @generated from field: norsk.api.media.OptionalInt intraPeriod = 10;
|
|
8802
|
+
*/
|
|
8803
|
+
intraPeriod?: OptionalInt;
|
|
8804
|
+
/**
|
|
8805
|
+
* @generated from field: norsk.api.media.LoganH264.LoganH264Profile profile = 11;
|
|
8806
|
+
*/
|
|
8807
|
+
profile: LoganH264_LoganH264Profile;
|
|
8808
|
+
/**
|
|
8809
|
+
* @generated from field: norsk.api.media.OptionalInt level = 12;
|
|
8810
|
+
*/
|
|
8811
|
+
level?: OptionalInt;
|
|
8812
|
+
/**
|
|
8813
|
+
* @generated from field: norsk.api.media.OptionalBool rcEnable = 13;
|
|
8814
|
+
*/
|
|
8815
|
+
rcEnable?: OptionalBool;
|
|
8816
|
+
/**
|
|
8817
|
+
* @generated from field: norsk.api.media.OptionalInt intraQp = 14;
|
|
8818
|
+
*/
|
|
8819
|
+
intraQp?: OptionalInt;
|
|
8820
|
+
/**
|
|
8821
|
+
* @generated from field: norsk.api.media.OptionalInt rcInitDelay = 15;
|
|
8822
|
+
*/
|
|
8823
|
+
rcInitDelay?: OptionalInt;
|
|
8824
|
+
constructor(data?: PartialMessage<LoganH264>);
|
|
8386
8825
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8387
|
-
static readonly typeName = "norsk.api.media.
|
|
8826
|
+
static readonly typeName = "norsk.api.media.LoganH264";
|
|
8388
8827
|
static readonly fields: FieldList;
|
|
8389
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8390
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8391
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8392
|
-
static equals(a:
|
|
8828
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoganH264;
|
|
8829
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoganH264;
|
|
8830
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LoganH264;
|
|
8831
|
+
static equals(a: LoganH264 | PlainMessage<LoganH264> | undefined, b: LoganH264 | PlainMessage<LoganH264> | undefined): boolean;
|
|
8393
8832
|
}
|
|
8394
8833
|
/**
|
|
8395
|
-
* @generated from
|
|
8834
|
+
* @generated from enum norsk.api.media.LoganH264.LoganH264Profile
|
|
8396
8835
|
*/
|
|
8397
|
-
export declare
|
|
8836
|
+
export declare enum LoganH264_LoganH264Profile {
|
|
8398
8837
|
/**
|
|
8399
|
-
* @generated from
|
|
8838
|
+
* @generated from enum value: LOGAN_H264_PROFILE_DEFAULT = 0;
|
|
8400
8839
|
*/
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
};
|
|
8423
|
-
constructor(data?: PartialMessage<VideoTransformEvent>);
|
|
8424
|
-
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8425
|
-
static readonly typeName = "norsk.api.media.VideoTransformEvent";
|
|
8426
|
-
static readonly fields: FieldList;
|
|
8427
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTransformEvent;
|
|
8428
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoTransformEvent;
|
|
8429
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoTransformEvent;
|
|
8430
|
-
static equals(a: VideoTransformEvent | PlainMessage<VideoTransformEvent> | undefined, b: VideoTransformEvent | PlainMessage<VideoTransformEvent> | undefined): boolean;
|
|
8840
|
+
DEFAULT = 0,
|
|
8841
|
+
/**
|
|
8842
|
+
* @generated from enum value: LOGAN_H264_PROFILE_BASELINE = 1;
|
|
8843
|
+
*/
|
|
8844
|
+
BASELINE = 1,
|
|
8845
|
+
/**
|
|
8846
|
+
* @generated from enum value: LOGAN_H264_PROFILE_MAIN = 2;
|
|
8847
|
+
*/
|
|
8848
|
+
MAIN = 2,
|
|
8849
|
+
/**
|
|
8850
|
+
* @generated from enum value: LOGAN_H264_PROFILE_EXTENDED = 3;
|
|
8851
|
+
*/
|
|
8852
|
+
EXTENDED = 3,
|
|
8853
|
+
/**
|
|
8854
|
+
* @generated from enum value: LOGAN_H264_PROFILE_HIGH = 4;
|
|
8855
|
+
*/
|
|
8856
|
+
HIGH = 4,
|
|
8857
|
+
/**
|
|
8858
|
+
* @generated from enum value: LOGAN_H264_PROFILE_HIGH10 = 5;
|
|
8859
|
+
*/
|
|
8860
|
+
HIGH10 = 5
|
|
8431
8861
|
}
|
|
8432
8862
|
/**
|
|
8433
|
-
* @generated from message norsk.api.media.
|
|
8863
|
+
* @generated from message norsk.api.media.LoganHevc
|
|
8434
8864
|
*/
|
|
8435
|
-
export declare class
|
|
8865
|
+
export declare class LoganHevc extends Message<LoganHevc> {
|
|
8436
8866
|
/**
|
|
8437
|
-
* @generated from field:
|
|
8867
|
+
* @generated from field: string extraOpts = 1;
|
|
8438
8868
|
*/
|
|
8439
|
-
|
|
8869
|
+
extraOpts: string;
|
|
8440
8870
|
/**
|
|
8441
|
-
* @generated from
|
|
8871
|
+
* @generated from field: norsk.api.media.OptionalBool enableAud = 2;
|
|
8442
8872
|
*/
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
|
|
8455
|
-
|
|
8456
|
-
|
|
8457
|
-
|
|
8458
|
-
|
|
8459
|
-
|
|
8873
|
+
enableAud?: OptionalBool;
|
|
8874
|
+
/**
|
|
8875
|
+
* @generated from field: norsk.api.media.OptionalInt gpuIndex = 3;
|
|
8876
|
+
*/
|
|
8877
|
+
gpuIndex?: OptionalInt;
|
|
8878
|
+
/**
|
|
8879
|
+
* @generated from field: norsk.api.media.OptionalInt bitrate = 4;
|
|
8880
|
+
*/
|
|
8881
|
+
bitrate?: OptionalInt;
|
|
8882
|
+
/**
|
|
8883
|
+
* @generated from field: norsk.api.media.OptionalBool flushGop = 5;
|
|
8884
|
+
*/
|
|
8885
|
+
flushGop?: OptionalBool;
|
|
8886
|
+
/**
|
|
8887
|
+
* @generated from field: norsk.api.media.OptionalBool enableVfr = 6;
|
|
8888
|
+
*/
|
|
8889
|
+
enableVfr?: OptionalBool;
|
|
8890
|
+
/**
|
|
8891
|
+
* @generated from field: norsk.api.media.OptionalInt crf = 7;
|
|
8892
|
+
*/
|
|
8893
|
+
crf?: OptionalInt;
|
|
8894
|
+
/**
|
|
8895
|
+
* @generated from field: norsk.api.media.OptionalBool cbr = 8;
|
|
8896
|
+
*/
|
|
8897
|
+
cbr?: OptionalBool;
|
|
8898
|
+
/**
|
|
8899
|
+
* @generated from field: norsk.api.media.OptionalInt gopPresetIndex = 9;
|
|
8900
|
+
*/
|
|
8901
|
+
gopPresetIndex?: OptionalInt;
|
|
8902
|
+
/**
|
|
8903
|
+
* @generated from field: norsk.api.media.OptionalInt intraPeriod = 10;
|
|
8904
|
+
*/
|
|
8905
|
+
intraPeriod?: OptionalInt;
|
|
8906
|
+
/**
|
|
8907
|
+
* @generated from field: norsk.api.media.LoganHevc.LoganHevcTier tier = 11;
|
|
8908
|
+
*/
|
|
8909
|
+
tier: LoganHevc_LoganHevcTier;
|
|
8910
|
+
/**
|
|
8911
|
+
* @generated from field: norsk.api.media.LoganHevc.LoganHevcProfile profile = 12;
|
|
8912
|
+
*/
|
|
8913
|
+
profile: LoganHevc_LoganHevcProfile;
|
|
8914
|
+
/**
|
|
8915
|
+
* @generated from field: norsk.api.media.OptionalInt level = 13;
|
|
8916
|
+
*/
|
|
8917
|
+
level?: OptionalInt;
|
|
8918
|
+
/**
|
|
8919
|
+
* @generated from field: norsk.api.media.OptionalBool rcEnable = 14;
|
|
8920
|
+
*/
|
|
8921
|
+
rcEnable?: OptionalBool;
|
|
8922
|
+
/**
|
|
8923
|
+
* @generated from field: norsk.api.media.OptionalBool lossless = 15;
|
|
8924
|
+
*/
|
|
8925
|
+
lossless?: OptionalBool;
|
|
8926
|
+
/**
|
|
8927
|
+
* @generated from field: norsk.api.media.OptionalInt intraQp = 16;
|
|
8928
|
+
*/
|
|
8929
|
+
intraQp?: OptionalInt;
|
|
8930
|
+
/**
|
|
8931
|
+
* @generated from field: norsk.api.media.OptionalInt rcInitDelay = 17;
|
|
8932
|
+
*/
|
|
8933
|
+
rcInitDelay?: OptionalInt;
|
|
8934
|
+
/**
|
|
8935
|
+
* @generated from field: norsk.api.media.OptionalBool hrdEnable = 18;
|
|
8936
|
+
*/
|
|
8937
|
+
hrdEnable?: OptionalBool;
|
|
8938
|
+
/**
|
|
8939
|
+
* @generated from field: norsk.api.media.OptionalInt dolbyVisionProfile = 19;
|
|
8940
|
+
*/
|
|
8941
|
+
dolbyVisionProfile?: OptionalInt;
|
|
8942
|
+
constructor(data?: PartialMessage<LoganHevc>);
|
|
8943
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8944
|
+
static readonly typeName = "norsk.api.media.LoganHevc";
|
|
8945
|
+
static readonly fields: FieldList;
|
|
8946
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoganHevc;
|
|
8947
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoganHevc;
|
|
8948
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LoganHevc;
|
|
8949
|
+
static equals(a: LoganHevc | PlainMessage<LoganHevc> | undefined, b: LoganHevc | PlainMessage<LoganHevc> | undefined): boolean;
|
|
8950
|
+
}
|
|
8951
|
+
/**
|
|
8952
|
+
* @generated from enum norsk.api.media.LoganHevc.LoganHevcProfile
|
|
8953
|
+
*/
|
|
8954
|
+
export declare enum LoganHevc_LoganHevcProfile {
|
|
8955
|
+
/**
|
|
8956
|
+
* @generated from enum value: LOGAN_HEVC_PROFILE_DEFAULT = 0;
|
|
8957
|
+
*/
|
|
8958
|
+
DEFAULT = 0,
|
|
8959
|
+
/**
|
|
8960
|
+
* @generated from enum value: LOGAN_HEVC_PROFILE_MAIN = 1;
|
|
8961
|
+
*/
|
|
8962
|
+
MAIN = 1,
|
|
8963
|
+
/**
|
|
8964
|
+
* @generated from enum value: LOGAN_HEVC_PROFILE_MAIN10 = 2;
|
|
8965
|
+
*/
|
|
8966
|
+
MAIN10 = 2
|
|
8967
|
+
}
|
|
8968
|
+
/**
|
|
8969
|
+
* @generated from enum norsk.api.media.LoganHevc.LoganHevcTier
|
|
8970
|
+
*/
|
|
8971
|
+
export declare enum LoganHevc_LoganHevcTier {
|
|
8972
|
+
/**
|
|
8973
|
+
* @generated from enum value: LOGAN_HEVC_TIER_MAIN = 0;
|
|
8974
|
+
*/
|
|
8975
|
+
MAIN = 0,
|
|
8976
|
+
/**
|
|
8977
|
+
* @generated from enum value: LOGAN_HEVC_TIER_HIGH = 1;
|
|
8978
|
+
*/
|
|
8979
|
+
HIGH = 1
|
|
8980
|
+
}
|
|
8981
|
+
/**
|
|
8982
|
+
* @generated from message norsk.api.media.VideoTransformConfiguration
|
|
8983
|
+
*/
|
|
8984
|
+
export declare class VideoTransformConfiguration extends Message<VideoTransformConfiguration> {
|
|
8985
|
+
/**
|
|
8986
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
8987
|
+
*/
|
|
8988
|
+
id?: MediaNodeId;
|
|
8989
|
+
/**
|
|
8990
|
+
* @generated from field: norsk.api.media.Resolution resolution = 2;
|
|
8991
|
+
*/
|
|
8992
|
+
resolution?: Resolution;
|
|
8993
|
+
/**
|
|
8994
|
+
* @generated from field: norsk.api.media.SampleAspectRatio sample_aspect_ratio = 4;
|
|
8995
|
+
*/
|
|
8996
|
+
sampleAspectRatio?: SampleAspectRatio;
|
|
8997
|
+
/**
|
|
8998
|
+
* @generated from field: norsk.api.media.FrameRate frame_rate = 5;
|
|
8999
|
+
*/
|
|
9000
|
+
frameRate?: FrameRate;
|
|
9001
|
+
constructor(data?: PartialMessage<VideoTransformConfiguration>);
|
|
9002
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9003
|
+
static readonly typeName = "norsk.api.media.VideoTransformConfiguration";
|
|
9004
|
+
static readonly fields: FieldList;
|
|
9005
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTransformConfiguration;
|
|
9006
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoTransformConfiguration;
|
|
9007
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoTransformConfiguration;
|
|
9008
|
+
static equals(a: VideoTransformConfiguration | PlainMessage<VideoTransformConfiguration> | undefined, b: VideoTransformConfiguration | PlainMessage<VideoTransformConfiguration> | undefined): boolean;
|
|
9009
|
+
}
|
|
9010
|
+
/**
|
|
9011
|
+
* @generated from message norsk.api.media.VideoTransformMessage
|
|
9012
|
+
*/
|
|
9013
|
+
export declare class VideoTransformMessage extends Message<VideoTransformMessage> {
|
|
9014
|
+
/**
|
|
9015
|
+
* @generated from oneof norsk.api.media.VideoTransformMessage.message
|
|
9016
|
+
*/
|
|
9017
|
+
message: {
|
|
9018
|
+
/**
|
|
9019
|
+
* @generated from field: norsk.api.media.Subscription subscription = 1;
|
|
9020
|
+
*/
|
|
9021
|
+
value: Subscription;
|
|
9022
|
+
case: "subscription";
|
|
9023
|
+
} | {
|
|
9024
|
+
/**
|
|
9025
|
+
* @generated from field: norsk.api.media.VideoTransformConfiguration configuration = 2;
|
|
9026
|
+
*/
|
|
9027
|
+
value: VideoTransformConfiguration;
|
|
9028
|
+
case: "configuration";
|
|
9029
|
+
} | {
|
|
9030
|
+
case: undefined;
|
|
9031
|
+
value?: undefined;
|
|
9032
|
+
};
|
|
9033
|
+
constructor(data?: PartialMessage<VideoTransformMessage>);
|
|
9034
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9035
|
+
static readonly typeName = "norsk.api.media.VideoTransformMessage";
|
|
9036
|
+
static readonly fields: FieldList;
|
|
9037
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTransformMessage;
|
|
9038
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoTransformMessage;
|
|
9039
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoTransformMessage;
|
|
9040
|
+
static equals(a: VideoTransformMessage | PlainMessage<VideoTransformMessage> | undefined, b: VideoTransformMessage | PlainMessage<VideoTransformMessage> | undefined): boolean;
|
|
9041
|
+
}
|
|
9042
|
+
/**
|
|
9043
|
+
* @generated from message norsk.api.media.VideoTransformEvent
|
|
9044
|
+
*/
|
|
9045
|
+
export declare class VideoTransformEvent extends Message<VideoTransformEvent> {
|
|
9046
|
+
/**
|
|
9047
|
+
* @generated from oneof norsk.api.media.VideoTransformEvent.message
|
|
9048
|
+
*/
|
|
9049
|
+
message: {
|
|
9050
|
+
/**
|
|
9051
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
9052
|
+
*/
|
|
9053
|
+
value: MediaNodeId;
|
|
9054
|
+
case: "nodeId";
|
|
9055
|
+
} | {
|
|
9056
|
+
/**
|
|
9057
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
9058
|
+
*/
|
|
9059
|
+
value: Context;
|
|
9060
|
+
case: "outboundContext";
|
|
9061
|
+
} | {
|
|
9062
|
+
/**
|
|
9063
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
|
|
9064
|
+
*/
|
|
9065
|
+
value: SubscriptionResponse;
|
|
9066
|
+
case: "subscriptionResponse";
|
|
9067
|
+
} | {
|
|
9068
|
+
case: undefined;
|
|
9069
|
+
value?: undefined;
|
|
9070
|
+
};
|
|
9071
|
+
constructor(data?: PartialMessage<VideoTransformEvent>);
|
|
9072
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9073
|
+
static readonly typeName = "norsk.api.media.VideoTransformEvent";
|
|
9074
|
+
static readonly fields: FieldList;
|
|
9075
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoTransformEvent;
|
|
9076
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VideoTransformEvent;
|
|
9077
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VideoTransformEvent;
|
|
9078
|
+
static equals(a: VideoTransformEvent | PlainMessage<VideoTransformEvent> | undefined, b: VideoTransformEvent | PlainMessage<VideoTransformEvent> | undefined): boolean;
|
|
9079
|
+
}
|
|
9080
|
+
/**
|
|
9081
|
+
* @generated from message norsk.api.media.StreamChaosMonkeyConfiguration
|
|
9082
|
+
*/
|
|
9083
|
+
export declare class StreamChaosMonkeyConfiguration extends Message<StreamChaosMonkeyConfiguration> {
|
|
9084
|
+
/**
|
|
9085
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
9086
|
+
*/
|
|
9087
|
+
id?: MediaNodeId;
|
|
9088
|
+
/**
|
|
9089
|
+
* @generated from oneof norsk.api.media.StreamChaosMonkeyConfiguration.dropFramesMode
|
|
9090
|
+
*/
|
|
9091
|
+
dropFramesMode: {
|
|
9092
|
+
/**
|
|
9093
|
+
* @generated from field: float random = 2;
|
|
9094
|
+
*/
|
|
9095
|
+
value: number;
|
|
9096
|
+
case: "random";
|
|
9097
|
+
} | {
|
|
9098
|
+
/**
|
|
9099
|
+
* @generated from field: uint32 everyOther = 3;
|
|
9100
|
+
*/
|
|
9101
|
+
value: number;
|
|
9102
|
+
case: "everyOther";
|
|
9103
|
+
} | {
|
|
9104
|
+
case: undefined;
|
|
9105
|
+
value?: undefined;
|
|
9106
|
+
};
|
|
9107
|
+
/**
|
|
9108
|
+
* @generated from field: uint32 jitter_ms = 4;
|
|
9109
|
+
*/
|
|
9110
|
+
jitterMs: number;
|
|
9111
|
+
constructor(data?: PartialMessage<StreamChaosMonkeyConfiguration>);
|
|
8460
9112
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8461
9113
|
static readonly typeName = "norsk.api.media.StreamChaosMonkeyConfiguration";
|
|
8462
9114
|
static readonly fields: FieldList;
|
|
@@ -8882,34 +9534,38 @@ export declare class StreamMetadataOverrideEvent extends Message<StreamMetadataO
|
|
|
8882
9534
|
static equals(a: StreamMetadataOverrideEvent | PlainMessage<StreamMetadataOverrideEvent> | undefined, b: StreamMetadataOverrideEvent | PlainMessage<StreamMetadataOverrideEvent> | undefined): boolean;
|
|
8883
9535
|
}
|
|
8884
9536
|
/**
|
|
8885
|
-
* @generated from message norsk.api.media.
|
|
9537
|
+
* @generated from message norsk.api.media.JitterBufferConfiguration
|
|
8886
9538
|
*/
|
|
8887
|
-
export declare class
|
|
9539
|
+
export declare class JitterBufferConfiguration extends Message<JitterBufferConfiguration> {
|
|
8888
9540
|
/**
|
|
8889
9541
|
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
8890
9542
|
*/
|
|
8891
9543
|
id?: MediaNodeId;
|
|
8892
|
-
|
|
9544
|
+
/**
|
|
9545
|
+
* @generated from field: uint32 delay_ms = 2;
|
|
9546
|
+
*/
|
|
9547
|
+
delayMs: number;
|
|
9548
|
+
constructor(data?: PartialMessage<JitterBufferConfiguration>);
|
|
8893
9549
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8894
|
-
static readonly typeName = "norsk.api.media.
|
|
9550
|
+
static readonly typeName = "norsk.api.media.JitterBufferConfiguration";
|
|
8895
9551
|
static readonly fields: FieldList;
|
|
8896
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8897
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8898
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8899
|
-
static equals(a:
|
|
9552
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JitterBufferConfiguration;
|
|
9553
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JitterBufferConfiguration;
|
|
9554
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JitterBufferConfiguration;
|
|
9555
|
+
static equals(a: JitterBufferConfiguration | PlainMessage<JitterBufferConfiguration> | undefined, b: JitterBufferConfiguration | PlainMessage<JitterBufferConfiguration> | undefined): boolean;
|
|
8900
9556
|
}
|
|
8901
9557
|
/**
|
|
8902
|
-
* @generated from message norsk.api.media.
|
|
9558
|
+
* @generated from message norsk.api.media.JitterBufferMessage
|
|
8903
9559
|
*/
|
|
8904
|
-
export declare class
|
|
9560
|
+
export declare class JitterBufferMessage extends Message<JitterBufferMessage> {
|
|
8905
9561
|
/**
|
|
8906
|
-
* @generated from oneof norsk.api.media.
|
|
9562
|
+
* @generated from oneof norsk.api.media.JitterBufferMessage.message
|
|
8907
9563
|
*/
|
|
8908
9564
|
message: {
|
|
8909
9565
|
/**
|
|
8910
|
-
* @generated from field: norsk.api.media.
|
|
9566
|
+
* @generated from field: norsk.api.media.JitterBufferConfiguration initial_config = 1;
|
|
8911
9567
|
*/
|
|
8912
|
-
value:
|
|
9568
|
+
value: JitterBufferConfiguration;
|
|
8913
9569
|
case: "initialConfig";
|
|
8914
9570
|
} | {
|
|
8915
9571
|
/**
|
|
@@ -8921,21 +9577,21 @@ export declare class StreamSyncMessage extends Message<StreamSyncMessage> {
|
|
|
8921
9577
|
case: undefined;
|
|
8922
9578
|
value?: undefined;
|
|
8923
9579
|
};
|
|
8924
|
-
constructor(data?: PartialMessage<
|
|
9580
|
+
constructor(data?: PartialMessage<JitterBufferMessage>);
|
|
8925
9581
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8926
|
-
static readonly typeName = "norsk.api.media.
|
|
9582
|
+
static readonly typeName = "norsk.api.media.JitterBufferMessage";
|
|
8927
9583
|
static readonly fields: FieldList;
|
|
8928
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8929
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8930
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8931
|
-
static equals(a:
|
|
9584
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JitterBufferMessage;
|
|
9585
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JitterBufferMessage;
|
|
9586
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JitterBufferMessage;
|
|
9587
|
+
static equals(a: JitterBufferMessage | PlainMessage<JitterBufferMessage> | undefined, b: JitterBufferMessage | PlainMessage<JitterBufferMessage> | undefined): boolean;
|
|
8932
9588
|
}
|
|
8933
9589
|
/**
|
|
8934
|
-
* @generated from message norsk.api.media.
|
|
9590
|
+
* @generated from message norsk.api.media.JitterBufferEvent
|
|
8935
9591
|
*/
|
|
8936
|
-
export declare class
|
|
9592
|
+
export declare class JitterBufferEvent extends Message<JitterBufferEvent> {
|
|
8937
9593
|
/**
|
|
8938
|
-
* @generated from oneof norsk.api.media.
|
|
9594
|
+
* @generated from oneof norsk.api.media.JitterBufferEvent.message
|
|
8939
9595
|
*/
|
|
8940
9596
|
message: {
|
|
8941
9597
|
/**
|
|
@@ -8959,24 +9615,111 @@ export declare class StreamSyncEvent extends Message<StreamSyncEvent> {
|
|
|
8959
9615
|
case: undefined;
|
|
8960
9616
|
value?: undefined;
|
|
8961
9617
|
};
|
|
8962
|
-
constructor(data?: PartialMessage<
|
|
9618
|
+
constructor(data?: PartialMessage<JitterBufferEvent>);
|
|
8963
9619
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
8964
|
-
static readonly typeName = "norsk.api.media.
|
|
9620
|
+
static readonly typeName = "norsk.api.media.JitterBufferEvent";
|
|
8965
9621
|
static readonly fields: FieldList;
|
|
8966
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
8967
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
8968
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
8969
|
-
static equals(a:
|
|
9622
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JitterBufferEvent;
|
|
9623
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JitterBufferEvent;
|
|
9624
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JitterBufferEvent;
|
|
9625
|
+
static equals(a: JitterBufferEvent | PlainMessage<JitterBufferEvent> | undefined, b: JitterBufferEvent | PlainMessage<JitterBufferEvent> | undefined): boolean;
|
|
8970
9626
|
}
|
|
8971
9627
|
/**
|
|
8972
|
-
*
|
|
8973
|
-
* AudioEncode
|
|
8974
|
-
*
|
|
8975
|
-
* @generated from message norsk.api.media.AacEncodeConfiguration
|
|
9628
|
+
* @generated from message norsk.api.media.StreamSyncConfiguration
|
|
8976
9629
|
*/
|
|
8977
|
-
export declare class
|
|
9630
|
+
export declare class StreamSyncConfiguration extends Message<StreamSyncConfiguration> {
|
|
8978
9631
|
/**
|
|
8979
|
-
* @generated from field: norsk.api.media.
|
|
9632
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
9633
|
+
*/
|
|
9634
|
+
id?: MediaNodeId;
|
|
9635
|
+
constructor(data?: PartialMessage<StreamSyncConfiguration>);
|
|
9636
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9637
|
+
static readonly typeName = "norsk.api.media.StreamSyncConfiguration";
|
|
9638
|
+
static readonly fields: FieldList;
|
|
9639
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSyncConfiguration;
|
|
9640
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSyncConfiguration;
|
|
9641
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSyncConfiguration;
|
|
9642
|
+
static equals(a: StreamSyncConfiguration | PlainMessage<StreamSyncConfiguration> | undefined, b: StreamSyncConfiguration | PlainMessage<StreamSyncConfiguration> | undefined): boolean;
|
|
9643
|
+
}
|
|
9644
|
+
/**
|
|
9645
|
+
* @generated from message norsk.api.media.StreamSyncMessage
|
|
9646
|
+
*/
|
|
9647
|
+
export declare class StreamSyncMessage extends Message<StreamSyncMessage> {
|
|
9648
|
+
/**
|
|
9649
|
+
* @generated from oneof norsk.api.media.StreamSyncMessage.message
|
|
9650
|
+
*/
|
|
9651
|
+
message: {
|
|
9652
|
+
/**
|
|
9653
|
+
* @generated from field: norsk.api.media.StreamSyncConfiguration initial_config = 1;
|
|
9654
|
+
*/
|
|
9655
|
+
value: StreamSyncConfiguration;
|
|
9656
|
+
case: "initialConfig";
|
|
9657
|
+
} | {
|
|
9658
|
+
/**
|
|
9659
|
+
* @generated from field: norsk.api.media.Subscription subscription = 2;
|
|
9660
|
+
*/
|
|
9661
|
+
value: Subscription;
|
|
9662
|
+
case: "subscription";
|
|
9663
|
+
} | {
|
|
9664
|
+
case: undefined;
|
|
9665
|
+
value?: undefined;
|
|
9666
|
+
};
|
|
9667
|
+
constructor(data?: PartialMessage<StreamSyncMessage>);
|
|
9668
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9669
|
+
static readonly typeName = "norsk.api.media.StreamSyncMessage";
|
|
9670
|
+
static readonly fields: FieldList;
|
|
9671
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSyncMessage;
|
|
9672
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSyncMessage;
|
|
9673
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSyncMessage;
|
|
9674
|
+
static equals(a: StreamSyncMessage | PlainMessage<StreamSyncMessage> | undefined, b: StreamSyncMessage | PlainMessage<StreamSyncMessage> | undefined): boolean;
|
|
9675
|
+
}
|
|
9676
|
+
/**
|
|
9677
|
+
* @generated from message norsk.api.media.StreamSyncEvent
|
|
9678
|
+
*/
|
|
9679
|
+
export declare class StreamSyncEvent extends Message<StreamSyncEvent> {
|
|
9680
|
+
/**
|
|
9681
|
+
* @generated from oneof norsk.api.media.StreamSyncEvent.message
|
|
9682
|
+
*/
|
|
9683
|
+
message: {
|
|
9684
|
+
/**
|
|
9685
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
9686
|
+
*/
|
|
9687
|
+
value: MediaNodeId;
|
|
9688
|
+
case: "nodeId";
|
|
9689
|
+
} | {
|
|
9690
|
+
/**
|
|
9691
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
9692
|
+
*/
|
|
9693
|
+
value: Context;
|
|
9694
|
+
case: "outboundContext";
|
|
9695
|
+
} | {
|
|
9696
|
+
/**
|
|
9697
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
|
|
9698
|
+
*/
|
|
9699
|
+
value: SubscriptionResponse;
|
|
9700
|
+
case: "subscriptionResponse";
|
|
9701
|
+
} | {
|
|
9702
|
+
case: undefined;
|
|
9703
|
+
value?: undefined;
|
|
9704
|
+
};
|
|
9705
|
+
constructor(data?: PartialMessage<StreamSyncEvent>);
|
|
9706
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
9707
|
+
static readonly typeName = "norsk.api.media.StreamSyncEvent";
|
|
9708
|
+
static readonly fields: FieldList;
|
|
9709
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSyncEvent;
|
|
9710
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSyncEvent;
|
|
9711
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSyncEvent;
|
|
9712
|
+
static equals(a: StreamSyncEvent | PlainMessage<StreamSyncEvent> | undefined, b: StreamSyncEvent | PlainMessage<StreamSyncEvent> | undefined): boolean;
|
|
9713
|
+
}
|
|
9714
|
+
/**
|
|
9715
|
+
* ///////////////////////////////
|
|
9716
|
+
* AudioEncode
|
|
9717
|
+
*
|
|
9718
|
+
* @generated from message norsk.api.media.AacEncodeConfiguration
|
|
9719
|
+
*/
|
|
9720
|
+
export declare class AacEncodeConfiguration extends Message<AacEncodeConfiguration> {
|
|
9721
|
+
/**
|
|
9722
|
+
* @generated from field: norsk.api.media.SampleRate sample_rate = 1;
|
|
8980
9723
|
*/
|
|
8981
9724
|
sampleRate: SampleRate;
|
|
8982
9725
|
/**
|
|
@@ -9267,6 +10010,27 @@ export declare class StreamSwitchSmoothMessage extends Message<StreamSwitchSmoot
|
|
|
9267
10010
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothMessage;
|
|
9268
10011
|
static equals(a: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined, b: StreamSwitchSmoothMessage | PlainMessage<StreamSwitchSmoothMessage> | undefined): boolean;
|
|
9269
10012
|
}
|
|
10013
|
+
/**
|
|
10014
|
+
* @generated from message norsk.api.media.StreamSwitchSmoothSwitchError
|
|
10015
|
+
*/
|
|
10016
|
+
export declare class StreamSwitchSmoothSwitchError extends Message<StreamSwitchSmoothSwitchError> {
|
|
10017
|
+
/**
|
|
10018
|
+
* @generated from field: string reason = 1;
|
|
10019
|
+
*/
|
|
10020
|
+
reason: string;
|
|
10021
|
+
/**
|
|
10022
|
+
* @generated from field: norsk.api.media.InputPin requested_source = 2;
|
|
10023
|
+
*/
|
|
10024
|
+
requestedSource?: InputPin;
|
|
10025
|
+
constructor(data?: PartialMessage<StreamSwitchSmoothSwitchError>);
|
|
10026
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10027
|
+
static readonly typeName = "norsk.api.media.StreamSwitchSmoothSwitchError";
|
|
10028
|
+
static readonly fields: FieldList;
|
|
10029
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamSwitchSmoothSwitchError;
|
|
10030
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitchError;
|
|
10031
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamSwitchSmoothSwitchError;
|
|
10032
|
+
static equals(a: StreamSwitchSmoothSwitchError | PlainMessage<StreamSwitchSmoothSwitchError> | undefined, b: StreamSwitchSmoothSwitchError | PlainMessage<StreamSwitchSmoothSwitchError> | undefined): boolean;
|
|
10033
|
+
}
|
|
9270
10034
|
/**
|
|
9271
10035
|
* @generated from message norsk.api.media.StreamSwitchSmoothEvent
|
|
9272
10036
|
*/
|
|
@@ -9292,6 +10056,22 @@ export declare class StreamSwitchSmoothEvent extends Message<StreamSwitchSmoothE
|
|
|
9292
10056
|
*/
|
|
9293
10057
|
value: SubscriptionResponse;
|
|
9294
10058
|
case: "subscriptionResponse";
|
|
10059
|
+
} | {
|
|
10060
|
+
/**
|
|
10061
|
+
* @generated from field: norsk.api.media.StreamSwitchSmoothSwitchError switch_error = 4;
|
|
10062
|
+
*/
|
|
10063
|
+
value: StreamSwitchSmoothSwitchError;
|
|
10064
|
+
case: "switchError";
|
|
10065
|
+
} | {
|
|
10066
|
+
/**
|
|
10067
|
+
* Message sent when inbound context changes on some input; presence of an
|
|
10068
|
+
* input in this message means that media has arrived and is ready to switch
|
|
10069
|
+
* immediately
|
|
10070
|
+
*
|
|
10071
|
+
* @generated from field: norsk.api.media.MultipleContext inbound_context = 5;
|
|
10072
|
+
*/
|
|
10073
|
+
value: MultipleContext;
|
|
10074
|
+
case: "inboundContext";
|
|
9295
10075
|
} | {
|
|
9296
10076
|
case: undefined;
|
|
9297
10077
|
value?: undefined;
|
|
@@ -10180,6 +10960,907 @@ export declare class AudioTranscribeAwsEvent extends Message<AudioTranscribeAwsE
|
|
|
10180
10960
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioTranscribeAwsEvent;
|
|
10181
10961
|
static equals(a: AudioTranscribeAwsEvent | PlainMessage<AudioTranscribeAwsEvent> | undefined, b: AudioTranscribeAwsEvent | PlainMessage<AudioTranscribeAwsEvent> | undefined): boolean;
|
|
10182
10962
|
}
|
|
10963
|
+
/**
|
|
10964
|
+
* @generated from message norsk.api.media.AncillaryConfiguration
|
|
10965
|
+
*/
|
|
10966
|
+
export declare class AncillaryConfiguration extends Message<AncillaryConfiguration> {
|
|
10967
|
+
/**
|
|
10968
|
+
* @generated from field: norsk.api.media.MediaNodeId id = 1;
|
|
10969
|
+
*/
|
|
10970
|
+
id?: MediaNodeId;
|
|
10971
|
+
constructor(data?: PartialMessage<AncillaryConfiguration>);
|
|
10972
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
10973
|
+
static readonly typeName = "norsk.api.media.AncillaryConfiguration";
|
|
10974
|
+
static readonly fields: FieldList;
|
|
10975
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AncillaryConfiguration;
|
|
10976
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AncillaryConfiguration;
|
|
10977
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AncillaryConfiguration;
|
|
10978
|
+
static equals(a: AncillaryConfiguration | PlainMessage<AncillaryConfiguration> | undefined, b: AncillaryConfiguration | PlainMessage<AncillaryConfiguration> | undefined): boolean;
|
|
10979
|
+
}
|
|
10980
|
+
/**
|
|
10981
|
+
* @generated from message norsk.api.media.AncillaryMessage
|
|
10982
|
+
*/
|
|
10983
|
+
export declare class AncillaryMessage extends Message<AncillaryMessage> {
|
|
10984
|
+
/**
|
|
10985
|
+
* @generated from oneof norsk.api.media.AncillaryMessage.message
|
|
10986
|
+
*/
|
|
10987
|
+
message: {
|
|
10988
|
+
/**
|
|
10989
|
+
* @generated from field: norsk.api.media.AncillaryConfiguration initial_config = 1;
|
|
10990
|
+
*/
|
|
10991
|
+
value: AncillaryConfiguration;
|
|
10992
|
+
case: "initialConfig";
|
|
10993
|
+
} | {
|
|
10994
|
+
/**
|
|
10995
|
+
* @generated from field: norsk.api.media.Subscription subscription = 2;
|
|
10996
|
+
*/
|
|
10997
|
+
value: Subscription;
|
|
10998
|
+
case: "subscription";
|
|
10999
|
+
} | {
|
|
11000
|
+
/**
|
|
11001
|
+
* @generated from field: norsk.api.media.Scte35Event scte35_event = 3;
|
|
11002
|
+
*/
|
|
11003
|
+
value: Scte35Event;
|
|
11004
|
+
case: "scte35Event";
|
|
11005
|
+
} | {
|
|
11006
|
+
case: undefined;
|
|
11007
|
+
value?: undefined;
|
|
11008
|
+
};
|
|
11009
|
+
constructor(data?: PartialMessage<AncillaryMessage>);
|
|
11010
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11011
|
+
static readonly typeName = "norsk.api.media.AncillaryMessage";
|
|
11012
|
+
static readonly fields: FieldList;
|
|
11013
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AncillaryMessage;
|
|
11014
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AncillaryMessage;
|
|
11015
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AncillaryMessage;
|
|
11016
|
+
static equals(a: AncillaryMessage | PlainMessage<AncillaryMessage> | undefined, b: AncillaryMessage | PlainMessage<AncillaryMessage> | undefined): boolean;
|
|
11017
|
+
}
|
|
11018
|
+
/**
|
|
11019
|
+
* @generated from message norsk.api.media.AncillaryEvent
|
|
11020
|
+
*/
|
|
11021
|
+
export declare class AncillaryEvent extends Message<AncillaryEvent> {
|
|
11022
|
+
/**
|
|
11023
|
+
* @generated from oneof norsk.api.media.AncillaryEvent.message
|
|
11024
|
+
*/
|
|
11025
|
+
message: {
|
|
11026
|
+
/**
|
|
11027
|
+
* @generated from field: norsk.api.media.MediaNodeId node_id = 1;
|
|
11028
|
+
*/
|
|
11029
|
+
value: MediaNodeId;
|
|
11030
|
+
case: "nodeId";
|
|
11031
|
+
} | {
|
|
11032
|
+
/**
|
|
11033
|
+
* @generated from field: norsk.api.media.Context outbound_context = 2;
|
|
11034
|
+
*/
|
|
11035
|
+
value: Context;
|
|
11036
|
+
case: "outboundContext";
|
|
11037
|
+
} | {
|
|
11038
|
+
/**
|
|
11039
|
+
* @generated from field: norsk.api.media.SubscriptionResponse subscription_response = 3;
|
|
11040
|
+
*/
|
|
11041
|
+
value: SubscriptionResponse;
|
|
11042
|
+
case: "subscriptionResponse";
|
|
11043
|
+
} | {
|
|
11044
|
+
/**
|
|
11045
|
+
* @generated from field: norsk.api.media.Scte35Event scte35_event = 4;
|
|
11046
|
+
*/
|
|
11047
|
+
value: Scte35Event;
|
|
11048
|
+
case: "scte35Event";
|
|
11049
|
+
} | {
|
|
11050
|
+
case: undefined;
|
|
11051
|
+
value?: undefined;
|
|
11052
|
+
};
|
|
11053
|
+
constructor(data?: PartialMessage<AncillaryEvent>);
|
|
11054
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11055
|
+
static readonly typeName = "norsk.api.media.AncillaryEvent";
|
|
11056
|
+
static readonly fields: FieldList;
|
|
11057
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AncillaryEvent;
|
|
11058
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AncillaryEvent;
|
|
11059
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AncillaryEvent;
|
|
11060
|
+
static equals(a: AncillaryEvent | PlainMessage<AncillaryEvent> | undefined, b: AncillaryEvent | PlainMessage<AncillaryEvent> | undefined): boolean;
|
|
11061
|
+
}
|
|
11062
|
+
/**
|
|
11063
|
+
* @generated from message norsk.api.media.Scte35Event
|
|
11064
|
+
*/
|
|
11065
|
+
export declare class Scte35Event extends Message<Scte35Event> {
|
|
11066
|
+
/**
|
|
11067
|
+
* @generated from field: norsk.api.media.StreamKey stream = 1;
|
|
11068
|
+
*/
|
|
11069
|
+
stream?: StreamKey;
|
|
11070
|
+
/**
|
|
11071
|
+
* @generated from field: norsk.api.media.Scte35SpliceInfoSection info = 2;
|
|
11072
|
+
*/
|
|
11073
|
+
info?: Scte35SpliceInfoSection;
|
|
11074
|
+
constructor(data?: PartialMessage<Scte35Event>);
|
|
11075
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11076
|
+
static readonly typeName = "norsk.api.media.Scte35Event";
|
|
11077
|
+
static readonly fields: FieldList;
|
|
11078
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35Event;
|
|
11079
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35Event;
|
|
11080
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35Event;
|
|
11081
|
+
static equals(a: Scte35Event | PlainMessage<Scte35Event> | undefined, b: Scte35Event | PlainMessage<Scte35Event> | undefined): boolean;
|
|
11082
|
+
}
|
|
11083
|
+
/**
|
|
11084
|
+
* @generated from message norsk.api.media.Scte35SpliceInfoSection
|
|
11085
|
+
*/
|
|
11086
|
+
export declare class Scte35SpliceInfoSection extends Message<Scte35SpliceInfoSection> {
|
|
11087
|
+
/**
|
|
11088
|
+
* @generated from field: uint32 sap_type = 1;
|
|
11089
|
+
*/
|
|
11090
|
+
sapType: number;
|
|
11091
|
+
/**
|
|
11092
|
+
* @generated from field: uint32 protocol_version = 2;
|
|
11093
|
+
*/
|
|
11094
|
+
protocolVersion: number;
|
|
11095
|
+
/**
|
|
11096
|
+
* @generated from field: bool encrypted_packet = 3;
|
|
11097
|
+
*/
|
|
11098
|
+
encryptedPacket: boolean;
|
|
11099
|
+
/**
|
|
11100
|
+
* @generated from field: uint32 encryption_algorithm = 4;
|
|
11101
|
+
*/
|
|
11102
|
+
encryptionAlgorithm: number;
|
|
11103
|
+
/**
|
|
11104
|
+
* @generated from field: uint64 pts_adjustment = 5;
|
|
11105
|
+
*/
|
|
11106
|
+
ptsAdjustment: bigint;
|
|
11107
|
+
/**
|
|
11108
|
+
* @generated from field: uint32 cw_index = 6;
|
|
11109
|
+
*/
|
|
11110
|
+
cwIndex: number;
|
|
11111
|
+
/**
|
|
11112
|
+
* @generated from field: uint32 tier = 7;
|
|
11113
|
+
*/
|
|
11114
|
+
tier: number;
|
|
11115
|
+
/**
|
|
11116
|
+
* @generated from field: norsk.api.media.Scte35SpliceCommand splice_command = 8;
|
|
11117
|
+
*/
|
|
11118
|
+
spliceCommand?: Scte35SpliceCommand;
|
|
11119
|
+
/**
|
|
11120
|
+
* @generated from field: repeated norsk.api.media.Scte35SpliceDescriptor descriptors = 9;
|
|
11121
|
+
*/
|
|
11122
|
+
descriptors: Scte35SpliceDescriptor[];
|
|
11123
|
+
constructor(data?: PartialMessage<Scte35SpliceInfoSection>);
|
|
11124
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11125
|
+
static readonly typeName = "norsk.api.media.Scte35SpliceInfoSection";
|
|
11126
|
+
static readonly fields: FieldList;
|
|
11127
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceInfoSection;
|
|
11128
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceInfoSection;
|
|
11129
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceInfoSection;
|
|
11130
|
+
static equals(a: Scte35SpliceInfoSection | PlainMessage<Scte35SpliceInfoSection> | undefined, b: Scte35SpliceInfoSection | PlainMessage<Scte35SpliceInfoSection> | undefined): boolean;
|
|
11131
|
+
}
|
|
11132
|
+
/**
|
|
11133
|
+
* @generated from message norsk.api.media.Scte35SpliceCommand
|
|
11134
|
+
*/
|
|
11135
|
+
export declare class Scte35SpliceCommand extends Message<Scte35SpliceCommand> {
|
|
11136
|
+
/**
|
|
11137
|
+
* @generated from oneof norsk.api.media.Scte35SpliceCommand.message
|
|
11138
|
+
*/
|
|
11139
|
+
message: {
|
|
11140
|
+
/**
|
|
11141
|
+
* @generated from field: google.protobuf.Empty null = 1;
|
|
11142
|
+
*/
|
|
11143
|
+
value: Empty;
|
|
11144
|
+
case: "null";
|
|
11145
|
+
} | {
|
|
11146
|
+
/**
|
|
11147
|
+
* @generated from field: norsk.api.media.Scte35ScheduleCommand schedule = 2;
|
|
11148
|
+
*/
|
|
11149
|
+
value: Scte35ScheduleCommand;
|
|
11150
|
+
case: "schedule";
|
|
11151
|
+
} | {
|
|
11152
|
+
/**
|
|
11153
|
+
* @generated from field: norsk.api.media.Scte35InsertCommand insert = 3;
|
|
11154
|
+
*/
|
|
11155
|
+
value: Scte35InsertCommand;
|
|
11156
|
+
case: "insert";
|
|
11157
|
+
} | {
|
|
11158
|
+
/**
|
|
11159
|
+
* @generated from field: norsk.api.media.Scte35TimeSignalCommand time_signal = 4;
|
|
11160
|
+
*/
|
|
11161
|
+
value: Scte35TimeSignalCommand;
|
|
11162
|
+
case: "timeSignal";
|
|
11163
|
+
} | {
|
|
11164
|
+
/**
|
|
11165
|
+
* @generated from field: google.protobuf.Empty bandwidth_reservation = 5;
|
|
11166
|
+
*/
|
|
11167
|
+
value: Empty;
|
|
11168
|
+
case: "bandwidthReservation";
|
|
11169
|
+
} | {
|
|
11170
|
+
/**
|
|
11171
|
+
* @generated from field: norsk.api.media.Scte35PrivateCommand private_command = 6;
|
|
11172
|
+
*/
|
|
11173
|
+
value: Scte35PrivateCommand;
|
|
11174
|
+
case: "privateCommand";
|
|
11175
|
+
} | {
|
|
11176
|
+
/**
|
|
11177
|
+
* @generated from field: uint32 reserved = 7;
|
|
11178
|
+
*/
|
|
11179
|
+
value: number;
|
|
11180
|
+
case: "reserved";
|
|
11181
|
+
} | {
|
|
11182
|
+
case: undefined;
|
|
11183
|
+
value?: undefined;
|
|
11184
|
+
};
|
|
11185
|
+
constructor(data?: PartialMessage<Scte35SpliceCommand>);
|
|
11186
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11187
|
+
static readonly typeName = "norsk.api.media.Scte35SpliceCommand";
|
|
11188
|
+
static readonly fields: FieldList;
|
|
11189
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceCommand;
|
|
11190
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceCommand;
|
|
11191
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceCommand;
|
|
11192
|
+
static equals(a: Scte35SpliceCommand | PlainMessage<Scte35SpliceCommand> | undefined, b: Scte35SpliceCommand | PlainMessage<Scte35SpliceCommand> | undefined): boolean;
|
|
11193
|
+
}
|
|
11194
|
+
/**
|
|
11195
|
+
* @generated from message norsk.api.media.Scte35TimeSignalCommand
|
|
11196
|
+
*/
|
|
11197
|
+
export declare class Scte35TimeSignalCommand extends Message<Scte35TimeSignalCommand> {
|
|
11198
|
+
/**
|
|
11199
|
+
* @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 1;
|
|
11200
|
+
*/
|
|
11201
|
+
spliceTime?: Scte35SpliceTime;
|
|
11202
|
+
constructor(data?: PartialMessage<Scte35TimeSignalCommand>);
|
|
11203
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11204
|
+
static readonly typeName = "norsk.api.media.Scte35TimeSignalCommand";
|
|
11205
|
+
static readonly fields: FieldList;
|
|
11206
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35TimeSignalCommand;
|
|
11207
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35TimeSignalCommand;
|
|
11208
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35TimeSignalCommand;
|
|
11209
|
+
static equals(a: Scte35TimeSignalCommand | PlainMessage<Scte35TimeSignalCommand> | undefined, b: Scte35TimeSignalCommand | PlainMessage<Scte35TimeSignalCommand> | undefined): boolean;
|
|
11210
|
+
}
|
|
11211
|
+
/**
|
|
11212
|
+
* @generated from message norsk.api.media.Scte35InsertCommand
|
|
11213
|
+
*/
|
|
11214
|
+
export declare class Scte35InsertCommand extends Message<Scte35InsertCommand> {
|
|
11215
|
+
/**
|
|
11216
|
+
* @generated from field: uint32 splice_event_id = 1;
|
|
11217
|
+
*/
|
|
11218
|
+
spliceEventId: number;
|
|
11219
|
+
/**
|
|
11220
|
+
* @generated from field: bool splice_event_cancel_indicator = 2;
|
|
11221
|
+
*/
|
|
11222
|
+
spliceEventCancelIndicator: boolean;
|
|
11223
|
+
/**
|
|
11224
|
+
* @generated from field: bool out_of_network_indicator = 3;
|
|
11225
|
+
*/
|
|
11226
|
+
outOfNetworkIndicator: boolean;
|
|
11227
|
+
/**
|
|
11228
|
+
* @generated from field: bool splice_immediate_flag = 4;
|
|
11229
|
+
*/
|
|
11230
|
+
spliceImmediateFlag: boolean;
|
|
11231
|
+
/**
|
|
11232
|
+
* @generated from field: norsk.api.media.Scte35InsertCommandMode mode = 5;
|
|
11233
|
+
*/
|
|
11234
|
+
mode?: Scte35InsertCommandMode;
|
|
11235
|
+
/**
|
|
11236
|
+
* @generated from field: norsk.api.media.Scte35BreakDuration break_duration = 6;
|
|
11237
|
+
*/
|
|
11238
|
+
breakDuration?: Scte35BreakDuration;
|
|
11239
|
+
/**
|
|
11240
|
+
* @generated from field: uint32 unique_program_id = 7;
|
|
11241
|
+
*/
|
|
11242
|
+
uniqueProgramId: number;
|
|
11243
|
+
/**
|
|
11244
|
+
* @generated from field: uint32 avail_num = 8;
|
|
11245
|
+
*/
|
|
11246
|
+
availNum: number;
|
|
11247
|
+
/**
|
|
11248
|
+
* @generated from field: uint32 avails_expected = 9;
|
|
11249
|
+
*/
|
|
11250
|
+
availsExpected: number;
|
|
11251
|
+
constructor(data?: PartialMessage<Scte35InsertCommand>);
|
|
11252
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11253
|
+
static readonly typeName = "norsk.api.media.Scte35InsertCommand";
|
|
11254
|
+
static readonly fields: FieldList;
|
|
11255
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommand;
|
|
11256
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommand;
|
|
11257
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommand;
|
|
11258
|
+
static equals(a: Scte35InsertCommand | PlainMessage<Scte35InsertCommand> | undefined, b: Scte35InsertCommand | PlainMessage<Scte35InsertCommand> | undefined): boolean;
|
|
11259
|
+
}
|
|
11260
|
+
/**
|
|
11261
|
+
* @generated from message norsk.api.media.Scte35InsertCommandMode
|
|
11262
|
+
*/
|
|
11263
|
+
export declare class Scte35InsertCommandMode extends Message<Scte35InsertCommandMode> {
|
|
11264
|
+
/**
|
|
11265
|
+
* @generated from oneof norsk.api.media.Scte35InsertCommandMode.message
|
|
11266
|
+
*/
|
|
11267
|
+
message: {
|
|
11268
|
+
/**
|
|
11269
|
+
* @generated from field: norsk.api.media.Scte35InsertCommandMode.InsertProgram insert_program = 1;
|
|
11270
|
+
*/
|
|
11271
|
+
value: Scte35InsertCommandMode_InsertProgram;
|
|
11272
|
+
case: "insertProgram";
|
|
11273
|
+
} | {
|
|
11274
|
+
/**
|
|
11275
|
+
* @generated from field: norsk.api.media.Scte35InsertCommandMode.InsertComponent insert_component = 2;
|
|
11276
|
+
*/
|
|
11277
|
+
value: Scte35InsertCommandMode_InsertComponent;
|
|
11278
|
+
case: "insertComponent";
|
|
11279
|
+
} | {
|
|
11280
|
+
case: undefined;
|
|
11281
|
+
value?: undefined;
|
|
11282
|
+
};
|
|
11283
|
+
constructor(data?: PartialMessage<Scte35InsertCommandMode>);
|
|
11284
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11285
|
+
static readonly typeName = "norsk.api.media.Scte35InsertCommandMode";
|
|
11286
|
+
static readonly fields: FieldList;
|
|
11287
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandMode;
|
|
11288
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode;
|
|
11289
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode;
|
|
11290
|
+
static equals(a: Scte35InsertCommandMode | PlainMessage<Scte35InsertCommandMode> | undefined, b: Scte35InsertCommandMode | PlainMessage<Scte35InsertCommandMode> | undefined): boolean;
|
|
11291
|
+
}
|
|
11292
|
+
/**
|
|
11293
|
+
* @generated from message norsk.api.media.Scte35InsertCommandMode.InsertProgram
|
|
11294
|
+
*/
|
|
11295
|
+
export declare class Scte35InsertCommandMode_InsertProgram extends Message<Scte35InsertCommandMode_InsertProgram> {
|
|
11296
|
+
/**
|
|
11297
|
+
* @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 1;
|
|
11298
|
+
*/
|
|
11299
|
+
spliceTime?: Scte35SpliceTime;
|
|
11300
|
+
constructor(data?: PartialMessage<Scte35InsertCommandMode_InsertProgram>);
|
|
11301
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11302
|
+
static readonly typeName = "norsk.api.media.Scte35InsertCommandMode.InsertProgram";
|
|
11303
|
+
static readonly fields: FieldList;
|
|
11304
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandMode_InsertProgram;
|
|
11305
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertProgram;
|
|
11306
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertProgram;
|
|
11307
|
+
static equals(a: Scte35InsertCommandMode_InsertProgram | PlainMessage<Scte35InsertCommandMode_InsertProgram> | undefined, b: Scte35InsertCommandMode_InsertProgram | PlainMessage<Scte35InsertCommandMode_InsertProgram> | undefined): boolean;
|
|
11308
|
+
}
|
|
11309
|
+
/**
|
|
11310
|
+
* @generated from message norsk.api.media.Scte35InsertCommandMode.InsertComponent
|
|
11311
|
+
*/
|
|
11312
|
+
export declare class Scte35InsertCommandMode_InsertComponent extends Message<Scte35InsertCommandMode_InsertComponent> {
|
|
11313
|
+
/**
|
|
11314
|
+
* @generated from field: repeated norsk.api.media.Scte35InsertCommandComponent components = 1;
|
|
11315
|
+
*/
|
|
11316
|
+
components: Scte35InsertCommandComponent[];
|
|
11317
|
+
constructor(data?: PartialMessage<Scte35InsertCommandMode_InsertComponent>);
|
|
11318
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11319
|
+
static readonly typeName = "norsk.api.media.Scte35InsertCommandMode.InsertComponent";
|
|
11320
|
+
static readonly fields: FieldList;
|
|
11321
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandMode_InsertComponent;
|
|
11322
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertComponent;
|
|
11323
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandMode_InsertComponent;
|
|
11324
|
+
static equals(a: Scte35InsertCommandMode_InsertComponent | PlainMessage<Scte35InsertCommandMode_InsertComponent> | undefined, b: Scte35InsertCommandMode_InsertComponent | PlainMessage<Scte35InsertCommandMode_InsertComponent> | undefined): boolean;
|
|
11325
|
+
}
|
|
11326
|
+
/**
|
|
11327
|
+
* @generated from message norsk.api.media.Scte35InsertCommandComponent
|
|
11328
|
+
*/
|
|
11329
|
+
export declare class Scte35InsertCommandComponent extends Message<Scte35InsertCommandComponent> {
|
|
11330
|
+
/**
|
|
11331
|
+
* @generated from field: uint32 component_tag = 1;
|
|
11332
|
+
*/
|
|
11333
|
+
componentTag: number;
|
|
11334
|
+
/**
|
|
11335
|
+
* @generated from field: norsk.api.media.Scte35SpliceTime splice_time = 2;
|
|
11336
|
+
*/
|
|
11337
|
+
spliceTime?: Scte35SpliceTime;
|
|
11338
|
+
constructor(data?: PartialMessage<Scte35InsertCommandComponent>);
|
|
11339
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11340
|
+
static readonly typeName = "norsk.api.media.Scte35InsertCommandComponent";
|
|
11341
|
+
static readonly fields: FieldList;
|
|
11342
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35InsertCommandComponent;
|
|
11343
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35InsertCommandComponent;
|
|
11344
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35InsertCommandComponent;
|
|
11345
|
+
static equals(a: Scte35InsertCommandComponent | PlainMessage<Scte35InsertCommandComponent> | undefined, b: Scte35InsertCommandComponent | PlainMessage<Scte35InsertCommandComponent> | undefined): boolean;
|
|
11346
|
+
}
|
|
11347
|
+
/**
|
|
11348
|
+
* @generated from message norsk.api.media.Scte35SpliceTime
|
|
11349
|
+
*/
|
|
11350
|
+
export declare class Scte35SpliceTime extends Message<Scte35SpliceTime> {
|
|
11351
|
+
/**
|
|
11352
|
+
* @generated from field: norsk.api.media.OptionalInt pts_time = 1;
|
|
11353
|
+
*/
|
|
11354
|
+
ptsTime?: OptionalInt;
|
|
11355
|
+
constructor(data?: PartialMessage<Scte35SpliceTime>);
|
|
11356
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11357
|
+
static readonly typeName = "norsk.api.media.Scte35SpliceTime";
|
|
11358
|
+
static readonly fields: FieldList;
|
|
11359
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceTime;
|
|
11360
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceTime;
|
|
11361
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceTime;
|
|
11362
|
+
static equals(a: Scte35SpliceTime | PlainMessage<Scte35SpliceTime> | undefined, b: Scte35SpliceTime | PlainMessage<Scte35SpliceTime> | undefined): boolean;
|
|
11363
|
+
}
|
|
11364
|
+
/**
|
|
11365
|
+
* @generated from message norsk.api.media.Scte35BreakDuration
|
|
11366
|
+
*/
|
|
11367
|
+
export declare class Scte35BreakDuration extends Message<Scte35BreakDuration> {
|
|
11368
|
+
/**
|
|
11369
|
+
* @generated from field: bool auto_return = 1;
|
|
11370
|
+
*/
|
|
11371
|
+
autoReturn: boolean;
|
|
11372
|
+
/**
|
|
11373
|
+
* @generated from field: uint64 duration = 2;
|
|
11374
|
+
*/
|
|
11375
|
+
duration: bigint;
|
|
11376
|
+
constructor(data?: PartialMessage<Scte35BreakDuration>);
|
|
11377
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11378
|
+
static readonly typeName = "norsk.api.media.Scte35BreakDuration";
|
|
11379
|
+
static readonly fields: FieldList;
|
|
11380
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35BreakDuration;
|
|
11381
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35BreakDuration;
|
|
11382
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35BreakDuration;
|
|
11383
|
+
static equals(a: Scte35BreakDuration | PlainMessage<Scte35BreakDuration> | undefined, b: Scte35BreakDuration | PlainMessage<Scte35BreakDuration> | undefined): boolean;
|
|
11384
|
+
}
|
|
11385
|
+
/**
|
|
11386
|
+
* @generated from message norsk.api.media.Scte35PrivateCommand
|
|
11387
|
+
*/
|
|
11388
|
+
export declare class Scte35PrivateCommand extends Message<Scte35PrivateCommand> {
|
|
11389
|
+
/**
|
|
11390
|
+
* @generated from field: uint32 identifier = 1;
|
|
11391
|
+
*/
|
|
11392
|
+
identifier: number;
|
|
11393
|
+
/**
|
|
11394
|
+
* @generated from field: bytes private_bytes = 2;
|
|
11395
|
+
*/
|
|
11396
|
+
privateBytes: Uint8Array;
|
|
11397
|
+
constructor(data?: PartialMessage<Scte35PrivateCommand>);
|
|
11398
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11399
|
+
static readonly typeName = "norsk.api.media.Scte35PrivateCommand";
|
|
11400
|
+
static readonly fields: FieldList;
|
|
11401
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35PrivateCommand;
|
|
11402
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35PrivateCommand;
|
|
11403
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35PrivateCommand;
|
|
11404
|
+
static equals(a: Scte35PrivateCommand | PlainMessage<Scte35PrivateCommand> | undefined, b: Scte35PrivateCommand | PlainMessage<Scte35PrivateCommand> | undefined): boolean;
|
|
11405
|
+
}
|
|
11406
|
+
/**
|
|
11407
|
+
* @generated from message norsk.api.media.Scte35ScheduleCommand
|
|
11408
|
+
*/
|
|
11409
|
+
export declare class Scte35ScheduleCommand extends Message<Scte35ScheduleCommand> {
|
|
11410
|
+
/**
|
|
11411
|
+
* @generated from field: repeated norsk.api.media.Scte35ScheduleItem items = 1;
|
|
11412
|
+
*/
|
|
11413
|
+
items: Scte35ScheduleItem[];
|
|
11414
|
+
constructor(data?: PartialMessage<Scte35ScheduleCommand>);
|
|
11415
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11416
|
+
static readonly typeName = "norsk.api.media.Scte35ScheduleCommand";
|
|
11417
|
+
static readonly fields: FieldList;
|
|
11418
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommand;
|
|
11419
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommand;
|
|
11420
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommand;
|
|
11421
|
+
static equals(a: Scte35ScheduleCommand | PlainMessage<Scte35ScheduleCommand> | undefined, b: Scte35ScheduleCommand | PlainMessage<Scte35ScheduleCommand> | undefined): boolean;
|
|
11422
|
+
}
|
|
11423
|
+
/**
|
|
11424
|
+
* @generated from message norsk.api.media.Scte35ScheduleItem
|
|
11425
|
+
*/
|
|
11426
|
+
export declare class Scte35ScheduleItem extends Message<Scte35ScheduleItem> {
|
|
11427
|
+
/**
|
|
11428
|
+
* @generated from field: uint32 splice_event_id = 1;
|
|
11429
|
+
*/
|
|
11430
|
+
spliceEventId: number;
|
|
11431
|
+
/**
|
|
11432
|
+
* @generated from field: bool splice_event_cancel_indicator = 2;
|
|
11433
|
+
*/
|
|
11434
|
+
spliceEventCancelIndicator: boolean;
|
|
11435
|
+
/**
|
|
11436
|
+
* @generated from field: bool out_of_network_indicator = 3;
|
|
11437
|
+
*/
|
|
11438
|
+
outOfNetworkIndicator: boolean;
|
|
11439
|
+
/**
|
|
11440
|
+
* @generated from field: norsk.api.media.Scte35ScheduleCommandMode mode = 4;
|
|
11441
|
+
*/
|
|
11442
|
+
mode?: Scte35ScheduleCommandMode;
|
|
11443
|
+
/**
|
|
11444
|
+
* @generated from field: norsk.api.media.Scte35BreakDuration break_duration = 5;
|
|
11445
|
+
*/
|
|
11446
|
+
breakDuration?: Scte35BreakDuration;
|
|
11447
|
+
/**
|
|
11448
|
+
* @generated from field: uint32 unique_program_id = 6;
|
|
11449
|
+
*/
|
|
11450
|
+
uniqueProgramId: number;
|
|
11451
|
+
/**
|
|
11452
|
+
* @generated from field: uint32 avail_num = 7;
|
|
11453
|
+
*/
|
|
11454
|
+
availNum: number;
|
|
11455
|
+
/**
|
|
11456
|
+
* @generated from field: uint32 avails_expected = 8;
|
|
11457
|
+
*/
|
|
11458
|
+
availsExpected: number;
|
|
11459
|
+
constructor(data?: PartialMessage<Scte35ScheduleItem>);
|
|
11460
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11461
|
+
static readonly typeName = "norsk.api.media.Scte35ScheduleItem";
|
|
11462
|
+
static readonly fields: FieldList;
|
|
11463
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleItem;
|
|
11464
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleItem;
|
|
11465
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleItem;
|
|
11466
|
+
static equals(a: Scte35ScheduleItem | PlainMessage<Scte35ScheduleItem> | undefined, b: Scte35ScheduleItem | PlainMessage<Scte35ScheduleItem> | undefined): boolean;
|
|
11467
|
+
}
|
|
11468
|
+
/**
|
|
11469
|
+
* @generated from message norsk.api.media.Scte35ScheduleCommandMode
|
|
11470
|
+
*/
|
|
11471
|
+
export declare class Scte35ScheduleCommandMode extends Message<Scte35ScheduleCommandMode> {
|
|
11472
|
+
/**
|
|
11473
|
+
* @generated from oneof norsk.api.media.Scte35ScheduleCommandMode.message
|
|
11474
|
+
*/
|
|
11475
|
+
message: {
|
|
11476
|
+
/**
|
|
11477
|
+
* @generated from field: norsk.api.media.Scte35ScheduleCommandMode.ScheduleProgram schedule_program = 1;
|
|
11478
|
+
*/
|
|
11479
|
+
value: Scte35ScheduleCommandMode_ScheduleProgram;
|
|
11480
|
+
case: "scheduleProgram";
|
|
11481
|
+
} | {
|
|
11482
|
+
/**
|
|
11483
|
+
* @generated from field: norsk.api.media.Scte35ScheduleCommandMode.ScheduleComponent schedule_component = 2;
|
|
11484
|
+
*/
|
|
11485
|
+
value: Scte35ScheduleCommandMode_ScheduleComponent;
|
|
11486
|
+
case: "scheduleComponent";
|
|
11487
|
+
} | {
|
|
11488
|
+
case: undefined;
|
|
11489
|
+
value?: undefined;
|
|
11490
|
+
};
|
|
11491
|
+
constructor(data?: PartialMessage<Scte35ScheduleCommandMode>);
|
|
11492
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11493
|
+
static readonly typeName = "norsk.api.media.Scte35ScheduleCommandMode";
|
|
11494
|
+
static readonly fields: FieldList;
|
|
11495
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandMode;
|
|
11496
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode;
|
|
11497
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode;
|
|
11498
|
+
static equals(a: Scte35ScheduleCommandMode | PlainMessage<Scte35ScheduleCommandMode> | undefined, b: Scte35ScheduleCommandMode | PlainMessage<Scte35ScheduleCommandMode> | undefined): boolean;
|
|
11499
|
+
}
|
|
11500
|
+
/**
|
|
11501
|
+
* @generated from message norsk.api.media.Scte35ScheduleCommandMode.ScheduleProgram
|
|
11502
|
+
*/
|
|
11503
|
+
export declare class Scte35ScheduleCommandMode_ScheduleProgram extends Message<Scte35ScheduleCommandMode_ScheduleProgram> {
|
|
11504
|
+
/**
|
|
11505
|
+
* @generated from field: uint32 utc_splice_time = 1;
|
|
11506
|
+
*/
|
|
11507
|
+
utcSpliceTime: number;
|
|
11508
|
+
constructor(data?: PartialMessage<Scte35ScheduleCommandMode_ScheduleProgram>);
|
|
11509
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11510
|
+
static readonly typeName = "norsk.api.media.Scte35ScheduleCommandMode.ScheduleProgram";
|
|
11511
|
+
static readonly fields: FieldList;
|
|
11512
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandMode_ScheduleProgram;
|
|
11513
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleProgram;
|
|
11514
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleProgram;
|
|
11515
|
+
static equals(a: Scte35ScheduleCommandMode_ScheduleProgram | PlainMessage<Scte35ScheduleCommandMode_ScheduleProgram> | undefined, b: Scte35ScheduleCommandMode_ScheduleProgram | PlainMessage<Scte35ScheduleCommandMode_ScheduleProgram> | undefined): boolean;
|
|
11516
|
+
}
|
|
11517
|
+
/**
|
|
11518
|
+
* @generated from message norsk.api.media.Scte35ScheduleCommandMode.ScheduleComponent
|
|
11519
|
+
*/
|
|
11520
|
+
export declare class Scte35ScheduleCommandMode_ScheduleComponent extends Message<Scte35ScheduleCommandMode_ScheduleComponent> {
|
|
11521
|
+
/**
|
|
11522
|
+
* @generated from field: repeated norsk.api.media.Scte35ScheduleCommandComponent components = 1;
|
|
11523
|
+
*/
|
|
11524
|
+
components: Scte35ScheduleCommandComponent[];
|
|
11525
|
+
constructor(data?: PartialMessage<Scte35ScheduleCommandMode_ScheduleComponent>);
|
|
11526
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11527
|
+
static readonly typeName = "norsk.api.media.Scte35ScheduleCommandMode.ScheduleComponent";
|
|
11528
|
+
static readonly fields: FieldList;
|
|
11529
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandMode_ScheduleComponent;
|
|
11530
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleComponent;
|
|
11531
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandMode_ScheduleComponent;
|
|
11532
|
+
static equals(a: Scte35ScheduleCommandMode_ScheduleComponent | PlainMessage<Scte35ScheduleCommandMode_ScheduleComponent> | undefined, b: Scte35ScheduleCommandMode_ScheduleComponent | PlainMessage<Scte35ScheduleCommandMode_ScheduleComponent> | undefined): boolean;
|
|
11533
|
+
}
|
|
11534
|
+
/**
|
|
11535
|
+
* @generated from message norsk.api.media.Scte35ScheduleCommandComponent
|
|
11536
|
+
*/
|
|
11537
|
+
export declare class Scte35ScheduleCommandComponent extends Message<Scte35ScheduleCommandComponent> {
|
|
11538
|
+
/**
|
|
11539
|
+
* @generated from field: uint32 component_tag = 1;
|
|
11540
|
+
*/
|
|
11541
|
+
componentTag: number;
|
|
11542
|
+
/**
|
|
11543
|
+
* @generated from field: uint32 utc_splice_time = 2;
|
|
11544
|
+
*/
|
|
11545
|
+
utcSpliceTime: number;
|
|
11546
|
+
constructor(data?: PartialMessage<Scte35ScheduleCommandComponent>);
|
|
11547
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11548
|
+
static readonly typeName = "norsk.api.media.Scte35ScheduleCommandComponent";
|
|
11549
|
+
static readonly fields: FieldList;
|
|
11550
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35ScheduleCommandComponent;
|
|
11551
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandComponent;
|
|
11552
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35ScheduleCommandComponent;
|
|
11553
|
+
static equals(a: Scte35ScheduleCommandComponent | PlainMessage<Scte35ScheduleCommandComponent> | undefined, b: Scte35ScheduleCommandComponent | PlainMessage<Scte35ScheduleCommandComponent> | undefined): boolean;
|
|
11554
|
+
}
|
|
11555
|
+
/**
|
|
11556
|
+
* @generated from message norsk.api.media.Scte35SpliceDescriptor
|
|
11557
|
+
*/
|
|
11558
|
+
export declare class Scte35SpliceDescriptor extends Message<Scte35SpliceDescriptor> {
|
|
11559
|
+
/**
|
|
11560
|
+
* @generated from oneof norsk.api.media.Scte35SpliceDescriptor.message
|
|
11561
|
+
*/
|
|
11562
|
+
message: {
|
|
11563
|
+
/**
|
|
11564
|
+
* @generated from field: norsk.api.media.Scte35AvailDescriptor avail = 1;
|
|
11565
|
+
*/
|
|
11566
|
+
value: Scte35AvailDescriptor;
|
|
11567
|
+
case: "avail";
|
|
11568
|
+
} | {
|
|
11569
|
+
/**
|
|
11570
|
+
* @generated from field: norsk.api.media.Scte35DtmfDescriptor dtmf = 2;
|
|
11571
|
+
*/
|
|
11572
|
+
value: Scte35DtmfDescriptor;
|
|
11573
|
+
case: "dtmf";
|
|
11574
|
+
} | {
|
|
11575
|
+
/**
|
|
11576
|
+
* @generated from field: norsk.api.media.Scte35SegmentationDescriptor segmentation = 3;
|
|
11577
|
+
*/
|
|
11578
|
+
value: Scte35SegmentationDescriptor;
|
|
11579
|
+
case: "segmentation";
|
|
11580
|
+
} | {
|
|
11581
|
+
/**
|
|
11582
|
+
* @generated from field: norsk.api.media.Scte35TimeDescriptor time = 4;
|
|
11583
|
+
*/
|
|
11584
|
+
value: Scte35TimeDescriptor;
|
|
11585
|
+
case: "time";
|
|
11586
|
+
} | {
|
|
11587
|
+
/**
|
|
11588
|
+
* @generated from field: norsk.api.media.Scte35AudioDescriptor audio = 5;
|
|
11589
|
+
*/
|
|
11590
|
+
value: Scte35AudioDescriptor;
|
|
11591
|
+
case: "audio";
|
|
11592
|
+
} | {
|
|
11593
|
+
/**
|
|
11594
|
+
* @generated from field: norsk.api.media.Scte35GenericDescriptor reserved_other = 6;
|
|
11595
|
+
*/
|
|
11596
|
+
value: Scte35GenericDescriptor;
|
|
11597
|
+
case: "reservedOther";
|
|
11598
|
+
} | {
|
|
11599
|
+
case: undefined;
|
|
11600
|
+
value?: undefined;
|
|
11601
|
+
};
|
|
11602
|
+
constructor(data?: PartialMessage<Scte35SpliceDescriptor>);
|
|
11603
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11604
|
+
static readonly typeName = "norsk.api.media.Scte35SpliceDescriptor";
|
|
11605
|
+
static readonly fields: FieldList;
|
|
11606
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SpliceDescriptor;
|
|
11607
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SpliceDescriptor;
|
|
11608
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SpliceDescriptor;
|
|
11609
|
+
static equals(a: Scte35SpliceDescriptor | PlainMessage<Scte35SpliceDescriptor> | undefined, b: Scte35SpliceDescriptor | PlainMessage<Scte35SpliceDescriptor> | undefined): boolean;
|
|
11610
|
+
}
|
|
11611
|
+
/**
|
|
11612
|
+
* @generated from message norsk.api.media.Scte35GenericDescriptor
|
|
11613
|
+
*/
|
|
11614
|
+
export declare class Scte35GenericDescriptor extends Message<Scte35GenericDescriptor> {
|
|
11615
|
+
/**
|
|
11616
|
+
* @generated from field: uint32 identifier = 1;
|
|
11617
|
+
*/
|
|
11618
|
+
identifier: number;
|
|
11619
|
+
/**
|
|
11620
|
+
* @generated from field: uint32 splice_descriptor_tag = 2;
|
|
11621
|
+
*/
|
|
11622
|
+
spliceDescriptorTag: number;
|
|
11623
|
+
/**
|
|
11624
|
+
* @generated from field: bytes private_bytes = 3;
|
|
11625
|
+
*/
|
|
11626
|
+
privateBytes: Uint8Array;
|
|
11627
|
+
constructor(data?: PartialMessage<Scte35GenericDescriptor>);
|
|
11628
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11629
|
+
static readonly typeName = "norsk.api.media.Scte35GenericDescriptor";
|
|
11630
|
+
static readonly fields: FieldList;
|
|
11631
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35GenericDescriptor;
|
|
11632
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35GenericDescriptor;
|
|
11633
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35GenericDescriptor;
|
|
11634
|
+
static equals(a: Scte35GenericDescriptor | PlainMessage<Scte35GenericDescriptor> | undefined, b: Scte35GenericDescriptor | PlainMessage<Scte35GenericDescriptor> | undefined): boolean;
|
|
11635
|
+
}
|
|
11636
|
+
/**
|
|
11637
|
+
* @generated from message norsk.api.media.Scte35AvailDescriptor
|
|
11638
|
+
*/
|
|
11639
|
+
export declare class Scte35AvailDescriptor extends Message<Scte35AvailDescriptor> {
|
|
11640
|
+
/**
|
|
11641
|
+
* @generated from field: uint32 provider_avail_id = 1;
|
|
11642
|
+
*/
|
|
11643
|
+
providerAvailId: number;
|
|
11644
|
+
constructor(data?: PartialMessage<Scte35AvailDescriptor>);
|
|
11645
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11646
|
+
static readonly typeName = "norsk.api.media.Scte35AvailDescriptor";
|
|
11647
|
+
static readonly fields: FieldList;
|
|
11648
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35AvailDescriptor;
|
|
11649
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35AvailDescriptor;
|
|
11650
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35AvailDescriptor;
|
|
11651
|
+
static equals(a: Scte35AvailDescriptor | PlainMessage<Scte35AvailDescriptor> | undefined, b: Scte35AvailDescriptor | PlainMessage<Scte35AvailDescriptor> | undefined): boolean;
|
|
11652
|
+
}
|
|
11653
|
+
/**
|
|
11654
|
+
* @generated from message norsk.api.media.Scte35DtmfDescriptor
|
|
11655
|
+
*/
|
|
11656
|
+
export declare class Scte35DtmfDescriptor extends Message<Scte35DtmfDescriptor> {
|
|
11657
|
+
/**
|
|
11658
|
+
* @generated from field: uint32 preroll = 1;
|
|
11659
|
+
*/
|
|
11660
|
+
preroll: number;
|
|
11661
|
+
/**
|
|
11662
|
+
* @generated from field: bytes dtmf_chars = 2;
|
|
11663
|
+
*/
|
|
11664
|
+
dtmfChars: Uint8Array;
|
|
11665
|
+
constructor(data?: PartialMessage<Scte35DtmfDescriptor>);
|
|
11666
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11667
|
+
static readonly typeName = "norsk.api.media.Scte35DtmfDescriptor";
|
|
11668
|
+
static readonly fields: FieldList;
|
|
11669
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35DtmfDescriptor;
|
|
11670
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35DtmfDescriptor;
|
|
11671
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35DtmfDescriptor;
|
|
11672
|
+
static equals(a: Scte35DtmfDescriptor | PlainMessage<Scte35DtmfDescriptor> | undefined, b: Scte35DtmfDescriptor | PlainMessage<Scte35DtmfDescriptor> | undefined): boolean;
|
|
11673
|
+
}
|
|
11674
|
+
/**
|
|
11675
|
+
* @generated from message norsk.api.media.Scte35TimeDescriptor
|
|
11676
|
+
*/
|
|
11677
|
+
export declare class Scte35TimeDescriptor extends Message<Scte35TimeDescriptor> {
|
|
11678
|
+
/**
|
|
11679
|
+
* @generated from field: uint64 tai_seconds = 1;
|
|
11680
|
+
*/
|
|
11681
|
+
taiSeconds: bigint;
|
|
11682
|
+
/**
|
|
11683
|
+
* @generated from field: uint32 tai_ns = 2;
|
|
11684
|
+
*/
|
|
11685
|
+
taiNs: number;
|
|
11686
|
+
/**
|
|
11687
|
+
* @generated from field: uint32 utc_offset = 3;
|
|
11688
|
+
*/
|
|
11689
|
+
utcOffset: number;
|
|
11690
|
+
constructor(data?: PartialMessage<Scte35TimeDescriptor>);
|
|
11691
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11692
|
+
static readonly typeName = "norsk.api.media.Scte35TimeDescriptor";
|
|
11693
|
+
static readonly fields: FieldList;
|
|
11694
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35TimeDescriptor;
|
|
11695
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35TimeDescriptor;
|
|
11696
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35TimeDescriptor;
|
|
11697
|
+
static equals(a: Scte35TimeDescriptor | PlainMessage<Scte35TimeDescriptor> | undefined, b: Scte35TimeDescriptor | PlainMessage<Scte35TimeDescriptor> | undefined): boolean;
|
|
11698
|
+
}
|
|
11699
|
+
/**
|
|
11700
|
+
* @generated from message norsk.api.media.Scte35AudioDescriptor
|
|
11701
|
+
*/
|
|
11702
|
+
export declare class Scte35AudioDescriptor extends Message<Scte35AudioDescriptor> {
|
|
11703
|
+
/**
|
|
11704
|
+
* @generated from field: repeated norsk.api.media.Scte35AudioComponent components = 1;
|
|
11705
|
+
*/
|
|
11706
|
+
components: Scte35AudioComponent[];
|
|
11707
|
+
constructor(data?: PartialMessage<Scte35AudioDescriptor>);
|
|
11708
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11709
|
+
static readonly typeName = "norsk.api.media.Scte35AudioDescriptor";
|
|
11710
|
+
static readonly fields: FieldList;
|
|
11711
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35AudioDescriptor;
|
|
11712
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35AudioDescriptor;
|
|
11713
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35AudioDescriptor;
|
|
11714
|
+
static equals(a: Scte35AudioDescriptor | PlainMessage<Scte35AudioDescriptor> | undefined, b: Scte35AudioDescriptor | PlainMessage<Scte35AudioDescriptor> | undefined): boolean;
|
|
11715
|
+
}
|
|
11716
|
+
/**
|
|
11717
|
+
* @generated from message norsk.api.media.Scte35AudioComponent
|
|
11718
|
+
*/
|
|
11719
|
+
export declare class Scte35AudioComponent extends Message<Scte35AudioComponent> {
|
|
11720
|
+
/**
|
|
11721
|
+
* @generated from field: uint32 component_tag = 1;
|
|
11722
|
+
*/
|
|
11723
|
+
componentTag: number;
|
|
11724
|
+
/**
|
|
11725
|
+
* @generated from field: uint32 iso_code = 2;
|
|
11726
|
+
*/
|
|
11727
|
+
isoCode: number;
|
|
11728
|
+
/**
|
|
11729
|
+
* @generated from field: uint32 bit_stream_mode = 3;
|
|
11730
|
+
*/
|
|
11731
|
+
bitStreamMode: number;
|
|
11732
|
+
/**
|
|
11733
|
+
* @generated from field: uint32 num_channels = 4;
|
|
11734
|
+
*/
|
|
11735
|
+
numChannels: number;
|
|
11736
|
+
/**
|
|
11737
|
+
* @generated from field: bool full_srvc_audio = 5;
|
|
11738
|
+
*/
|
|
11739
|
+
fullSrvcAudio: boolean;
|
|
11740
|
+
constructor(data?: PartialMessage<Scte35AudioComponent>);
|
|
11741
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11742
|
+
static readonly typeName = "norsk.api.media.Scte35AudioComponent";
|
|
11743
|
+
static readonly fields: FieldList;
|
|
11744
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35AudioComponent;
|
|
11745
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35AudioComponent;
|
|
11746
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35AudioComponent;
|
|
11747
|
+
static equals(a: Scte35AudioComponent | PlainMessage<Scte35AudioComponent> | undefined, b: Scte35AudioComponent | PlainMessage<Scte35AudioComponent> | undefined): boolean;
|
|
11748
|
+
}
|
|
11749
|
+
/**
|
|
11750
|
+
* @generated from message norsk.api.media.Scte35SegmentationDescriptor
|
|
11751
|
+
*/
|
|
11752
|
+
export declare class Scte35SegmentationDescriptor extends Message<Scte35SegmentationDescriptor> {
|
|
11753
|
+
/**
|
|
11754
|
+
* @generated from field: uint32 segmentation_event_id = 1;
|
|
11755
|
+
*/
|
|
11756
|
+
segmentationEventId: number;
|
|
11757
|
+
/**
|
|
11758
|
+
* @generated from field: bool segmentation_event_cancel_indicator = 2;
|
|
11759
|
+
*/
|
|
11760
|
+
segmentationEventCancelIndicator: boolean;
|
|
11761
|
+
/**
|
|
11762
|
+
* @generated from field: bool program_segmentation_flag = 3;
|
|
11763
|
+
*/
|
|
11764
|
+
programSegmentationFlag: boolean;
|
|
11765
|
+
/**
|
|
11766
|
+
* @generated from field: norsk.api.media.Scte35SegmentDeliveryRestrictions delivery_restrictions = 4;
|
|
11767
|
+
*/
|
|
11768
|
+
deliveryRestrictions?: Scte35SegmentDeliveryRestrictions;
|
|
11769
|
+
/**
|
|
11770
|
+
* @generated from field: repeated norsk.api.media.Scte35SegmentationComponent components = 5;
|
|
11771
|
+
*/
|
|
11772
|
+
components: Scte35SegmentationComponent[];
|
|
11773
|
+
/**
|
|
11774
|
+
* @generated from field: norsk.api.media.OptionalInt64 segmentation_duration = 6;
|
|
11775
|
+
*/
|
|
11776
|
+
segmentationDuration?: OptionalInt64;
|
|
11777
|
+
/**
|
|
11778
|
+
* @generated from field: uint32 segmentation_upid_type = 7;
|
|
11779
|
+
*/
|
|
11780
|
+
segmentationUpidType: number;
|
|
11781
|
+
/**
|
|
11782
|
+
* @generated from field: bytes segmentation_upid = 8;
|
|
11783
|
+
*/
|
|
11784
|
+
segmentationUpid: Uint8Array;
|
|
11785
|
+
/**
|
|
11786
|
+
* @generated from field: uint32 segmentation_type_id = 9;
|
|
11787
|
+
*/
|
|
11788
|
+
segmentationTypeId: number;
|
|
11789
|
+
/**
|
|
11790
|
+
* @generated from field: uint32 segment_num = 10;
|
|
11791
|
+
*/
|
|
11792
|
+
segmentNum: number;
|
|
11793
|
+
/**
|
|
11794
|
+
* @generated from field: uint32 segments_expected = 11;
|
|
11795
|
+
*/
|
|
11796
|
+
segmentsExpected: number;
|
|
11797
|
+
/**
|
|
11798
|
+
* @generated from field: norsk.api.media.OptionalInt sub_segment_num = 12;
|
|
11799
|
+
*/
|
|
11800
|
+
subSegmentNum?: OptionalInt;
|
|
11801
|
+
/**
|
|
11802
|
+
* @generated from field: norsk.api.media.OptionalInt sub_segments_expected = 13;
|
|
11803
|
+
*/
|
|
11804
|
+
subSegmentsExpected?: OptionalInt;
|
|
11805
|
+
constructor(data?: PartialMessage<Scte35SegmentationDescriptor>);
|
|
11806
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11807
|
+
static readonly typeName = "norsk.api.media.Scte35SegmentationDescriptor";
|
|
11808
|
+
static readonly fields: FieldList;
|
|
11809
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SegmentationDescriptor;
|
|
11810
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SegmentationDescriptor;
|
|
11811
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SegmentationDescriptor;
|
|
11812
|
+
static equals(a: Scte35SegmentationDescriptor | PlainMessage<Scte35SegmentationDescriptor> | undefined, b: Scte35SegmentationDescriptor | PlainMessage<Scte35SegmentationDescriptor> | undefined): boolean;
|
|
11813
|
+
}
|
|
11814
|
+
/**
|
|
11815
|
+
* @generated from message norsk.api.media.Scte35SegmentDeliveryRestrictions
|
|
11816
|
+
*/
|
|
11817
|
+
export declare class Scte35SegmentDeliveryRestrictions extends Message<Scte35SegmentDeliveryRestrictions> {
|
|
11818
|
+
/**
|
|
11819
|
+
* @generated from field: bool web_delivery_allowed_flag = 1;
|
|
11820
|
+
*/
|
|
11821
|
+
webDeliveryAllowedFlag: boolean;
|
|
11822
|
+
/**
|
|
11823
|
+
* @generated from field: bool no_regional_blackout_flag = 2;
|
|
11824
|
+
*/
|
|
11825
|
+
noRegionalBlackoutFlag: boolean;
|
|
11826
|
+
/**
|
|
11827
|
+
* @generated from field: bool archive_allowed_flag = 3;
|
|
11828
|
+
*/
|
|
11829
|
+
archiveAllowedFlag: boolean;
|
|
11830
|
+
/**
|
|
11831
|
+
* @generated from field: uint32 device_restrictions = 4;
|
|
11832
|
+
*/
|
|
11833
|
+
deviceRestrictions: number;
|
|
11834
|
+
constructor(data?: PartialMessage<Scte35SegmentDeliveryRestrictions>);
|
|
11835
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11836
|
+
static readonly typeName = "norsk.api.media.Scte35SegmentDeliveryRestrictions";
|
|
11837
|
+
static readonly fields: FieldList;
|
|
11838
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SegmentDeliveryRestrictions;
|
|
11839
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SegmentDeliveryRestrictions;
|
|
11840
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SegmentDeliveryRestrictions;
|
|
11841
|
+
static equals(a: Scte35SegmentDeliveryRestrictions | PlainMessage<Scte35SegmentDeliveryRestrictions> | undefined, b: Scte35SegmentDeliveryRestrictions | PlainMessage<Scte35SegmentDeliveryRestrictions> | undefined): boolean;
|
|
11842
|
+
}
|
|
11843
|
+
/**
|
|
11844
|
+
* @generated from message norsk.api.media.Scte35SegmentationComponent
|
|
11845
|
+
*/
|
|
11846
|
+
export declare class Scte35SegmentationComponent extends Message<Scte35SegmentationComponent> {
|
|
11847
|
+
/**
|
|
11848
|
+
* @generated from field: uint32 component_tag = 1;
|
|
11849
|
+
*/
|
|
11850
|
+
componentTag: number;
|
|
11851
|
+
/**
|
|
11852
|
+
* @generated from field: uint64 pts_offset = 2;
|
|
11853
|
+
*/
|
|
11854
|
+
ptsOffset: bigint;
|
|
11855
|
+
constructor(data?: PartialMessage<Scte35SegmentationComponent>);
|
|
11856
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
11857
|
+
static readonly typeName = "norsk.api.media.Scte35SegmentationComponent";
|
|
11858
|
+
static readonly fields: FieldList;
|
|
11859
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Scte35SegmentationComponent;
|
|
11860
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Scte35SegmentationComponent;
|
|
11861
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Scte35SegmentationComponent;
|
|
11862
|
+
static equals(a: Scte35SegmentationComponent | PlainMessage<Scte35SegmentationComponent> | undefined, b: Scte35SegmentationComponent | PlainMessage<Scte35SegmentationComponent> | undefined): boolean;
|
|
11863
|
+
}
|
|
10183
11864
|
/**
|
|
10184
11865
|
* ////////////////////////////////////////////////////////////////////////////
|
|
10185
11866
|
* Hardware
|