@norskvideo/norsk-api 1.0.375 → 1.0.376
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/media_pb.d.ts +46 -1
- package/lib/media_pb.js +57 -3
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +81 -2
- package/package.json +1 -1
package/lib/media_pb.d.ts
CHANGED
|
@@ -4795,7 +4795,11 @@ export declare class AudioSignalGeneratorConfiguration extends Message<AudioSign
|
|
|
4795
4795
|
*/
|
|
4796
4796
|
sampleFormat: SampleFormat;
|
|
4797
4797
|
/**
|
|
4798
|
-
* @generated from field: norsk.api.
|
|
4798
|
+
* @generated from field: norsk.api.common.OptionalString language = 6;
|
|
4799
|
+
*/
|
|
4800
|
+
language?: OptionalString;
|
|
4801
|
+
/**
|
|
4802
|
+
* @generated from field: norsk.api.media.Wave wave = 7;
|
|
4799
4803
|
*/
|
|
4800
4804
|
wave?: Wave;
|
|
4801
4805
|
constructor(data?: PartialMessage<AudioSignalGeneratorConfiguration>);
|
|
@@ -6953,6 +6957,10 @@ export declare class HlsTsVideoConfiguration extends Message<HlsTsVideoConfigura
|
|
|
6953
6957
|
* @generated from field: bool pdt_every_segment = 10;
|
|
6954
6958
|
*/
|
|
6955
6959
|
pdtEverySegment: boolean;
|
|
6960
|
+
/**
|
|
6961
|
+
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 11;
|
|
6962
|
+
*/
|
|
6963
|
+
metrics: NodeMetricsMode;
|
|
6956
6964
|
constructor(data?: PartialMessage<HlsTsVideoConfiguration>);
|
|
6957
6965
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
6958
6966
|
static readonly typeName = "norsk.api.media.HlsTsVideoConfiguration";
|
|
@@ -7155,6 +7163,10 @@ export declare class HlsTsAudioConfiguration extends Message<HlsTsAudioConfigura
|
|
|
7155
7163
|
* @generated from field: bool pdt_every_segment = 10;
|
|
7156
7164
|
*/
|
|
7157
7165
|
pdtEverySegment: boolean;
|
|
7166
|
+
/**
|
|
7167
|
+
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 11;
|
|
7168
|
+
*/
|
|
7169
|
+
metrics: NodeMetricsMode;
|
|
7158
7170
|
constructor(data?: PartialMessage<HlsTsAudioConfiguration>);
|
|
7159
7171
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
7160
7172
|
static readonly typeName = "norsk.api.media.HlsTsAudioConfiguration";
|
|
@@ -12153,6 +12165,10 @@ export declare class StreamKeyOverrideConfiguration extends Message<StreamKeyOve
|
|
|
12153
12165
|
* @generated from field: norsk.api.media.StreamKey stream_key = 2;
|
|
12154
12166
|
*/
|
|
12155
12167
|
streamKey?: StreamKey;
|
|
12168
|
+
/**
|
|
12169
|
+
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 3;
|
|
12170
|
+
*/
|
|
12171
|
+
metrics: NodeMetricsMode;
|
|
12156
12172
|
constructor(data?: PartialMessage<StreamKeyOverrideConfiguration>);
|
|
12157
12173
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
12158
12174
|
static readonly typeName = "norsk.api.media.StreamKeyOverrideConfiguration";
|
|
@@ -16336,6 +16352,27 @@ export declare class SingleCut extends Message<SingleCut> {
|
|
|
16336
16352
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SingleCut;
|
|
16337
16353
|
static equals(a: SingleCut | PlainMessage<SingleCut> | undefined, b: SingleCut | PlainMessage<SingleCut> | undefined): boolean;
|
|
16338
16354
|
}
|
|
16355
|
+
/**
|
|
16356
|
+
* @generated from message norsk.api.media.LanguageMapping
|
|
16357
|
+
*/
|
|
16358
|
+
export declare class LanguageMapping extends Message<LanguageMapping> {
|
|
16359
|
+
/**
|
|
16360
|
+
* @generated from field: norsk.api.media.StreamKey stream_key = 1;
|
|
16361
|
+
*/
|
|
16362
|
+
streamKey?: StreamKey;
|
|
16363
|
+
/**
|
|
16364
|
+
* @generated from field: norsk.api.common.OptionalString language = 2;
|
|
16365
|
+
*/
|
|
16366
|
+
language?: OptionalString;
|
|
16367
|
+
constructor(data?: PartialMessage<LanguageMapping>);
|
|
16368
|
+
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16369
|
+
static readonly typeName = "norsk.api.media.LanguageMapping";
|
|
16370
|
+
static readonly fields: FieldList;
|
|
16371
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LanguageMapping;
|
|
16372
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LanguageMapping;
|
|
16373
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LanguageMapping;
|
|
16374
|
+
static equals(a: LanguageMapping | PlainMessage<LanguageMapping> | undefined, b: LanguageMapping | PlainMessage<LanguageMapping> | undefined): boolean;
|
|
16375
|
+
}
|
|
16339
16376
|
/**
|
|
16340
16377
|
* @generated from message norsk.api.media.StartMediaStoreCut
|
|
16341
16378
|
*/
|
|
@@ -16356,6 +16393,14 @@ export declare class StartMediaStoreCut extends Message<StartMediaStoreCut> {
|
|
|
16356
16393
|
* @generated from field: norsk.api.media.StartMediaStoreCut.FileFormat file_format = 4;
|
|
16357
16394
|
*/
|
|
16358
16395
|
fileFormat: StartMediaStoreCut_FileFormat;
|
|
16396
|
+
/**
|
|
16397
|
+
* @generated from field: repeated norsk.api.media.LanguageMapping language_mapping = 5;
|
|
16398
|
+
*/
|
|
16399
|
+
languageMapping: LanguageMapping[];
|
|
16400
|
+
/**
|
|
16401
|
+
* @generated from field: bool fast_start = 6;
|
|
16402
|
+
*/
|
|
16403
|
+
fastStart: boolean;
|
|
16359
16404
|
constructor(data?: PartialMessage<StartMediaStoreCut>);
|
|
16360
16405
|
static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime.js").ProtoRuntime;
|
|
16361
16406
|
static readonly typeName = "norsk.api.media.StartMediaStoreCut";
|
package/lib/media_pb.js
CHANGED
|
@@ -13,8 +13,8 @@ exports.NvidiaHevc_NvidiaHevcProfile = exports.NvidiaHevc = exports.NvidiaH264_N
|
|
|
13
13
|
exports.StreamMetadataOverrideUpdateConfiguration = exports.StreamMetadataOverrideConfiguration = exports.StreamKeyOverrideEvent = exports.StreamKeyOverrideMessage = exports.StreamKeyOverrideConfiguration = exports.StreamTimestampNudgeEvent = exports.StreamTimestampNudgeMessage = exports.StreamTimestampNudgeConfiguration = exports.StreamChaosMonkeyEvent = exports.StreamChaosMonkeyMessage = exports.StreamChaosMonkeyConfiguration = exports.VideoTransformEvent = exports.VideoTransformMessage = exports.VideoTransformConfiguration = exports.SoftwareDeinterlace_SoftwareDeinterlaceAlgorithm = exports.SoftwareDeinterlace = exports.NoDeinterlace = exports.AmdMA35DHevc_AmdMA35DHevcTier = exports.AmdMA35DHevc_AmdMA35DHevcProfile = exports.AmdMA35DHevc = exports.AmdMA35DH264_AmdMA35DH264Profile = exports.AmdMA35DH264 = exports.AmdMA35DEncodeCommon_ContentAdaptive = exports.AmdMA35DEncodeCommon_ConstrainedVBR = exports.AmdMA35DEncodeCommon_VBR = exports.AmdMA35DEncodeCommon_CBR = exports.AmdMA35DEncodeCommon_ConstQp = exports.AmdMA35DEncodeCommon_TrinaryFlag = exports.AmdMA35DEncodeCommon_TuneMetrics = exports.AmdMA35DEncodeCommon_QpMode = exports.AmdMA35DEncodeCommon_Preset = exports.AmdMA35DEncodeCommon = exports.AmdMA35DLoad_ComputeUnitLoad = exports.AmdMA35DLoad = exports.AmdU30Hevc_AmdU30HevcTier = exports.AmdU30Hevc_AmdU30HevcProfile = exports.AmdU30Hevc = exports.AmdU30H264_AmdU30H264Profile = exports.AmdU30H264 = exports.LoganHevc_LoganHevcTier = exports.LoganHevc_LoganHevcProfile = exports.LoganHevc = exports.LoganH264_LoganH264Profile = exports.LoganH264 = exports.QuadraHevc_QuadraHevcTier = exports.QuadraHevc_QuadraHevcProfile = exports.QuadraHevc = exports.QuadraH264_QuadraH264Profile = exports.QuadraH264 = exports.NvidiaHevc_NvidiaHevcTier = void 0;
|
|
14
14
|
exports.StreamTimestampReportEvent = exports.StreamTimestampReport = exports.StreamTimestampReportMessage = exports.StreamTimestampReportConfiguration = exports.AudioMeasureLevelsEvent = exports.AudioMeasureLevels = exports.ChannelLevels = exports.Db = exports.AudioMeasureLevelsMessage = exports.AudioMeasureLevelsConfiguration = exports.StreamStatisticsEvent = exports.StreamStatisticsMessage = exports.StreamStatisticsConfiguration = exports.StreamSwitchHardEvent = exports.StreamSwitchHardMessage = exports.StreamSwitchHardSwitch = exports.StreamSwitchHardConfiguration = exports.StreamSwitchSmoothEvent = exports.StreamSwitchTransitionComplete = exports.StreamSwitchSmoothSwitchError = exports.StreamSwitchSmoothMessage = exports.StreamSwitchSmoothSwitch = exports.StreamSwitchSmoothConfiguration_Alignment = exports.StreamSwitchSmoothConfiguration_StreamSwitchSmoothHardwareAcceleration = exports.StreamSwitchSmoothConfiguration = exports.SubtitleConvertEvent = exports.SubtitleConvertMessage = exports.SubtitleConvertConfiguration = exports.Cta708EncodeConfiguration = exports.Cta608EncodeConfiguration_Cta608EncodeStyle = exports.Cta608EncodeConfiguration = exports.WebVttEncodeConfiguration = exports.AudioEncodeEvent = exports.AudioEncodeMessage = exports.AudioEncodeConfiguration = exports.OpusEncodeConfiguration = exports.AacEncodeConfiguration_AacEncapsulation = exports.AacEncodeConfiguration_AacProfile = exports.AacEncodeConfiguration = exports.StreamAlignEvent = exports.StreamAlignMessage = exports.StreamAlignConfiguration = exports.StreamSyncEvent = exports.StreamSyncMessage = exports.StreamSyncConfiguration = exports.JitterBufferEvent = exports.JitterBufferMessage = exports.JitterBufferConfiguration = exports.StreamMetadataOverrideEvent = exports.StreamMetadataOverrideMessage = void 0;
|
|
15
15
|
exports.Scte35ScheduleCommand = exports.Scte35PrivateCommand = exports.Scte35BreakDuration = exports.Scte35SpliceTime = exports.Scte35InsertCommandComponent = exports.Scte35InsertCommandMode_InsertComponent = exports.Scte35InsertCommandMode_InsertProgram = exports.Scte35InsertCommandMode = exports.Scte35InsertCommand = exports.Scte35TimeSignalCommand = exports.Scte35SpliceCommand = exports.Scte35SpliceInfoSection = exports.StreamConditionEvent = exports.StreamConditionMessage = exports.StreamConditionSpliceIn = exports.StreamConditionSpliceOut = exports.StreamConditionConfiguration = exports.VancType2AncillaryId = exports.Smpte2038Message = exports.Scte35Event = exports.AncillaryEvent = exports.MetadataMessage = exports.AncillaryMessage = exports.AncillaryConfiguration = exports.SubtitleTranslateAwsEvent = exports.SubtitleTranslateAwsMessage = exports.SubtitleTranslateAwsConfiguration = exports.AudioTranscribeWhisperEvent = exports.AudioTranscribeWhisperMessage = exports.AudioTranscribeWhisperConfiguration_SamplingStrategy = exports.AudioTranscribeWhisperConfiguration = exports.AudioTranscribeAzureEvent = exports.AudioTranscribeAzureMessage = exports.AudioTranscribeAzureConfiguration_ProfanityOption = exports.AudioTranscribeAzureConfiguration = exports.AudioTranscribeAwsEvent = exports.AudioTranscribeAwsMessage = exports.AudioTranscribeAwsConfiguration = exports.RtpInputEvent = exports.RtpInputMessage = exports.RtpInputConfiguration = exports.RtpStream = exports.RtpHEVC = exports.RtpH264 = exports.RtpMpeg4GenericAacHbr = exports.RtpEac3 = exports.RtpLinearPcm_BitDepth = exports.RtpLinearPcm = exports.Interface_StandardInterface = exports.Interface = void 0;
|
|
16
|
-
exports.
|
|
17
|
-
exports.SubscriptionChannelResponse = exports.SubscriptionChannelMessage = exports.NorskStatusEvent = exports.Hello = exports.SourceSubscriptionError_UnsupportedConversion = exports.SourceSubscriptionError_NoSubscriberPin = exports.SourceSubscriptionError_SourceStream = exports.SourceSubscriptionError = exports.SubscriptionError_SourceSubscriptionErrors = exports.SubscriptionError_MultipleStreams = exports.SubscriptionError = exports.SubscriptionResponse = exports.Subscription = exports.SubscribeSource = exports.Hardware = exports.MA35DCard = exports.MA35DVersionInfo = exports.MA35DDeviceInfo = exports.DeckLinkDisplayModes = exports.DeckLinkDisplayMode = exports.DeckLinkCard = exports.CpuTopology = exports.NumaNode = exports.Processor = void 0;
|
|
16
|
+
exports.LogicalCpuId = exports.MoqOutputEvent = exports.MoqOutputMessage = exports.MoqOutputConfiguration = exports.MediaStorePlayerEvent = exports.MediaStorePlayerMessage = exports.MediaStorePlayerConfiguration = exports.MediaStoreCutEvent = exports.MediaStoreAssetEvent = exports.MediaStoreAssetImportComplete = exports.MediaStoreAssetSettings = exports.MediaStoreAssetSource = exports.MediaStoreAssetFile = exports.MediaStoreAssetFileWithHash = exports.MediaStoreSnapshotEvent = exports.MediaStoreSnapshotMessage = exports.MediaStoreRecorderEvent = exports.MediaStoreRecorderMessage = exports.MediaStoreCutComplete = exports.Progress = exports.MediaStoreCutRequest = exports.CancelMediaStoreCut = exports.StartMediaStoreCut_FileFormat = exports.StartMediaStoreCut = exports.LanguageMapping = exports.SingleCut = exports.StreamSelection = exports.MediaStoreSnapshotConfiguration = exports.MediaStoreRecorderConfiguration = exports.MediaStoreExpiry = exports.MediaStoreMetadataResponse = exports.MediaStoreMetadataRequest = exports.MediaStoreSession = exports.MediaStoreStream = exports.MediaStoreStreamVersion = exports.Scte35SegmentationComponent = exports.Scte35SegmentDeliveryRestrictions = exports.Scte35SegmentationDescriptor = exports.Scte35AudioComponent = exports.Scte35AudioDescriptor = exports.Scte35TimeDescriptor = exports.Scte35DtmfDescriptor = exports.Scte35AvailDescriptor = exports.Scte35GenericDescriptor = exports.Scte35SpliceDescriptor = exports.Scte35ScheduleCommandComponent = exports.Scte35ScheduleCommandMode_ScheduleComponent = exports.Scte35ScheduleCommandMode_ScheduleProgram = exports.Scte35ScheduleCommandMode = exports.Scte35ScheduleItem = void 0;
|
|
17
|
+
exports.SubscriptionChannelResponse = exports.SubscriptionChannelMessage = exports.NorskStatusEvent = exports.Hello = exports.SourceSubscriptionError_UnsupportedConversion = exports.SourceSubscriptionError_NoSubscriberPin = exports.SourceSubscriptionError_SourceStream = exports.SourceSubscriptionError = exports.SubscriptionError_SourceSubscriptionErrors = exports.SubscriptionError_MultipleStreams = exports.SubscriptionError = exports.SubscriptionResponse = exports.Subscription = exports.SubscribeSource = exports.Hardware = exports.MA35DCard = exports.MA35DVersionInfo = exports.MA35DDeviceInfo = exports.DeckLinkDisplayModes = exports.DeckLinkDisplayMode = exports.DeckLinkCard = exports.CpuTopology = exports.NumaNode = exports.Processor = exports.Core = void 0;
|
|
18
18
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
19
19
|
const common_pb_js_1 = require("./shared/common_pb.js");
|
|
20
20
|
/**
|
|
@@ -5981,7 +5981,8 @@ AudioSignalGeneratorConfiguration.fields = protobuf_1.proto3.util.newFieldList((
|
|
|
5981
5981
|
{ no: 3, name: "channelLayout", kind: "message", T: ChannelLayout },
|
|
5982
5982
|
{ no: 4, name: "sampleRate", kind: "enum", T: protobuf_1.proto3.getEnumType(SampleRate) },
|
|
5983
5983
|
{ no: 5, name: "sampleFormat", kind: "enum", T: protobuf_1.proto3.getEnumType(SampleFormat) },
|
|
5984
|
-
{ no: 6, name: "
|
|
5984
|
+
{ no: 6, name: "language", kind: "message", T: common_pb_js_1.OptionalString },
|
|
5985
|
+
{ no: 7, name: "wave", kind: "message", T: Wave },
|
|
5985
5986
|
]);
|
|
5986
5987
|
/**
|
|
5987
5988
|
* @generated from message norsk.api.media.AudioSignalGeneratorEvent
|
|
@@ -8319,6 +8320,10 @@ class HlsTsVideoConfiguration extends protobuf_1.Message {
|
|
|
8319
8320
|
* @generated from field: bool pdt_every_segment = 10;
|
|
8320
8321
|
*/
|
|
8321
8322
|
this.pdtEverySegment = false;
|
|
8323
|
+
/**
|
|
8324
|
+
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 11;
|
|
8325
|
+
*/
|
|
8326
|
+
this.metrics = NodeMetricsMode.NODE_METRICS_ENABLE;
|
|
8322
8327
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
8323
8328
|
}
|
|
8324
8329
|
static fromBinary(bytes, options) {
|
|
@@ -8347,6 +8352,7 @@ HlsTsVideoConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
8347
8352
|
{ no: 8, name: "bitrate", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
8348
8353
|
{ no: 9, name: "name", kind: "message", T: common_pb_js_1.OptionalString },
|
|
8349
8354
|
{ no: 10, name: "pdt_every_segment", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
8355
|
+
{ no: 11, name: "metrics", kind: "enum", T: protobuf_1.proto3.getEnumType(NodeMetricsMode) },
|
|
8350
8356
|
]);
|
|
8351
8357
|
/**
|
|
8352
8358
|
* @generated from message norsk.api.media.HlsTsVideoMessage
|
|
@@ -8519,6 +8525,10 @@ class HlsTsAudioConfiguration extends protobuf_1.Message {
|
|
|
8519
8525
|
* @generated from field: bool pdt_every_segment = 10;
|
|
8520
8526
|
*/
|
|
8521
8527
|
this.pdtEverySegment = false;
|
|
8528
|
+
/**
|
|
8529
|
+
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 11;
|
|
8530
|
+
*/
|
|
8531
|
+
this.metrics = NodeMetricsMode.NODE_METRICS_ENABLE;
|
|
8522
8532
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
8523
8533
|
}
|
|
8524
8534
|
static fromBinary(bytes, options) {
|
|
@@ -8547,6 +8557,7 @@ HlsTsAudioConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
8547
8557
|
{ no: 8, name: "bitrate", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
8548
8558
|
{ no: 9, name: "name", kind: "message", T: common_pb_js_1.OptionalString },
|
|
8549
8559
|
{ no: 10, name: "pdt_every_segment", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
8560
|
+
{ no: 11, name: "metrics", kind: "enum", T: protobuf_1.proto3.getEnumType(NodeMetricsMode) },
|
|
8550
8561
|
]);
|
|
8551
8562
|
/**
|
|
8552
8563
|
* @generated from message norsk.api.media.HlsTsAudioMessage
|
|
@@ -13615,6 +13626,10 @@ StreamTimestampNudgeEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
13615
13626
|
class StreamKeyOverrideConfiguration extends protobuf_1.Message {
|
|
13616
13627
|
constructor(data) {
|
|
13617
13628
|
super();
|
|
13629
|
+
/**
|
|
13630
|
+
* @generated from field: norsk.api.media.NodeMetricsMode metrics = 3;
|
|
13631
|
+
*/
|
|
13632
|
+
this.metrics = NodeMetricsMode.NODE_METRICS_ENABLE;
|
|
13618
13633
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
13619
13634
|
}
|
|
13620
13635
|
static fromBinary(bytes, options) {
|
|
@@ -13636,6 +13651,7 @@ StreamKeyOverrideConfiguration.typeName = "norsk.api.media.StreamKeyOverrideConf
|
|
|
13636
13651
|
StreamKeyOverrideConfiguration.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
13637
13652
|
{ no: 1, name: "id", kind: "message", T: MediaNodeId },
|
|
13638
13653
|
{ no: 2, name: "stream_key", kind: "message", T: StreamKey },
|
|
13654
|
+
{ no: 3, name: "metrics", kind: "enum", T: protobuf_1.proto3.getEnumType(NodeMetricsMode) },
|
|
13639
13655
|
]);
|
|
13640
13656
|
/**
|
|
13641
13657
|
* @generated from message norsk.api.media.StreamKeyOverrideMessage
|
|
@@ -18221,6 +18237,34 @@ SingleCut.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
18221
18237
|
{ no: 6, name: "session_num", kind: "message", T: common_pb_js_1.OptionalInt },
|
|
18222
18238
|
{ no: 7, name: "repeat_count", kind: "message", T: common_pb_js_1.UInt32OrInfinity },
|
|
18223
18239
|
]);
|
|
18240
|
+
/**
|
|
18241
|
+
* @generated from message norsk.api.media.LanguageMapping
|
|
18242
|
+
*/
|
|
18243
|
+
class LanguageMapping extends protobuf_1.Message {
|
|
18244
|
+
constructor(data) {
|
|
18245
|
+
super();
|
|
18246
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
18247
|
+
}
|
|
18248
|
+
static fromBinary(bytes, options) {
|
|
18249
|
+
return new LanguageMapping().fromBinary(bytes, options);
|
|
18250
|
+
}
|
|
18251
|
+
static fromJson(jsonValue, options) {
|
|
18252
|
+
return new LanguageMapping().fromJson(jsonValue, options);
|
|
18253
|
+
}
|
|
18254
|
+
static fromJsonString(jsonString, options) {
|
|
18255
|
+
return new LanguageMapping().fromJsonString(jsonString, options);
|
|
18256
|
+
}
|
|
18257
|
+
static equals(a, b) {
|
|
18258
|
+
return protobuf_1.proto3.util.equals(LanguageMapping, a, b);
|
|
18259
|
+
}
|
|
18260
|
+
}
|
|
18261
|
+
exports.LanguageMapping = LanguageMapping;
|
|
18262
|
+
LanguageMapping.runtime = protobuf_1.proto3;
|
|
18263
|
+
LanguageMapping.typeName = "norsk.api.media.LanguageMapping";
|
|
18264
|
+
LanguageMapping.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
18265
|
+
{ no: 1, name: "stream_key", kind: "message", T: StreamKey },
|
|
18266
|
+
{ no: 2, name: "language", kind: "message", T: common_pb_js_1.OptionalString },
|
|
18267
|
+
]);
|
|
18224
18268
|
/**
|
|
18225
18269
|
* @generated from message norsk.api.media.StartMediaStoreCut
|
|
18226
18270
|
*/
|
|
@@ -18243,6 +18287,14 @@ class StartMediaStoreCut extends protobuf_1.Message {
|
|
|
18243
18287
|
* @generated from field: norsk.api.media.StartMediaStoreCut.FileFormat file_format = 4;
|
|
18244
18288
|
*/
|
|
18245
18289
|
this.fileFormat = StartMediaStoreCut_FileFormat.CUT_MP4;
|
|
18290
|
+
/**
|
|
18291
|
+
* @generated from field: repeated norsk.api.media.LanguageMapping language_mapping = 5;
|
|
18292
|
+
*/
|
|
18293
|
+
this.languageMapping = [];
|
|
18294
|
+
/**
|
|
18295
|
+
* @generated from field: bool fast_start = 6;
|
|
18296
|
+
*/
|
|
18297
|
+
this.fastStart = false;
|
|
18246
18298
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
18247
18299
|
}
|
|
18248
18300
|
static fromBinary(bytes, options) {
|
|
@@ -18266,6 +18318,8 @@ StartMediaStoreCut.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
18266
18318
|
{ no: 2, name: "cuts", kind: "message", T: SingleCut, repeated: true },
|
|
18267
18319
|
{ no: 3, name: "file_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
18268
18320
|
{ no: 4, name: "file_format", kind: "enum", T: protobuf_1.proto3.getEnumType(StartMediaStoreCut_FileFormat) },
|
|
18321
|
+
{ no: 5, name: "language_mapping", kind: "message", T: LanguageMapping, repeated: true },
|
|
18322
|
+
{ no: 6, name: "fast_start", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
18269
18323
|
]);
|
|
18270
18324
|
/**
|
|
18271
18325
|
* @generated from enum norsk.api.media.StartMediaStoreCut.FileFormat
|