@stinkycomputing/sesame-api-client 1.9.0-alpha.1 → 1.10.0-alpha.2

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.
@@ -3673,7 +3673,8 @@ export namespace sesame {
3673
3673
  SOURCE_TYPE_SYSTEM_AUDIO = 7,
3674
3674
  SOURCE_TYPE_SRT_STREAM = 8,
3675
3675
  SOURCE_TYPE_WEBSOCKET = 9,
3676
- SOURCE_TYPE_MOQ = 10
3676
+ SOURCE_TYPE_MOQ = 10,
3677
+ SOURCE_TYPE_SCOPE = 11
3677
3678
  }
3678
3679
 
3679
3680
  /** DeinterlaceType enum. */
@@ -3724,9 +3725,9 @@ export namespace sesame {
3724
3725
  /** PreprocessStep enum. */
3725
3726
  enum PreprocessStep {
3726
3727
  PREPROCESS_STEP_UNSPECIFIED = 0,
3727
- PREPROCESS_STEP_VIDEO_SCOPES = 1,
3728
3728
  PREPROCESS_STEP_CHROMA_KEY = 2,
3729
- PREPROCESS_STEP_BLUR = 3
3729
+ PREPROCESS_STEP_BLUR = 3,
3730
+ PREPROCESS_STEP_COLOR_CORRECT = 4
3730
3731
  }
3731
3732
 
3732
3733
  /** Properties of a VideoProcessorParam. */
@@ -4510,6 +4511,124 @@ export namespace sesame {
4510
4511
  public static getTypeUrl(typeUrlPrefix?: string): string;
4511
4512
  }
4512
4513
 
4514
+ /** ScopeMode enum. */
4515
+ enum ScopeMode {
4516
+ SCOPE_MODE_UNSPECIFIED = 0,
4517
+ SCOPE_MODE_WAVEFORM = 1,
4518
+ SCOPE_MODE_RGB_PARADE = 2,
4519
+ SCOPE_MODE_VECTORSCOPE = 3,
4520
+ SCOPE_MODE_AUDIO_PHASE = 4
4521
+ }
4522
+
4523
+ /** Properties of a ScopeSourceConfig. */
4524
+ interface IScopeSourceConfig {
4525
+
4526
+ /** ScopeSourceConfig compositorId */
4527
+ compositorId?: (string|null);
4528
+
4529
+ /** ScopeSourceConfig audioMix */
4530
+ audioMix?: (string|null);
4531
+
4532
+ /** ScopeSourceConfig mode */
4533
+ mode?: (sesame.v1.sources.ScopeMode|null);
4534
+ }
4535
+
4536
+ /** Represents a ScopeSourceConfig. */
4537
+ class ScopeSourceConfig implements IScopeSourceConfig {
4538
+
4539
+ /**
4540
+ * Constructs a new ScopeSourceConfig.
4541
+ * @param [properties] Properties to set
4542
+ */
4543
+ constructor(properties?: sesame.v1.sources.IScopeSourceConfig);
4544
+
4545
+ /** ScopeSourceConfig compositorId. */
4546
+ public compositorId: string;
4547
+
4548
+ /** ScopeSourceConfig audioMix. */
4549
+ public audioMix: string;
4550
+
4551
+ /** ScopeSourceConfig mode. */
4552
+ public mode: sesame.v1.sources.ScopeMode;
4553
+
4554
+ /**
4555
+ * Creates a new ScopeSourceConfig instance using the specified properties.
4556
+ * @param [properties] Properties to set
4557
+ * @returns ScopeSourceConfig instance
4558
+ */
4559
+ public static create(properties?: sesame.v1.sources.IScopeSourceConfig): sesame.v1.sources.ScopeSourceConfig;
4560
+
4561
+ /**
4562
+ * Encodes the specified ScopeSourceConfig message. Does not implicitly {@link sesame.v1.sources.ScopeSourceConfig.verify|verify} messages.
4563
+ * @param message ScopeSourceConfig message or plain object to encode
4564
+ * @param [writer] Writer to encode to
4565
+ * @returns Writer
4566
+ */
4567
+ public static encode(message: sesame.v1.sources.IScopeSourceConfig, writer?: $protobuf.Writer): $protobuf.Writer;
4568
+
4569
+ /**
4570
+ * Encodes the specified ScopeSourceConfig message, length delimited. Does not implicitly {@link sesame.v1.sources.ScopeSourceConfig.verify|verify} messages.
4571
+ * @param message ScopeSourceConfig message or plain object to encode
4572
+ * @param [writer] Writer to encode to
4573
+ * @returns Writer
4574
+ */
4575
+ public static encodeDelimited(message: sesame.v1.sources.IScopeSourceConfig, writer?: $protobuf.Writer): $protobuf.Writer;
4576
+
4577
+ /**
4578
+ * Decodes a ScopeSourceConfig message from the specified reader or buffer.
4579
+ * @param reader Reader or buffer to decode from
4580
+ * @param [length] Message length if known beforehand
4581
+ * @returns ScopeSourceConfig
4582
+ * @throws {Error} If the payload is not a reader or valid buffer
4583
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4584
+ */
4585
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.ScopeSourceConfig;
4586
+
4587
+ /**
4588
+ * Decodes a ScopeSourceConfig message from the specified reader or buffer, length delimited.
4589
+ * @param reader Reader or buffer to decode from
4590
+ * @returns ScopeSourceConfig
4591
+ * @throws {Error} If the payload is not a reader or valid buffer
4592
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4593
+ */
4594
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.ScopeSourceConfig;
4595
+
4596
+ /**
4597
+ * Verifies a ScopeSourceConfig message.
4598
+ * @param message Plain object to verify
4599
+ * @returns `null` if valid, otherwise the reason why it is not
4600
+ */
4601
+ public static verify(message: { [k: string]: any }): (string|null);
4602
+
4603
+ /**
4604
+ * Creates a ScopeSourceConfig message from a plain object. Also converts values to their respective internal types.
4605
+ * @param object Plain object
4606
+ * @returns ScopeSourceConfig
4607
+ */
4608
+ public static fromObject(object: { [k: string]: any }): sesame.v1.sources.ScopeSourceConfig;
4609
+
4610
+ /**
4611
+ * Creates a plain object from a ScopeSourceConfig message. Also converts values to other types if specified.
4612
+ * @param message ScopeSourceConfig
4613
+ * @param [options] Conversion options
4614
+ * @returns Plain object
4615
+ */
4616
+ public static toObject(message: sesame.v1.sources.ScopeSourceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any };
4617
+
4618
+ /**
4619
+ * Converts this ScopeSourceConfig to JSON.
4620
+ * @returns JSON object
4621
+ */
4622
+ public toJSON(): { [k: string]: any };
4623
+
4624
+ /**
4625
+ * Gets the default type url for ScopeSourceConfig
4626
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4627
+ * @returns The default type url
4628
+ */
4629
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4630
+ }
4631
+
4513
4632
  /** Properties of a DecklinkSourceConfig. */
4514
4633
  interface IDecklinkSourceConfig {
4515
4634
 
@@ -5228,6 +5347,9 @@ export namespace sesame {
5228
5347
 
5229
5348
  /** SourceConfig moq */
5230
5349
  moq?: (sesame.v1.sources.IMoqSourceConfig|null);
5350
+
5351
+ /** SourceConfig scope */
5352
+ scope?: (sesame.v1.sources.IScopeSourceConfig|null);
5231
5353
  }
5232
5354
 
5233
5355
  /** Represents a SourceConfig. */
@@ -5272,8 +5394,11 @@ export namespace sesame {
5272
5394
  /** SourceConfig moq. */
5273
5395
  public moq?: (sesame.v1.sources.IMoqSourceConfig|null);
5274
5396
 
5397
+ /** SourceConfig scope. */
5398
+ public scope?: (sesame.v1.sources.IScopeSourceConfig|null);
5399
+
5275
5400
  /** SourceConfig details. */
5276
- public details?: ("file"|"recorder"|"browser"|"rtt"|"decklink"|"signalGenerator"|"systemAudio"|"srtStream"|"websocket"|"moq");
5401
+ public details?: ("file"|"recorder"|"browser"|"rtt"|"decklink"|"signalGenerator"|"systemAudio"|"srtStream"|"websocket"|"moq"|"scope");
5277
5402
 
5278
5403
  /**
5279
5404
  * Creates a new SourceConfig instance using the specified properties.
@@ -5721,6 +5846,9 @@ export namespace sesame {
5721
5846
 
5722
5847
  /** SourceStatus srtStats */
5723
5848
  srtStats?: (sesame.v1.status.ISRTReceiveStatistics|null);
5849
+
5850
+ /** SourceStatus videoProcessors */
5851
+ videoProcessors?: (sesame.v1.sources.IVideoProcessor[]|null);
5724
5852
  }
5725
5853
 
5726
5854
  /** Represents a SourceStatus. */
@@ -5795,6 +5923,9 @@ export namespace sesame {
5795
5923
  /** SourceStatus srtStats. */
5796
5924
  public srtStats?: (sesame.v1.status.ISRTReceiveStatistics|null);
5797
5925
 
5926
+ /** SourceStatus videoProcessors. */
5927
+ public videoProcessors: sesame.v1.sources.IVideoProcessor[];
5928
+
5798
5929
  /**
5799
5930
  * Creates a new SourceStatus instance using the specified properties.
5800
5931
  * @param [properties] Properties to set
@@ -6653,6 +6784,224 @@ export namespace sesame {
6653
6784
  */
6654
6785
  public static getTypeUrl(typeUrlPrefix?: string): string;
6655
6786
  }
6787
+
6788
+ /** Properties of a VideoProcessorControlRequest. */
6789
+ interface IVideoProcessorControlRequest {
6790
+
6791
+ /** VideoProcessorControlRequest processorId */
6792
+ processorId?: (string|null);
6793
+
6794
+ /** VideoProcessorControlRequest params */
6795
+ params?: (sesame.v1.sources.IVideoProcessorParam[]|null);
6796
+ }
6797
+
6798
+ /** Represents a VideoProcessorControlRequest. */
6799
+ class VideoProcessorControlRequest implements IVideoProcessorControlRequest {
6800
+
6801
+ /**
6802
+ * Constructs a new VideoProcessorControlRequest.
6803
+ * @param [properties] Properties to set
6804
+ */
6805
+ constructor(properties?: sesame.v1.sources.IVideoProcessorControlRequest);
6806
+
6807
+ /** VideoProcessorControlRequest processorId. */
6808
+ public processorId: string;
6809
+
6810
+ /** VideoProcessorControlRequest params. */
6811
+ public params: sesame.v1.sources.IVideoProcessorParam[];
6812
+
6813
+ /**
6814
+ * Creates a new VideoProcessorControlRequest instance using the specified properties.
6815
+ * @param [properties] Properties to set
6816
+ * @returns VideoProcessorControlRequest instance
6817
+ */
6818
+ public static create(properties?: sesame.v1.sources.IVideoProcessorControlRequest): sesame.v1.sources.VideoProcessorControlRequest;
6819
+
6820
+ /**
6821
+ * Encodes the specified VideoProcessorControlRequest message. Does not implicitly {@link sesame.v1.sources.VideoProcessorControlRequest.verify|verify} messages.
6822
+ * @param message VideoProcessorControlRequest message or plain object to encode
6823
+ * @param [writer] Writer to encode to
6824
+ * @returns Writer
6825
+ */
6826
+ public static encode(message: sesame.v1.sources.IVideoProcessorControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
6827
+
6828
+ /**
6829
+ * Encodes the specified VideoProcessorControlRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.VideoProcessorControlRequest.verify|verify} messages.
6830
+ * @param message VideoProcessorControlRequest message or plain object to encode
6831
+ * @param [writer] Writer to encode to
6832
+ * @returns Writer
6833
+ */
6834
+ public static encodeDelimited(message: sesame.v1.sources.IVideoProcessorControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
6835
+
6836
+ /**
6837
+ * Decodes a VideoProcessorControlRequest message from the specified reader or buffer.
6838
+ * @param reader Reader or buffer to decode from
6839
+ * @param [length] Message length if known beforehand
6840
+ * @returns VideoProcessorControlRequest
6841
+ * @throws {Error} If the payload is not a reader or valid buffer
6842
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6843
+ */
6844
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.VideoProcessorControlRequest;
6845
+
6846
+ /**
6847
+ * Decodes a VideoProcessorControlRequest message from the specified reader or buffer, length delimited.
6848
+ * @param reader Reader or buffer to decode from
6849
+ * @returns VideoProcessorControlRequest
6850
+ * @throws {Error} If the payload is not a reader or valid buffer
6851
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6852
+ */
6853
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.VideoProcessorControlRequest;
6854
+
6855
+ /**
6856
+ * Verifies a VideoProcessorControlRequest message.
6857
+ * @param message Plain object to verify
6858
+ * @returns `null` if valid, otherwise the reason why it is not
6859
+ */
6860
+ public static verify(message: { [k: string]: any }): (string|null);
6861
+
6862
+ /**
6863
+ * Creates a VideoProcessorControlRequest message from a plain object. Also converts values to their respective internal types.
6864
+ * @param object Plain object
6865
+ * @returns VideoProcessorControlRequest
6866
+ */
6867
+ public static fromObject(object: { [k: string]: any }): sesame.v1.sources.VideoProcessorControlRequest;
6868
+
6869
+ /**
6870
+ * Creates a plain object from a VideoProcessorControlRequest message. Also converts values to other types if specified.
6871
+ * @param message VideoProcessorControlRequest
6872
+ * @param [options] Conversion options
6873
+ * @returns Plain object
6874
+ */
6875
+ public static toObject(message: sesame.v1.sources.VideoProcessorControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
6876
+
6877
+ /**
6878
+ * Converts this VideoProcessorControlRequest to JSON.
6879
+ * @returns JSON object
6880
+ */
6881
+ public toJSON(): { [k: string]: any };
6882
+
6883
+ /**
6884
+ * Gets the default type url for VideoProcessorControlRequest
6885
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6886
+ * @returns The default type url
6887
+ */
6888
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6889
+ }
6890
+
6891
+ /** Properties of a SourceControlRequest. */
6892
+ interface ISourceControlRequest {
6893
+
6894
+ /** SourceControlRequest videoProcessors */
6895
+ videoProcessors?: (sesame.v1.sources.IVideoProcessorControlRequest[]|null);
6896
+
6897
+ /** SourceControlRequest audioLevel */
6898
+ audioLevel?: (number|null);
6899
+
6900
+ /** SourceControlRequest resetProcessors */
6901
+ resetProcessors?: (string[]|null);
6902
+
6903
+ /** SourceControlRequest sourceId */
6904
+ sourceId?: (string|null);
6905
+ }
6906
+
6907
+ /** Represents a SourceControlRequest. */
6908
+ class SourceControlRequest implements ISourceControlRequest {
6909
+
6910
+ /**
6911
+ * Constructs a new SourceControlRequest.
6912
+ * @param [properties] Properties to set
6913
+ */
6914
+ constructor(properties?: sesame.v1.sources.ISourceControlRequest);
6915
+
6916
+ /** SourceControlRequest videoProcessors. */
6917
+ public videoProcessors: sesame.v1.sources.IVideoProcessorControlRequest[];
6918
+
6919
+ /** SourceControlRequest audioLevel. */
6920
+ public audioLevel?: (number|null);
6921
+
6922
+ /** SourceControlRequest resetProcessors. */
6923
+ public resetProcessors: string[];
6924
+
6925
+ /** SourceControlRequest sourceId. */
6926
+ public sourceId: string;
6927
+
6928
+ /**
6929
+ * Creates a new SourceControlRequest instance using the specified properties.
6930
+ * @param [properties] Properties to set
6931
+ * @returns SourceControlRequest instance
6932
+ */
6933
+ public static create(properties?: sesame.v1.sources.ISourceControlRequest): sesame.v1.sources.SourceControlRequest;
6934
+
6935
+ /**
6936
+ * Encodes the specified SourceControlRequest message. Does not implicitly {@link sesame.v1.sources.SourceControlRequest.verify|verify} messages.
6937
+ * @param message SourceControlRequest message or plain object to encode
6938
+ * @param [writer] Writer to encode to
6939
+ * @returns Writer
6940
+ */
6941
+ public static encode(message: sesame.v1.sources.ISourceControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
6942
+
6943
+ /**
6944
+ * Encodes the specified SourceControlRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.SourceControlRequest.verify|verify} messages.
6945
+ * @param message SourceControlRequest message or plain object to encode
6946
+ * @param [writer] Writer to encode to
6947
+ * @returns Writer
6948
+ */
6949
+ public static encodeDelimited(message: sesame.v1.sources.ISourceControlRequest, writer?: $protobuf.Writer): $protobuf.Writer;
6950
+
6951
+ /**
6952
+ * Decodes a SourceControlRequest message from the specified reader or buffer.
6953
+ * @param reader Reader or buffer to decode from
6954
+ * @param [length] Message length if known beforehand
6955
+ * @returns SourceControlRequest
6956
+ * @throws {Error} If the payload is not a reader or valid buffer
6957
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6958
+ */
6959
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.SourceControlRequest;
6960
+
6961
+ /**
6962
+ * Decodes a SourceControlRequest message from the specified reader or buffer, length delimited.
6963
+ * @param reader Reader or buffer to decode from
6964
+ * @returns SourceControlRequest
6965
+ * @throws {Error} If the payload is not a reader or valid buffer
6966
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6967
+ */
6968
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.SourceControlRequest;
6969
+
6970
+ /**
6971
+ * Verifies a SourceControlRequest message.
6972
+ * @param message Plain object to verify
6973
+ * @returns `null` if valid, otherwise the reason why it is not
6974
+ */
6975
+ public static verify(message: { [k: string]: any }): (string|null);
6976
+
6977
+ /**
6978
+ * Creates a SourceControlRequest message from a plain object. Also converts values to their respective internal types.
6979
+ * @param object Plain object
6980
+ * @returns SourceControlRequest
6981
+ */
6982
+ public static fromObject(object: { [k: string]: any }): sesame.v1.sources.SourceControlRequest;
6983
+
6984
+ /**
6985
+ * Creates a plain object from a SourceControlRequest message. Also converts values to other types if specified.
6986
+ * @param message SourceControlRequest
6987
+ * @param [options] Conversion options
6988
+ * @returns Plain object
6989
+ */
6990
+ public static toObject(message: sesame.v1.sources.SourceControlRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
6991
+
6992
+ /**
6993
+ * Converts this SourceControlRequest to JSON.
6994
+ * @returns JSON object
6995
+ */
6996
+ public toJSON(): { [k: string]: any };
6997
+
6998
+ /**
6999
+ * Gets the default type url for SourceControlRequest
7000
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7001
+ * @returns The default type url
7002
+ */
7003
+ public static getTypeUrl(typeUrlPrefix?: string): string;
7004
+ }
6656
7005
  }
6657
7006
 
6658
7007
  /** Namespace recorder. */
@@ -17186,7 +17535,9 @@ export namespace sesame {
17186
17535
  DATA_TYPE_BINARY = 6,
17187
17536
  DATA_TYPE_OUTPUT_STATUS = 7,
17188
17537
  DATA_TYPE_OUTPUT_CONTROL = 8,
17189
- DATA_TYPE_ENGINE_STATUS = 9
17538
+ DATA_TYPE_ENGINE_STATUS = 9,
17539
+ DATA_TYPE_SOURCE_CONTROL = 10,
17540
+ DATA_TYPE_SOURCE_STATUS = 11
17190
17541
  }
17191
17542
 
17192
17543
  /** Properties of a DataFrameData. */