@norskvideo/norsk-api 1.0.391 → 1.0.392
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 +10 -9
- package/lib/media_grpc_pb.js +21 -19
- package/lib/media_pb.d.ts +245 -13
- package/lib/media_pb.js +299 -14
- package/lib/media_pb.js.map +1 -1
- package/lib/media_pb.ts +419 -14
- package/package.json +1 -1
package/lib/media_pb.ts
CHANGED
|
@@ -2933,7 +2933,8 @@ export class Context extends Message<Context> {
|
|
|
2933
2933
|
* .
|
|
2934
2934
|
* Once received, your code **must** acknowledge the context change
|
|
2935
2935
|
* with a call through a subscription channel `Media.createSubscriptionChannel`,
|
|
2936
|
-
* passing in the `blockingCallRef` to an 'unblock' message; note that if using
|
|
2936
|
+
* passing in the `blockingCallRef` to an 'unblock' message; note that if using
|
|
2937
|
+
* the
|
|
2937
2938
|
* JavaScript SDK then this is automatically handled.
|
|
2938
2939
|
*
|
|
2939
2940
|
* @generated from message norsk.api.media.MultipleContext
|
|
@@ -8585,10 +8586,19 @@ export class FileWavOutputEvent extends Message<FileWavOutputEvent> {
|
|
|
8585
8586
|
*/
|
|
8586
8587
|
export class SineWave extends Message<SineWave> {
|
|
8587
8588
|
/**
|
|
8589
|
+
* Frequency of the wave
|
|
8590
|
+
*
|
|
8588
8591
|
* @generated from field: float freq = 1;
|
|
8589
8592
|
*/
|
|
8590
8593
|
freq = 0;
|
|
8591
8594
|
|
|
8595
|
+
/**
|
|
8596
|
+
* Initial level of the wave (default 0 being a full-scale wave). A negative number or 0.
|
|
8597
|
+
*
|
|
8598
|
+
* @generated from field: float db = 2;
|
|
8599
|
+
*/
|
|
8600
|
+
db = 0;
|
|
8601
|
+
|
|
8592
8602
|
constructor(data?: PartialMessage<SineWave>) {
|
|
8593
8603
|
super();
|
|
8594
8604
|
proto3.util.initPartial(data, this);
|
|
@@ -8598,6 +8608,7 @@ export class SineWave extends Message<SineWave> {
|
|
|
8598
8608
|
static readonly typeName = "norsk.api.media.SineWave";
|
|
8599
8609
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8600
8610
|
{ no: 1, name: "freq", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
8611
|
+
{ no: 2, name: "db", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
8601
8612
|
]);
|
|
8602
8613
|
|
|
8603
8614
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SineWave {
|
|
@@ -8618,6 +8629,193 @@ export class SineWave extends Message<SineWave> {
|
|
|
8618
8629
|
}
|
|
8619
8630
|
|
|
8620
8631
|
/**
|
|
8632
|
+
* @generated from message norsk.api.media.Silence
|
|
8633
|
+
*/
|
|
8634
|
+
export class Silence extends Message<Silence> {
|
|
8635
|
+
constructor(data?: PartialMessage<Silence>) {
|
|
8636
|
+
super();
|
|
8637
|
+
proto3.util.initPartial(data, this);
|
|
8638
|
+
}
|
|
8639
|
+
|
|
8640
|
+
static readonly runtime = proto3;
|
|
8641
|
+
static readonly typeName = "norsk.api.media.Silence";
|
|
8642
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8643
|
+
]);
|
|
8644
|
+
|
|
8645
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Silence {
|
|
8646
|
+
return new Silence().fromBinary(bytes, options);
|
|
8647
|
+
}
|
|
8648
|
+
|
|
8649
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Silence {
|
|
8650
|
+
return new Silence().fromJson(jsonValue, options);
|
|
8651
|
+
}
|
|
8652
|
+
|
|
8653
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Silence {
|
|
8654
|
+
return new Silence().fromJsonString(jsonString, options);
|
|
8655
|
+
}
|
|
8656
|
+
|
|
8657
|
+
static equals(a: Silence | PlainMessage<Silence> | undefined, b: Silence | PlainMessage<Silence> | undefined): boolean {
|
|
8658
|
+
return proto3.util.equals(Silence, a, b);
|
|
8659
|
+
}
|
|
8660
|
+
}
|
|
8661
|
+
|
|
8662
|
+
/**
|
|
8663
|
+
* @generated from message norsk.api.media.Compound
|
|
8664
|
+
*/
|
|
8665
|
+
export class Compound extends Message<Compound> {
|
|
8666
|
+
/**
|
|
8667
|
+
* @generated from field: repeated norsk.api.media.Wave components = 1;
|
|
8668
|
+
*/
|
|
8669
|
+
components: Wave[] = [];
|
|
8670
|
+
|
|
8671
|
+
constructor(data?: PartialMessage<Compound>) {
|
|
8672
|
+
super();
|
|
8673
|
+
proto3.util.initPartial(data, this);
|
|
8674
|
+
}
|
|
8675
|
+
|
|
8676
|
+
static readonly runtime = proto3;
|
|
8677
|
+
static readonly typeName = "norsk.api.media.Compound";
|
|
8678
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8679
|
+
{ no: 1, name: "components", kind: "message", T: Wave, repeated: true },
|
|
8680
|
+
]);
|
|
8681
|
+
|
|
8682
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Compound {
|
|
8683
|
+
return new Compound().fromBinary(bytes, options);
|
|
8684
|
+
}
|
|
8685
|
+
|
|
8686
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Compound {
|
|
8687
|
+
return new Compound().fromJson(jsonValue, options);
|
|
8688
|
+
}
|
|
8689
|
+
|
|
8690
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Compound {
|
|
8691
|
+
return new Compound().fromJsonString(jsonString, options);
|
|
8692
|
+
}
|
|
8693
|
+
|
|
8694
|
+
static equals(a: Compound | PlainMessage<Compound> | undefined, b: Compound | PlainMessage<Compound> | undefined): boolean {
|
|
8695
|
+
return proto3.util.equals(Compound, a, b);
|
|
8696
|
+
}
|
|
8697
|
+
}
|
|
8698
|
+
|
|
8699
|
+
/**
|
|
8700
|
+
* @generated from message norsk.api.media.Sequence
|
|
8701
|
+
*/
|
|
8702
|
+
export class Sequence extends Message<Sequence> {
|
|
8703
|
+
/**
|
|
8704
|
+
* @generated from field: repeated norsk.api.media.Wave components = 1;
|
|
8705
|
+
*/
|
|
8706
|
+
components: Wave[] = [];
|
|
8707
|
+
|
|
8708
|
+
constructor(data?: PartialMessage<Sequence>) {
|
|
8709
|
+
super();
|
|
8710
|
+
proto3.util.initPartial(data, this);
|
|
8711
|
+
}
|
|
8712
|
+
|
|
8713
|
+
static readonly runtime = proto3;
|
|
8714
|
+
static readonly typeName = "norsk.api.media.Sequence";
|
|
8715
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8716
|
+
{ no: 1, name: "components", kind: "message", T: Wave, repeated: true },
|
|
8717
|
+
]);
|
|
8718
|
+
|
|
8719
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Sequence {
|
|
8720
|
+
return new Sequence().fromBinary(bytes, options);
|
|
8721
|
+
}
|
|
8722
|
+
|
|
8723
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Sequence {
|
|
8724
|
+
return new Sequence().fromJson(jsonValue, options);
|
|
8725
|
+
}
|
|
8726
|
+
|
|
8727
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Sequence {
|
|
8728
|
+
return new Sequence().fromJsonString(jsonString, options);
|
|
8729
|
+
}
|
|
8730
|
+
|
|
8731
|
+
static equals(a: Sequence | PlainMessage<Sequence> | undefined, b: Sequence | PlainMessage<Sequence> | undefined): boolean {
|
|
8732
|
+
return proto3.util.equals(Sequence, a, b);
|
|
8733
|
+
}
|
|
8734
|
+
}
|
|
8735
|
+
|
|
8736
|
+
/**
|
|
8737
|
+
* @generated from message norsk.api.media.Loop
|
|
8738
|
+
*/
|
|
8739
|
+
export class Loop extends Message<Loop> {
|
|
8740
|
+
/**
|
|
8741
|
+
* @generated from field: norsk.api.media.Wave component = 1;
|
|
8742
|
+
*/
|
|
8743
|
+
component?: Wave;
|
|
8744
|
+
|
|
8745
|
+
constructor(data?: PartialMessage<Loop>) {
|
|
8746
|
+
super();
|
|
8747
|
+
proto3.util.initPartial(data, this);
|
|
8748
|
+
}
|
|
8749
|
+
|
|
8750
|
+
static readonly runtime = proto3;
|
|
8751
|
+
static readonly typeName = "norsk.api.media.Loop";
|
|
8752
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8753
|
+
{ no: 1, name: "component", kind: "message", T: Wave },
|
|
8754
|
+
]);
|
|
8755
|
+
|
|
8756
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Loop {
|
|
8757
|
+
return new Loop().fromBinary(bytes, options);
|
|
8758
|
+
}
|
|
8759
|
+
|
|
8760
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Loop {
|
|
8761
|
+
return new Loop().fromJson(jsonValue, options);
|
|
8762
|
+
}
|
|
8763
|
+
|
|
8764
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Loop {
|
|
8765
|
+
return new Loop().fromJsonString(jsonString, options);
|
|
8766
|
+
}
|
|
8767
|
+
|
|
8768
|
+
static equals(a: Loop | PlainMessage<Loop> | undefined, b: Loop | PlainMessage<Loop> | undefined): boolean {
|
|
8769
|
+
return proto3.util.equals(Loop, a, b);
|
|
8770
|
+
}
|
|
8771
|
+
}
|
|
8772
|
+
|
|
8773
|
+
/**
|
|
8774
|
+
* @generated from message norsk.api.media.Timed
|
|
8775
|
+
*/
|
|
8776
|
+
export class Timed extends Message<Timed> {
|
|
8777
|
+
/**
|
|
8778
|
+
* @generated from field: norsk.api.media.Wave component = 1;
|
|
8779
|
+
*/
|
|
8780
|
+
component?: Wave;
|
|
8781
|
+
|
|
8782
|
+
/**
|
|
8783
|
+
* @generated from field: float duration_ms = 2;
|
|
8784
|
+
*/
|
|
8785
|
+
durationMs = 0;
|
|
8786
|
+
|
|
8787
|
+
constructor(data?: PartialMessage<Timed>) {
|
|
8788
|
+
super();
|
|
8789
|
+
proto3.util.initPartial(data, this);
|
|
8790
|
+
}
|
|
8791
|
+
|
|
8792
|
+
static readonly runtime = proto3;
|
|
8793
|
+
static readonly typeName = "norsk.api.media.Timed";
|
|
8794
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8795
|
+
{ no: 1, name: "component", kind: "message", T: Wave },
|
|
8796
|
+
{ no: 2, name: "duration_ms", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
8797
|
+
]);
|
|
8798
|
+
|
|
8799
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Timed {
|
|
8800
|
+
return new Timed().fromBinary(bytes, options);
|
|
8801
|
+
}
|
|
8802
|
+
|
|
8803
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Timed {
|
|
8804
|
+
return new Timed().fromJson(jsonValue, options);
|
|
8805
|
+
}
|
|
8806
|
+
|
|
8807
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Timed {
|
|
8808
|
+
return new Timed().fromJsonString(jsonString, options);
|
|
8809
|
+
}
|
|
8810
|
+
|
|
8811
|
+
static equals(a: Timed | PlainMessage<Timed> | undefined, b: Timed | PlainMessage<Timed> | undefined): boolean {
|
|
8812
|
+
return proto3.util.equals(Timed, a, b);
|
|
8813
|
+
}
|
|
8814
|
+
}
|
|
8815
|
+
|
|
8816
|
+
/**
|
|
8817
|
+
* A wave description as used by audio signal generator
|
|
8818
|
+
*
|
|
8621
8819
|
* @generated from message norsk.api.media.Wave
|
|
8622
8820
|
*/
|
|
8623
8821
|
export class Wave extends Message<Wave> {
|
|
@@ -8630,6 +8828,36 @@ export class Wave extends Message<Wave> {
|
|
|
8630
8828
|
*/
|
|
8631
8829
|
value: SineWave;
|
|
8632
8830
|
case: "sine";
|
|
8831
|
+
} | {
|
|
8832
|
+
/**
|
|
8833
|
+
* @generated from field: norsk.api.media.Silence silence = 2;
|
|
8834
|
+
*/
|
|
8835
|
+
value: Silence;
|
|
8836
|
+
case: "silence";
|
|
8837
|
+
} | {
|
|
8838
|
+
/**
|
|
8839
|
+
* @generated from field: norsk.api.media.Compound compound = 3;
|
|
8840
|
+
*/
|
|
8841
|
+
value: Compound;
|
|
8842
|
+
case: "compound";
|
|
8843
|
+
} | {
|
|
8844
|
+
/**
|
|
8845
|
+
* @generated from field: norsk.api.media.Sequence sequence = 4;
|
|
8846
|
+
*/
|
|
8847
|
+
value: Sequence;
|
|
8848
|
+
case: "sequence";
|
|
8849
|
+
} | {
|
|
8850
|
+
/**
|
|
8851
|
+
* @generated from field: norsk.api.media.Loop loop = 5;
|
|
8852
|
+
*/
|
|
8853
|
+
value: Loop;
|
|
8854
|
+
case: "loop";
|
|
8855
|
+
} | {
|
|
8856
|
+
/**
|
|
8857
|
+
* @generated from field: norsk.api.media.Timed timed = 6;
|
|
8858
|
+
*/
|
|
8859
|
+
value: Timed;
|
|
8860
|
+
case: "timed";
|
|
8633
8861
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
8634
8862
|
|
|
8635
8863
|
constructor(data?: PartialMessage<Wave>) {
|
|
@@ -8641,6 +8869,11 @@ export class Wave extends Message<Wave> {
|
|
|
8641
8869
|
static readonly typeName = "norsk.api.media.Wave";
|
|
8642
8870
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8643
8871
|
{ no: 1, name: "sine", kind: "message", T: SineWave, oneof: "message" },
|
|
8872
|
+
{ no: 2, name: "silence", kind: "message", T: Silence, oneof: "message" },
|
|
8873
|
+
{ no: 3, name: "compound", kind: "message", T: Compound, oneof: "message" },
|
|
8874
|
+
{ no: 4, name: "sequence", kind: "message", T: Sequence, oneof: "message" },
|
|
8875
|
+
{ no: 5, name: "loop", kind: "message", T: Loop, oneof: "message" },
|
|
8876
|
+
{ no: 6, name: "timed", kind: "message", T: Timed, oneof: "message" },
|
|
8644
8877
|
]);
|
|
8645
8878
|
|
|
8646
8879
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Wave {
|
|
@@ -8745,6 +8978,93 @@ export class AudioSignalGeneratorConfiguration extends Message<AudioSignalGenera
|
|
|
8745
8978
|
}
|
|
8746
8979
|
}
|
|
8747
8980
|
|
|
8981
|
+
/**
|
|
8982
|
+
* @generated from message norsk.api.media.AudioSignalGeneratorConfigurationUpdate
|
|
8983
|
+
*/
|
|
8984
|
+
export class AudioSignalGeneratorConfigurationUpdate extends Message<AudioSignalGeneratorConfigurationUpdate> {
|
|
8985
|
+
/**
|
|
8986
|
+
* @generated from field: norsk.api.media.Wave wave = 1;
|
|
8987
|
+
*/
|
|
8988
|
+
wave?: Wave;
|
|
8989
|
+
|
|
8990
|
+
constructor(data?: PartialMessage<AudioSignalGeneratorConfigurationUpdate>) {
|
|
8991
|
+
super();
|
|
8992
|
+
proto3.util.initPartial(data, this);
|
|
8993
|
+
}
|
|
8994
|
+
|
|
8995
|
+
static readonly runtime = proto3;
|
|
8996
|
+
static readonly typeName = "norsk.api.media.AudioSignalGeneratorConfigurationUpdate";
|
|
8997
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
8998
|
+
{ no: 1, name: "wave", kind: "message", T: Wave },
|
|
8999
|
+
]);
|
|
9000
|
+
|
|
9001
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioSignalGeneratorConfigurationUpdate {
|
|
9002
|
+
return new AudioSignalGeneratorConfigurationUpdate().fromBinary(bytes, options);
|
|
9003
|
+
}
|
|
9004
|
+
|
|
9005
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioSignalGeneratorConfigurationUpdate {
|
|
9006
|
+
return new AudioSignalGeneratorConfigurationUpdate().fromJson(jsonValue, options);
|
|
9007
|
+
}
|
|
9008
|
+
|
|
9009
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioSignalGeneratorConfigurationUpdate {
|
|
9010
|
+
return new AudioSignalGeneratorConfigurationUpdate().fromJsonString(jsonString, options);
|
|
9011
|
+
}
|
|
9012
|
+
|
|
9013
|
+
static equals(a: AudioSignalGeneratorConfigurationUpdate | PlainMessage<AudioSignalGeneratorConfigurationUpdate> | undefined, b: AudioSignalGeneratorConfigurationUpdate | PlainMessage<AudioSignalGeneratorConfigurationUpdate> | undefined): boolean {
|
|
9014
|
+
return proto3.util.equals(AudioSignalGeneratorConfigurationUpdate, a, b);
|
|
9015
|
+
}
|
|
9016
|
+
}
|
|
9017
|
+
|
|
9018
|
+
/**
|
|
9019
|
+
* @generated from message norsk.api.media.AudioSignalGeneratorMessage
|
|
9020
|
+
*/
|
|
9021
|
+
export class AudioSignalGeneratorMessage extends Message<AudioSignalGeneratorMessage> {
|
|
9022
|
+
/**
|
|
9023
|
+
* @generated from oneof norsk.api.media.AudioSignalGeneratorMessage.message
|
|
9024
|
+
*/
|
|
9025
|
+
message: {
|
|
9026
|
+
/**
|
|
9027
|
+
* @generated from field: norsk.api.media.AudioSignalGeneratorConfiguration initial_config = 1;
|
|
9028
|
+
*/
|
|
9029
|
+
value: AudioSignalGeneratorConfiguration;
|
|
9030
|
+
case: "initialConfig";
|
|
9031
|
+
} | {
|
|
9032
|
+
/**
|
|
9033
|
+
* @generated from field: norsk.api.media.AudioSignalGeneratorConfigurationUpdate update_config = 2;
|
|
9034
|
+
*/
|
|
9035
|
+
value: AudioSignalGeneratorConfigurationUpdate;
|
|
9036
|
+
case: "updateConfig";
|
|
9037
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
9038
|
+
|
|
9039
|
+
constructor(data?: PartialMessage<AudioSignalGeneratorMessage>) {
|
|
9040
|
+
super();
|
|
9041
|
+
proto3.util.initPartial(data, this);
|
|
9042
|
+
}
|
|
9043
|
+
|
|
9044
|
+
static readonly runtime = proto3;
|
|
9045
|
+
static readonly typeName = "norsk.api.media.AudioSignalGeneratorMessage";
|
|
9046
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
9047
|
+
{ no: 1, name: "initial_config", kind: "message", T: AudioSignalGeneratorConfiguration, oneof: "message" },
|
|
9048
|
+
{ no: 2, name: "update_config", kind: "message", T: AudioSignalGeneratorConfigurationUpdate, oneof: "message" },
|
|
9049
|
+
]);
|
|
9050
|
+
|
|
9051
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AudioSignalGeneratorMessage {
|
|
9052
|
+
return new AudioSignalGeneratorMessage().fromBinary(bytes, options);
|
|
9053
|
+
}
|
|
9054
|
+
|
|
9055
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AudioSignalGeneratorMessage {
|
|
9056
|
+
return new AudioSignalGeneratorMessage().fromJson(jsonValue, options);
|
|
9057
|
+
}
|
|
9058
|
+
|
|
9059
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AudioSignalGeneratorMessage {
|
|
9060
|
+
return new AudioSignalGeneratorMessage().fromJsonString(jsonString, options);
|
|
9061
|
+
}
|
|
9062
|
+
|
|
9063
|
+
static equals(a: AudioSignalGeneratorMessage | PlainMessage<AudioSignalGeneratorMessage> | undefined, b: AudioSignalGeneratorMessage | PlainMessage<AudioSignalGeneratorMessage> | undefined): boolean {
|
|
9064
|
+
return proto3.util.equals(AudioSignalGeneratorMessage, a, b);
|
|
9065
|
+
}
|
|
9066
|
+
}
|
|
9067
|
+
|
|
8748
9068
|
/**
|
|
8749
9069
|
* @generated from message norsk.api.media.AudioSignalGeneratorEvent
|
|
8750
9070
|
*/
|
|
@@ -14044,7 +14364,8 @@ export class HlsPushDestination extends Message<HlsPushDestination> {
|
|
|
14044
14364
|
supportsGzip = false;
|
|
14045
14365
|
|
|
14046
14366
|
/**
|
|
14047
|
-
* Whether to use TLS or plain TCP transport, by default TLS used if port is
|
|
14367
|
+
* Whether to use TLS or plain TCP transport, by default TLS used if port is
|
|
14368
|
+
* 443
|
|
14048
14369
|
*
|
|
14049
14370
|
* @generated from field: norsk.api.common.OptionalBool tls_transport = 11;
|
|
14050
14371
|
*/
|
|
@@ -17601,6 +17922,17 @@ export class VideoEncodeStream extends Message<VideoEncodeStream> {
|
|
|
17601
17922
|
case: "amdMA35DAv1";
|
|
17602
17923
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
17603
17924
|
|
|
17925
|
+
/**
|
|
17926
|
+
* @generated from oneof norsk.api.media.VideoEncodeStream.hints
|
|
17927
|
+
*/
|
|
17928
|
+
hints: {
|
|
17929
|
+
/**
|
|
17930
|
+
* @generated from field: norsk.api.media.QuadraEncodeHints quadra = 19;
|
|
17931
|
+
*/
|
|
17932
|
+
value: QuadraEncodeHints;
|
|
17933
|
+
case: "quadra";
|
|
17934
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
17935
|
+
|
|
17604
17936
|
constructor(data?: PartialMessage<VideoEncodeStream>) {
|
|
17605
17937
|
super();
|
|
17606
17938
|
proto3.util.initPartial(data, this);
|
|
@@ -17627,6 +17959,7 @@ export class VideoEncodeStream extends Message<VideoEncodeStream> {
|
|
|
17627
17959
|
{ no: 16, name: "amdMA35DHevc", kind: "message", T: AmdMA35DHevc, oneof: "codec" },
|
|
17628
17960
|
{ no: 17, name: "quadraAv1", kind: "message", T: QuadraAv1, oneof: "codec" },
|
|
17629
17961
|
{ no: 18, name: "amdMA35DAv1", kind: "message", T: AmdMA35DAv1, oneof: "codec" },
|
|
17962
|
+
{ no: 19, name: "quadra", kind: "message", T: QuadraEncodeHints, oneof: "hints" },
|
|
17630
17963
|
]);
|
|
17631
17964
|
|
|
17632
17965
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VideoEncodeStream {
|
|
@@ -18388,6 +18721,69 @@ proto3.util.setEnumType(NvidiaHevc_NvidiaHevcTier, "norsk.api.media.NvidiaHevc.N
|
|
|
18388
18721
|
{ no: 1, name: "NVIDIA_HEVC_TIER_HIGH" },
|
|
18389
18722
|
]);
|
|
18390
18723
|
|
|
18724
|
+
/**
|
|
18725
|
+
* @generated from message norsk.api.media.QuadraEncodeHints
|
|
18726
|
+
*/
|
|
18727
|
+
export class QuadraEncodeHints extends Message<QuadraEncodeHints> {
|
|
18728
|
+
/**
|
|
18729
|
+
* @generated from field: norsk.api.media.QuadraEncodeHints.QuadraRescaleAlgorithm rescale = 1;
|
|
18730
|
+
*/
|
|
18731
|
+
rescale = QuadraEncodeHints_QuadraRescaleAlgorithm.QUADRA_RESCALE_DEFAULT;
|
|
18732
|
+
|
|
18733
|
+
constructor(data?: PartialMessage<QuadraEncodeHints>) {
|
|
18734
|
+
super();
|
|
18735
|
+
proto3.util.initPartial(data, this);
|
|
18736
|
+
}
|
|
18737
|
+
|
|
18738
|
+
static readonly runtime = proto3;
|
|
18739
|
+
static readonly typeName = "norsk.api.media.QuadraEncodeHints";
|
|
18740
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
18741
|
+
{ no: 1, name: "rescale", kind: "enum", T: proto3.getEnumType(QuadraEncodeHints_QuadraRescaleAlgorithm) },
|
|
18742
|
+
]);
|
|
18743
|
+
|
|
18744
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QuadraEncodeHints {
|
|
18745
|
+
return new QuadraEncodeHints().fromBinary(bytes, options);
|
|
18746
|
+
}
|
|
18747
|
+
|
|
18748
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QuadraEncodeHints {
|
|
18749
|
+
return new QuadraEncodeHints().fromJson(jsonValue, options);
|
|
18750
|
+
}
|
|
18751
|
+
|
|
18752
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QuadraEncodeHints {
|
|
18753
|
+
return new QuadraEncodeHints().fromJsonString(jsonString, options);
|
|
18754
|
+
}
|
|
18755
|
+
|
|
18756
|
+
static equals(a: QuadraEncodeHints | PlainMessage<QuadraEncodeHints> | undefined, b: QuadraEncodeHints | PlainMessage<QuadraEncodeHints> | undefined): boolean {
|
|
18757
|
+
return proto3.util.equals(QuadraEncodeHints, a, b);
|
|
18758
|
+
}
|
|
18759
|
+
}
|
|
18760
|
+
|
|
18761
|
+
/**
|
|
18762
|
+
* @generated from enum norsk.api.media.QuadraEncodeHints.QuadraRescaleAlgorithm
|
|
18763
|
+
*/
|
|
18764
|
+
export enum QuadraEncodeHints_QuadraRescaleAlgorithm {
|
|
18765
|
+
/**
|
|
18766
|
+
* @generated from enum value: QUADRA_RESCALE_DEFAULT = 0;
|
|
18767
|
+
*/
|
|
18768
|
+
QUADRA_RESCALE_DEFAULT = 0,
|
|
18769
|
+
|
|
18770
|
+
/**
|
|
18771
|
+
* @generated from enum value: QUADRA_RESCALE_FILTERBLIT = 1;
|
|
18772
|
+
*/
|
|
18773
|
+
QUADRA_RESCALE_FILTERBLIT = 1,
|
|
18774
|
+
|
|
18775
|
+
/**
|
|
18776
|
+
* @generated from enum value: QUADRA_RESCALE_BICUBIC = 2;
|
|
18777
|
+
*/
|
|
18778
|
+
QUADRA_RESCALE_BICUBIC = 2,
|
|
18779
|
+
}
|
|
18780
|
+
// Retrieve enum metadata with: proto3.getEnumType(QuadraEncodeHints_QuadraRescaleAlgorithm)
|
|
18781
|
+
proto3.util.setEnumType(QuadraEncodeHints_QuadraRescaleAlgorithm, "norsk.api.media.QuadraEncodeHints.QuadraRescaleAlgorithm", [
|
|
18782
|
+
{ no: 0, name: "QUADRA_RESCALE_DEFAULT" },
|
|
18783
|
+
{ no: 1, name: "QUADRA_RESCALE_FILTERBLIT" },
|
|
18784
|
+
{ no: 2, name: "QUADRA_RESCALE_BICUBIC" },
|
|
18785
|
+
]);
|
|
18786
|
+
|
|
18391
18787
|
/**
|
|
18392
18788
|
* @generated from message norsk.api.media.QuadraH264
|
|
18393
18789
|
*/
|
|
@@ -22438,12 +22834,15 @@ export class WebVttEncodeConfiguration extends Message<WebVttEncodeConfiguration
|
|
|
22438
22834
|
minimumCueLength?: OptionalInt;
|
|
22439
22835
|
|
|
22440
22836
|
/**
|
|
22441
|
-
* Maximum number of lines in a cue.
|
|
22837
|
+
* Maximum number of lines in a cue.
|
|
22442
22838
|
*
|
|
22443
|
-
* Consider using a value of 1 and a longer max line length and allowing the
|
|
22444
|
-
*
|
|
22445
|
-
*
|
|
22446
|
-
*
|
|
22839
|
+
* Consider using a value of 1 and a longer max line length and allowing the
|
|
22840
|
+
* player to break lines: per the WebVTT standard "In general, therefore,
|
|
22841
|
+
* authors are encouraged to write cues all on one line except when a line
|
|
22842
|
+
* break is definitely necessary." However if the player does not do this
|
|
22843
|
+
* adequately, using the actual max line length desired and more lines, hard
|
|
22844
|
+
* line breaks will be inserted. Note a maximum subtitle length of two lines
|
|
22845
|
+
* is recommended (eg BBC guidance)
|
|
22447
22846
|
*
|
|
22448
22847
|
* @generated from field: norsk.api.common.OptionalInt maximum_num_lines = 3;
|
|
22449
22848
|
*/
|
|
@@ -22616,9 +23015,11 @@ export class SubtitleConvertConfiguration extends Message<SubtitleConvertConfigu
|
|
|
22616
23015
|
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
22617
23016
|
|
|
22618
23017
|
/**
|
|
22619
|
-
* For conversion from transcribed sources containing partial and complete
|
|
22620
|
-
*
|
|
22621
|
-
*
|
|
23018
|
+
* For conversion from transcribed sources containing partial and complete
|
|
23019
|
+
* transcriptions, filter to only include the transcription from a fully
|
|
23020
|
+
* transcribed section/utterance. Note this may be multiple sentences and span
|
|
23021
|
+
* up to 30s duration or beyond, making this generally an option for non-live
|
|
23022
|
+
* flows
|
|
22622
23023
|
*
|
|
22623
23024
|
* @generated from field: bool only_complete = 5;
|
|
22624
23025
|
*/
|
|
@@ -22948,7 +23349,8 @@ export class StreamSwitchSmoothSwitch extends Message<StreamSwitchSmoothSwitch>
|
|
|
22948
23349
|
newActiveSource?: InputPin;
|
|
22949
23350
|
|
|
22950
23351
|
/**
|
|
22951
|
-
* Optionally the duration of the transition (otherwise the configured default
|
|
23352
|
+
* Optionally the duration of the transition (otherwise the configured default
|
|
23353
|
+
* transition duration is used)
|
|
22952
23354
|
*
|
|
22953
23355
|
* @generated from field: norsk.api.common.OptionalFloat transition_duration_ms = 2;
|
|
22954
23356
|
*/
|
|
@@ -24922,7 +25324,8 @@ export class AudioTranscribeAzureConfiguration extends Message<AudioTranscribeAz
|
|
|
24922
25324
|
azureRegion = "";
|
|
24923
25325
|
|
|
24924
25326
|
/**
|
|
24925
|
-
* * Enable dictation mode (recognise dictated punctuation etc rather than
|
|
25327
|
+
* * Enable dictation mode (recognise dictated punctuation etc rather than
|
|
25328
|
+
* transcribing the audio verbatim)
|
|
24926
25329
|
*
|
|
24927
25330
|
* @generated from field: norsk.api.common.OptionalBool dictation = 8;
|
|
24928
25331
|
*/
|
|
@@ -25692,7 +26095,8 @@ export class MetadataMessage extends Message<MetadataMessage> {
|
|
|
25692
26095
|
stream?: StreamKey;
|
|
25693
26096
|
|
|
25694
26097
|
/**
|
|
25695
|
-
* The raw data of the metadata message, excluding Metadata Access Unit
|
|
26098
|
+
* The raw data of the metadata message, excluding Metadata Access Unit
|
|
26099
|
+
* wrapper if present
|
|
25696
26100
|
*
|
|
25697
26101
|
* @generated from field: bytes data = 2;
|
|
25698
26102
|
*/
|
|
@@ -26718,7 +27122,8 @@ export class Scte35InsertCommandComponent extends Message<Scte35InsertCommandCom
|
|
|
26718
27122
|
*/
|
|
26719
27123
|
export class Scte35SpliceTime extends Message<Scte35SpliceTime> {
|
|
26720
27124
|
/**
|
|
26721
|
-
* Splice time if specified (otherwise represents the default splice time in
|
|
27125
|
+
* Splice time if specified (otherwise represents the default splice time in
|
|
27126
|
+
* Component Splice Mode, see SCTE 35 9.9.2.1)
|
|
26722
27127
|
*
|
|
26723
27128
|
* @generated from field: norsk.api.common.OptionalInt pts_time = 1;
|
|
26724
27129
|
*/
|