@stinkycomputing/sesame-api-client 1.5.5 → 1.5.6
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/dist/command-list.d.ts +9 -5
- package/dist/command-list.d.ts.map +1 -1
- package/dist/index.browser.mjs +936 -198
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.cjs +936 -198
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +936 -198
- package/dist/index.mjs.map +2 -2
- package/dist/proto/api.d.ts +489 -17
- package/dist/proto/api.js +2486 -1226
- package/package.json +1 -1
package/dist/proto/api.d.ts
CHANGED
|
@@ -2228,6 +2228,15 @@ export namespace sesame {
|
|
|
2228
2228
|
/** CommandListItem setMetadataBindings */
|
|
2229
2229
|
setMetadataBindings?: (sesame.v1.commands.ISetMetadataBindingsRequest|null);
|
|
2230
2230
|
|
|
2231
|
+
/** CommandListItem addEncoder */
|
|
2232
|
+
addEncoder?: (sesame.v1.outputs.IEncoderAddRequest|null);
|
|
2233
|
+
|
|
2234
|
+
/** CommandListItem updateEncoder */
|
|
2235
|
+
updateEncoder?: (sesame.v1.outputs.IEncoderUpdateRequest|null);
|
|
2236
|
+
|
|
2237
|
+
/** CommandListItem removeEncoder */
|
|
2238
|
+
removeEncoder?: (sesame.v1.outputs.IEncoderRemoveRequest|null);
|
|
2239
|
+
|
|
2231
2240
|
/** CommandListItem transactionId */
|
|
2232
2241
|
transactionId?: (number|null);
|
|
2233
2242
|
|
|
@@ -2319,6 +2328,15 @@ export namespace sesame {
|
|
|
2319
2328
|
/** CommandListItem setMetadataBindings. */
|
|
2320
2329
|
public setMetadataBindings?: (sesame.v1.commands.ISetMetadataBindingsRequest|null);
|
|
2321
2330
|
|
|
2331
|
+
/** CommandListItem addEncoder. */
|
|
2332
|
+
public addEncoder?: (sesame.v1.outputs.IEncoderAddRequest|null);
|
|
2333
|
+
|
|
2334
|
+
/** CommandListItem updateEncoder. */
|
|
2335
|
+
public updateEncoder?: (sesame.v1.outputs.IEncoderUpdateRequest|null);
|
|
2336
|
+
|
|
2337
|
+
/** CommandListItem removeEncoder. */
|
|
2338
|
+
public removeEncoder?: (sesame.v1.outputs.IEncoderRemoveRequest|null);
|
|
2339
|
+
|
|
2322
2340
|
/** CommandListItem transactionId. */
|
|
2323
2341
|
public transactionId?: (number|null);
|
|
2324
2342
|
|
|
@@ -2326,7 +2344,7 @@ export namespace sesame {
|
|
|
2326
2344
|
public transactionDeps: number[];
|
|
2327
2345
|
|
|
2328
2346
|
/** CommandListItem item. */
|
|
2329
|
-
public item?: ("addSource"|"updateSource"|"removeSource"|"addOutput"|"updateOutput"|"removeOutput"|"addCompositor"|"removeCompositor"|"clearCompositor"|"addNode"|"removeNode"|"setProperty"|"animateProperty"|"addAudioMixer"|"updateAudioMixer"|"removeAudioMixer"|"addAudioChannel"|"removeAudioChannel"|"updateSourceTransport"|"loadPlaylist"|"ejectPlaylist"|"callback"|"setSourceMetadata"|"setMetadataBindings");
|
|
2347
|
+
public item?: ("addSource"|"updateSource"|"removeSource"|"addOutput"|"updateOutput"|"removeOutput"|"addCompositor"|"removeCompositor"|"clearCompositor"|"addNode"|"removeNode"|"setProperty"|"animateProperty"|"addAudioMixer"|"updateAudioMixer"|"removeAudioMixer"|"addAudioChannel"|"removeAudioChannel"|"updateSourceTransport"|"loadPlaylist"|"ejectPlaylist"|"callback"|"setSourceMetadata"|"setMetadataBindings"|"addEncoder"|"updateEncoder"|"removeEncoder");
|
|
2330
2348
|
|
|
2331
2349
|
/**
|
|
2332
2350
|
* Creates a new CommandListItem instance using the specified properties.
|
|
@@ -9545,6 +9563,9 @@ export namespace sesame {
|
|
|
9545
9563
|
|
|
9546
9564
|
/** Status recorders */
|
|
9547
9565
|
recorders?: (sesame.v1.recorder.IRecorderStatus[]|null);
|
|
9566
|
+
|
|
9567
|
+
/** Status encoders */
|
|
9568
|
+
encoders?: (sesame.v1.outputs.IEncoderStatus[]|null);
|
|
9548
9569
|
}
|
|
9549
9570
|
|
|
9550
9571
|
/** Represents a Status. */
|
|
@@ -9580,6 +9601,9 @@ export namespace sesame {
|
|
|
9580
9601
|
/** Status recorders. */
|
|
9581
9602
|
public recorders: sesame.v1.recorder.IRecorderStatus[];
|
|
9582
9603
|
|
|
9604
|
+
/** Status encoders. */
|
|
9605
|
+
public encoders: sesame.v1.outputs.IEncoderStatus[];
|
|
9606
|
+
|
|
9583
9607
|
/**
|
|
9584
9608
|
* Creates a new Status instance using the specified properties.
|
|
9585
9609
|
* @param [properties] Properties to set
|
|
@@ -10330,6 +10354,12 @@ export namespace sesame {
|
|
|
10330
10354
|
OUTPUT_TYPE_ENCODED_SUPER_SLOWMO_RECORDER = 7
|
|
10331
10355
|
}
|
|
10332
10356
|
|
|
10357
|
+
/** EncoderType enum. */
|
|
10358
|
+
enum EncoderType {
|
|
10359
|
+
ENCODER_TYPE_UNSPECIFIED = 0,
|
|
10360
|
+
ENCODER_TYPE_VIDEO = 1
|
|
10361
|
+
}
|
|
10362
|
+
|
|
10333
10363
|
/** EncoderPreset enum. */
|
|
10334
10364
|
enum EncoderPreset {
|
|
10335
10365
|
ENCODER_PRESET_UNSPECIFIED = 0,
|
|
@@ -10478,6 +10508,321 @@ export namespace sesame {
|
|
|
10478
10508
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10479
10509
|
}
|
|
10480
10510
|
|
|
10511
|
+
/** Properties of an EncoderAddRequest. */
|
|
10512
|
+
interface IEncoderAddRequest {
|
|
10513
|
+
|
|
10514
|
+
/** EncoderAddRequest id */
|
|
10515
|
+
id?: (string|null);
|
|
10516
|
+
|
|
10517
|
+
/** EncoderAddRequest compositionId */
|
|
10518
|
+
compositionId?: (string|null);
|
|
10519
|
+
|
|
10520
|
+
/** EncoderAddRequest encoder */
|
|
10521
|
+
encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10522
|
+
}
|
|
10523
|
+
|
|
10524
|
+
/** Represents an EncoderAddRequest. */
|
|
10525
|
+
class EncoderAddRequest implements IEncoderAddRequest {
|
|
10526
|
+
|
|
10527
|
+
/**
|
|
10528
|
+
* Constructs a new EncoderAddRequest.
|
|
10529
|
+
* @param [properties] Properties to set
|
|
10530
|
+
*/
|
|
10531
|
+
constructor(properties?: sesame.v1.outputs.IEncoderAddRequest);
|
|
10532
|
+
|
|
10533
|
+
/** EncoderAddRequest id. */
|
|
10534
|
+
public id: string;
|
|
10535
|
+
|
|
10536
|
+
/** EncoderAddRequest compositionId. */
|
|
10537
|
+
public compositionId: string;
|
|
10538
|
+
|
|
10539
|
+
/** EncoderAddRequest encoder. */
|
|
10540
|
+
public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10541
|
+
|
|
10542
|
+
/**
|
|
10543
|
+
* Creates a new EncoderAddRequest instance using the specified properties.
|
|
10544
|
+
* @param [properties] Properties to set
|
|
10545
|
+
* @returns EncoderAddRequest instance
|
|
10546
|
+
*/
|
|
10547
|
+
public static create(properties?: sesame.v1.outputs.IEncoderAddRequest): sesame.v1.outputs.EncoderAddRequest;
|
|
10548
|
+
|
|
10549
|
+
/**
|
|
10550
|
+
* Encodes the specified EncoderAddRequest message. Does not implicitly {@link sesame.v1.outputs.EncoderAddRequest.verify|verify} messages.
|
|
10551
|
+
* @param message EncoderAddRequest message or plain object to encode
|
|
10552
|
+
* @param [writer] Writer to encode to
|
|
10553
|
+
* @returns Writer
|
|
10554
|
+
*/
|
|
10555
|
+
public static encode(message: sesame.v1.outputs.IEncoderAddRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10556
|
+
|
|
10557
|
+
/**
|
|
10558
|
+
* Encodes the specified EncoderAddRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderAddRequest.verify|verify} messages.
|
|
10559
|
+
* @param message EncoderAddRequest message or plain object to encode
|
|
10560
|
+
* @param [writer] Writer to encode to
|
|
10561
|
+
* @returns Writer
|
|
10562
|
+
*/
|
|
10563
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderAddRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10564
|
+
|
|
10565
|
+
/**
|
|
10566
|
+
* Decodes an EncoderAddRequest message from the specified reader or buffer.
|
|
10567
|
+
* @param reader Reader or buffer to decode from
|
|
10568
|
+
* @param [length] Message length if known beforehand
|
|
10569
|
+
* @returns EncoderAddRequest
|
|
10570
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10571
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10572
|
+
*/
|
|
10573
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderAddRequest;
|
|
10574
|
+
|
|
10575
|
+
/**
|
|
10576
|
+
* Decodes an EncoderAddRequest message from the specified reader or buffer, length delimited.
|
|
10577
|
+
* @param reader Reader or buffer to decode from
|
|
10578
|
+
* @returns EncoderAddRequest
|
|
10579
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10580
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10581
|
+
*/
|
|
10582
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderAddRequest;
|
|
10583
|
+
|
|
10584
|
+
/**
|
|
10585
|
+
* Verifies an EncoderAddRequest message.
|
|
10586
|
+
* @param message Plain object to verify
|
|
10587
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10588
|
+
*/
|
|
10589
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10590
|
+
|
|
10591
|
+
/**
|
|
10592
|
+
* Creates an EncoderAddRequest message from a plain object. Also converts values to their respective internal types.
|
|
10593
|
+
* @param object Plain object
|
|
10594
|
+
* @returns EncoderAddRequest
|
|
10595
|
+
*/
|
|
10596
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderAddRequest;
|
|
10597
|
+
|
|
10598
|
+
/**
|
|
10599
|
+
* Creates a plain object from an EncoderAddRequest message. Also converts values to other types if specified.
|
|
10600
|
+
* @param message EncoderAddRequest
|
|
10601
|
+
* @param [options] Conversion options
|
|
10602
|
+
* @returns Plain object
|
|
10603
|
+
*/
|
|
10604
|
+
public static toObject(message: sesame.v1.outputs.EncoderAddRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10605
|
+
|
|
10606
|
+
/**
|
|
10607
|
+
* Converts this EncoderAddRequest to JSON.
|
|
10608
|
+
* @returns JSON object
|
|
10609
|
+
*/
|
|
10610
|
+
public toJSON(): { [k: string]: any };
|
|
10611
|
+
|
|
10612
|
+
/**
|
|
10613
|
+
* Gets the default type url for EncoderAddRequest
|
|
10614
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10615
|
+
* @returns The default type url
|
|
10616
|
+
*/
|
|
10617
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10618
|
+
}
|
|
10619
|
+
|
|
10620
|
+
/** Properties of an EncoderUpdateRequest. */
|
|
10621
|
+
interface IEncoderUpdateRequest {
|
|
10622
|
+
|
|
10623
|
+
/** EncoderUpdateRequest id */
|
|
10624
|
+
id?: (string|null);
|
|
10625
|
+
|
|
10626
|
+
/** EncoderUpdateRequest compositionId */
|
|
10627
|
+
compositionId?: (string|null);
|
|
10628
|
+
|
|
10629
|
+
/** EncoderUpdateRequest encoder */
|
|
10630
|
+
encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10631
|
+
}
|
|
10632
|
+
|
|
10633
|
+
/** Represents an EncoderUpdateRequest. */
|
|
10634
|
+
class EncoderUpdateRequest implements IEncoderUpdateRequest {
|
|
10635
|
+
|
|
10636
|
+
/**
|
|
10637
|
+
* Constructs a new EncoderUpdateRequest.
|
|
10638
|
+
* @param [properties] Properties to set
|
|
10639
|
+
*/
|
|
10640
|
+
constructor(properties?: sesame.v1.outputs.IEncoderUpdateRequest);
|
|
10641
|
+
|
|
10642
|
+
/** EncoderUpdateRequest id. */
|
|
10643
|
+
public id: string;
|
|
10644
|
+
|
|
10645
|
+
/** EncoderUpdateRequest compositionId. */
|
|
10646
|
+
public compositionId: string;
|
|
10647
|
+
|
|
10648
|
+
/** EncoderUpdateRequest encoder. */
|
|
10649
|
+
public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10650
|
+
|
|
10651
|
+
/**
|
|
10652
|
+
* Creates a new EncoderUpdateRequest instance using the specified properties.
|
|
10653
|
+
* @param [properties] Properties to set
|
|
10654
|
+
* @returns EncoderUpdateRequest instance
|
|
10655
|
+
*/
|
|
10656
|
+
public static create(properties?: sesame.v1.outputs.IEncoderUpdateRequest): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10657
|
+
|
|
10658
|
+
/**
|
|
10659
|
+
* Encodes the specified EncoderUpdateRequest message. Does not implicitly {@link sesame.v1.outputs.EncoderUpdateRequest.verify|verify} messages.
|
|
10660
|
+
* @param message EncoderUpdateRequest message or plain object to encode
|
|
10661
|
+
* @param [writer] Writer to encode to
|
|
10662
|
+
* @returns Writer
|
|
10663
|
+
*/
|
|
10664
|
+
public static encode(message: sesame.v1.outputs.IEncoderUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10665
|
+
|
|
10666
|
+
/**
|
|
10667
|
+
* Encodes the specified EncoderUpdateRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderUpdateRequest.verify|verify} messages.
|
|
10668
|
+
* @param message EncoderUpdateRequest message or plain object to encode
|
|
10669
|
+
* @param [writer] Writer to encode to
|
|
10670
|
+
* @returns Writer
|
|
10671
|
+
*/
|
|
10672
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10673
|
+
|
|
10674
|
+
/**
|
|
10675
|
+
* Decodes an EncoderUpdateRequest message from the specified reader or buffer.
|
|
10676
|
+
* @param reader Reader or buffer to decode from
|
|
10677
|
+
* @param [length] Message length if known beforehand
|
|
10678
|
+
* @returns EncoderUpdateRequest
|
|
10679
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10680
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10681
|
+
*/
|
|
10682
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10683
|
+
|
|
10684
|
+
/**
|
|
10685
|
+
* Decodes an EncoderUpdateRequest message from the specified reader or buffer, length delimited.
|
|
10686
|
+
* @param reader Reader or buffer to decode from
|
|
10687
|
+
* @returns EncoderUpdateRequest
|
|
10688
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10689
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10690
|
+
*/
|
|
10691
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10692
|
+
|
|
10693
|
+
/**
|
|
10694
|
+
* Verifies an EncoderUpdateRequest message.
|
|
10695
|
+
* @param message Plain object to verify
|
|
10696
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10697
|
+
*/
|
|
10698
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10699
|
+
|
|
10700
|
+
/**
|
|
10701
|
+
* Creates an EncoderUpdateRequest message from a plain object. Also converts values to their respective internal types.
|
|
10702
|
+
* @param object Plain object
|
|
10703
|
+
* @returns EncoderUpdateRequest
|
|
10704
|
+
*/
|
|
10705
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10706
|
+
|
|
10707
|
+
/**
|
|
10708
|
+
* Creates a plain object from an EncoderUpdateRequest message. Also converts values to other types if specified.
|
|
10709
|
+
* @param message EncoderUpdateRequest
|
|
10710
|
+
* @param [options] Conversion options
|
|
10711
|
+
* @returns Plain object
|
|
10712
|
+
*/
|
|
10713
|
+
public static toObject(message: sesame.v1.outputs.EncoderUpdateRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10714
|
+
|
|
10715
|
+
/**
|
|
10716
|
+
* Converts this EncoderUpdateRequest to JSON.
|
|
10717
|
+
* @returns JSON object
|
|
10718
|
+
*/
|
|
10719
|
+
public toJSON(): { [k: string]: any };
|
|
10720
|
+
|
|
10721
|
+
/**
|
|
10722
|
+
* Gets the default type url for EncoderUpdateRequest
|
|
10723
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10724
|
+
* @returns The default type url
|
|
10725
|
+
*/
|
|
10726
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10727
|
+
}
|
|
10728
|
+
|
|
10729
|
+
/** Properties of an EncoderRemoveRequest. */
|
|
10730
|
+
interface IEncoderRemoveRequest {
|
|
10731
|
+
|
|
10732
|
+
/** EncoderRemoveRequest id */
|
|
10733
|
+
id?: (string|null);
|
|
10734
|
+
}
|
|
10735
|
+
|
|
10736
|
+
/** Represents an EncoderRemoveRequest. */
|
|
10737
|
+
class EncoderRemoveRequest implements IEncoderRemoveRequest {
|
|
10738
|
+
|
|
10739
|
+
/**
|
|
10740
|
+
* Constructs a new EncoderRemoveRequest.
|
|
10741
|
+
* @param [properties] Properties to set
|
|
10742
|
+
*/
|
|
10743
|
+
constructor(properties?: sesame.v1.outputs.IEncoderRemoveRequest);
|
|
10744
|
+
|
|
10745
|
+
/** EncoderRemoveRequest id. */
|
|
10746
|
+
public id: string;
|
|
10747
|
+
|
|
10748
|
+
/**
|
|
10749
|
+
* Creates a new EncoderRemoveRequest instance using the specified properties.
|
|
10750
|
+
* @param [properties] Properties to set
|
|
10751
|
+
* @returns EncoderRemoveRequest instance
|
|
10752
|
+
*/
|
|
10753
|
+
public static create(properties?: sesame.v1.outputs.IEncoderRemoveRequest): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10754
|
+
|
|
10755
|
+
/**
|
|
10756
|
+
* Encodes the specified EncoderRemoveRequest message. Does not implicitly {@link sesame.v1.outputs.EncoderRemoveRequest.verify|verify} messages.
|
|
10757
|
+
* @param message EncoderRemoveRequest message or plain object to encode
|
|
10758
|
+
* @param [writer] Writer to encode to
|
|
10759
|
+
* @returns Writer
|
|
10760
|
+
*/
|
|
10761
|
+
public static encode(message: sesame.v1.outputs.IEncoderRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10762
|
+
|
|
10763
|
+
/**
|
|
10764
|
+
* Encodes the specified EncoderRemoveRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderRemoveRequest.verify|verify} messages.
|
|
10765
|
+
* @param message EncoderRemoveRequest message or plain object to encode
|
|
10766
|
+
* @param [writer] Writer to encode to
|
|
10767
|
+
* @returns Writer
|
|
10768
|
+
*/
|
|
10769
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10770
|
+
|
|
10771
|
+
/**
|
|
10772
|
+
* Decodes an EncoderRemoveRequest message from the specified reader or buffer.
|
|
10773
|
+
* @param reader Reader or buffer to decode from
|
|
10774
|
+
* @param [length] Message length if known beforehand
|
|
10775
|
+
* @returns EncoderRemoveRequest
|
|
10776
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10777
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10778
|
+
*/
|
|
10779
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10780
|
+
|
|
10781
|
+
/**
|
|
10782
|
+
* Decodes an EncoderRemoveRequest message from the specified reader or buffer, length delimited.
|
|
10783
|
+
* @param reader Reader or buffer to decode from
|
|
10784
|
+
* @returns EncoderRemoveRequest
|
|
10785
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10786
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10787
|
+
*/
|
|
10788
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10789
|
+
|
|
10790
|
+
/**
|
|
10791
|
+
* Verifies an EncoderRemoveRequest message.
|
|
10792
|
+
* @param message Plain object to verify
|
|
10793
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10794
|
+
*/
|
|
10795
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10796
|
+
|
|
10797
|
+
/**
|
|
10798
|
+
* Creates an EncoderRemoveRequest message from a plain object. Also converts values to their respective internal types.
|
|
10799
|
+
* @param object Plain object
|
|
10800
|
+
* @returns EncoderRemoveRequest
|
|
10801
|
+
*/
|
|
10802
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10803
|
+
|
|
10804
|
+
/**
|
|
10805
|
+
* Creates a plain object from an EncoderRemoveRequest message. Also converts values to other types if specified.
|
|
10806
|
+
* @param message EncoderRemoveRequest
|
|
10807
|
+
* @param [options] Conversion options
|
|
10808
|
+
* @returns Plain object
|
|
10809
|
+
*/
|
|
10810
|
+
public static toObject(message: sesame.v1.outputs.EncoderRemoveRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10811
|
+
|
|
10812
|
+
/**
|
|
10813
|
+
* Converts this EncoderRemoveRequest to JSON.
|
|
10814
|
+
* @returns JSON object
|
|
10815
|
+
*/
|
|
10816
|
+
public toJSON(): { [k: string]: any };
|
|
10817
|
+
|
|
10818
|
+
/**
|
|
10819
|
+
* Gets the default type url for EncoderRemoveRequest
|
|
10820
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10821
|
+
* @returns The default type url
|
|
10822
|
+
*/
|
|
10823
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10824
|
+
}
|
|
10825
|
+
|
|
10481
10826
|
/** Properties of a DecklinkOutputConfig. */
|
|
10482
10827
|
interface IDecklinkOutputConfig {
|
|
10483
10828
|
|
|
@@ -10593,8 +10938,8 @@ export namespace sesame {
|
|
|
10593
10938
|
/** EncodedWebSocketOutputConfig channel */
|
|
10594
10939
|
channel?: (string|null);
|
|
10595
10940
|
|
|
10596
|
-
/** EncodedWebSocketOutputConfig
|
|
10597
|
-
|
|
10941
|
+
/** EncodedWebSocketOutputConfig encoderId */
|
|
10942
|
+
encoderId?: (string|null);
|
|
10598
10943
|
|
|
10599
10944
|
/** EncodedWebSocketOutputConfig metadataTracks */
|
|
10600
10945
|
metadataTracks?: (string[]|null);
|
|
@@ -10612,8 +10957,8 @@ export namespace sesame {
|
|
|
10612
10957
|
/** EncodedWebSocketOutputConfig channel. */
|
|
10613
10958
|
public channel: string;
|
|
10614
10959
|
|
|
10615
|
-
/** EncodedWebSocketOutputConfig
|
|
10616
|
-
public
|
|
10960
|
+
/** EncodedWebSocketOutputConfig encoderId. */
|
|
10961
|
+
public encoderId: string;
|
|
10617
10962
|
|
|
10618
10963
|
/** EncodedWebSocketOutputConfig metadataTracks. */
|
|
10619
10964
|
public metadataTracks: string[];
|
|
@@ -10699,8 +11044,8 @@ export namespace sesame {
|
|
|
10699
11044
|
/** Properties of an EncodedRecorderOutputConfig. */
|
|
10700
11045
|
interface IEncodedRecorderOutputConfig {
|
|
10701
11046
|
|
|
10702
|
-
/** EncodedRecorderOutputConfig
|
|
10703
|
-
|
|
11047
|
+
/** EncodedRecorderOutputConfig encoderId */
|
|
11048
|
+
encoderId?: (string|null);
|
|
10704
11049
|
|
|
10705
11050
|
/** EncodedRecorderOutputConfig filename */
|
|
10706
11051
|
filename?: (string|null);
|
|
@@ -10724,8 +11069,8 @@ export namespace sesame {
|
|
|
10724
11069
|
*/
|
|
10725
11070
|
constructor(properties?: sesame.v1.outputs.IEncodedRecorderOutputConfig);
|
|
10726
11071
|
|
|
10727
|
-
/** EncodedRecorderOutputConfig
|
|
10728
|
-
public
|
|
11072
|
+
/** EncodedRecorderOutputConfig encoderId. */
|
|
11073
|
+
public encoderId: string;
|
|
10729
11074
|
|
|
10730
11075
|
/** EncodedRecorderOutputConfig filename. */
|
|
10731
11076
|
public filename: string;
|
|
@@ -10956,8 +11301,8 @@ export namespace sesame {
|
|
|
10956
11301
|
/** EncodedSrtOutputConfig url */
|
|
10957
11302
|
url?: (string|null);
|
|
10958
11303
|
|
|
10959
|
-
/** EncodedSrtOutputConfig
|
|
10960
|
-
|
|
11304
|
+
/** EncodedSrtOutputConfig encoderId */
|
|
11305
|
+
encoderId?: (string|null);
|
|
10961
11306
|
}
|
|
10962
11307
|
|
|
10963
11308
|
/** Represents an EncodedSrtOutputConfig. */
|
|
@@ -10972,8 +11317,8 @@ export namespace sesame {
|
|
|
10972
11317
|
/** EncodedSrtOutputConfig url. */
|
|
10973
11318
|
public url: string;
|
|
10974
11319
|
|
|
10975
|
-
/** EncodedSrtOutputConfig
|
|
10976
|
-
public
|
|
11320
|
+
/** EncodedSrtOutputConfig encoderId. */
|
|
11321
|
+
public encoderId: string;
|
|
10977
11322
|
|
|
10978
11323
|
/**
|
|
10979
11324
|
* Creates a new EncodedSrtOutputConfig instance using the specified properties.
|
|
@@ -11056,8 +11401,8 @@ export namespace sesame {
|
|
|
11056
11401
|
/** Properties of an EncodedMoqOutputConfig. */
|
|
11057
11402
|
interface IEncodedMoqOutputConfig {
|
|
11058
11403
|
|
|
11059
|
-
/** EncodedMoqOutputConfig
|
|
11060
|
-
|
|
11404
|
+
/** EncodedMoqOutputConfig encoderId */
|
|
11405
|
+
encoderId?: (string|null);
|
|
11061
11406
|
|
|
11062
11407
|
/** EncodedMoqOutputConfig url */
|
|
11063
11408
|
url?: (string|null);
|
|
@@ -11081,8 +11426,8 @@ export namespace sesame {
|
|
|
11081
11426
|
*/
|
|
11082
11427
|
constructor(properties?: sesame.v1.outputs.IEncodedMoqOutputConfig);
|
|
11083
11428
|
|
|
11084
|
-
/** EncodedMoqOutputConfig
|
|
11085
|
-
public
|
|
11429
|
+
/** EncodedMoqOutputConfig encoderId. */
|
|
11430
|
+
public encoderId: string;
|
|
11086
11431
|
|
|
11087
11432
|
/** EncodedMoqOutputConfig url. */
|
|
11088
11433
|
public url: string;
|
|
@@ -11808,6 +12153,9 @@ export namespace sesame {
|
|
|
11808
12153
|
|
|
11809
12154
|
/** OutputStatus srtStats */
|
|
11810
12155
|
srtStats?: (sesame.v1.status.ISRTSendStatistics|null);
|
|
12156
|
+
|
|
12157
|
+
/** OutputStatus encoderId */
|
|
12158
|
+
encoderId?: (string|null);
|
|
11811
12159
|
}
|
|
11812
12160
|
|
|
11813
12161
|
/** Represents an OutputStatus. */
|
|
@@ -11840,6 +12188,9 @@ export namespace sesame {
|
|
|
11840
12188
|
/** OutputStatus srtStats. */
|
|
11841
12189
|
public srtStats?: (sesame.v1.status.ISRTSendStatistics|null);
|
|
11842
12190
|
|
|
12191
|
+
/** OutputStatus encoderId. */
|
|
12192
|
+
public encoderId: string;
|
|
12193
|
+
|
|
11843
12194
|
/**
|
|
11844
12195
|
* Creates a new OutputStatus instance using the specified properties.
|
|
11845
12196
|
* @param [properties] Properties to set
|
|
@@ -11917,6 +12268,127 @@ export namespace sesame {
|
|
|
11917
12268
|
*/
|
|
11918
12269
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11919
12270
|
}
|
|
12271
|
+
|
|
12272
|
+
/** Properties of an EncoderStatus. */
|
|
12273
|
+
interface IEncoderStatus {
|
|
12274
|
+
|
|
12275
|
+
/** EncoderStatus id */
|
|
12276
|
+
id?: (string|null);
|
|
12277
|
+
|
|
12278
|
+
/** EncoderStatus type */
|
|
12279
|
+
type?: (sesame.v1.outputs.EncoderType|null);
|
|
12280
|
+
|
|
12281
|
+
/** EncoderStatus state */
|
|
12282
|
+
state?: (sesame.v1.common.ConnectionState|null);
|
|
12283
|
+
|
|
12284
|
+
/** EncoderStatus msg */
|
|
12285
|
+
msg?: (string|null);
|
|
12286
|
+
|
|
12287
|
+
/** EncoderStatus compositionId */
|
|
12288
|
+
compositionId?: (string|null);
|
|
12289
|
+
}
|
|
12290
|
+
|
|
12291
|
+
/** Represents an EncoderStatus. */
|
|
12292
|
+
class EncoderStatus implements IEncoderStatus {
|
|
12293
|
+
|
|
12294
|
+
/**
|
|
12295
|
+
* Constructs a new EncoderStatus.
|
|
12296
|
+
* @param [properties] Properties to set
|
|
12297
|
+
*/
|
|
12298
|
+
constructor(properties?: sesame.v1.outputs.IEncoderStatus);
|
|
12299
|
+
|
|
12300
|
+
/** EncoderStatus id. */
|
|
12301
|
+
public id: string;
|
|
12302
|
+
|
|
12303
|
+
/** EncoderStatus type. */
|
|
12304
|
+
public type: sesame.v1.outputs.EncoderType;
|
|
12305
|
+
|
|
12306
|
+
/** EncoderStatus state. */
|
|
12307
|
+
public state: sesame.v1.common.ConnectionState;
|
|
12308
|
+
|
|
12309
|
+
/** EncoderStatus msg. */
|
|
12310
|
+
public msg?: (string|null);
|
|
12311
|
+
|
|
12312
|
+
/** EncoderStatus compositionId. */
|
|
12313
|
+
public compositionId: string;
|
|
12314
|
+
|
|
12315
|
+
/**
|
|
12316
|
+
* Creates a new EncoderStatus instance using the specified properties.
|
|
12317
|
+
* @param [properties] Properties to set
|
|
12318
|
+
* @returns EncoderStatus instance
|
|
12319
|
+
*/
|
|
12320
|
+
public static create(properties?: sesame.v1.outputs.IEncoderStatus): sesame.v1.outputs.EncoderStatus;
|
|
12321
|
+
|
|
12322
|
+
/**
|
|
12323
|
+
* Encodes the specified EncoderStatus message. Does not implicitly {@link sesame.v1.outputs.EncoderStatus.verify|verify} messages.
|
|
12324
|
+
* @param message EncoderStatus message or plain object to encode
|
|
12325
|
+
* @param [writer] Writer to encode to
|
|
12326
|
+
* @returns Writer
|
|
12327
|
+
*/
|
|
12328
|
+
public static encode(message: sesame.v1.outputs.IEncoderStatus, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12329
|
+
|
|
12330
|
+
/**
|
|
12331
|
+
* Encodes the specified EncoderStatus message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderStatus.verify|verify} messages.
|
|
12332
|
+
* @param message EncoderStatus message or plain object to encode
|
|
12333
|
+
* @param [writer] Writer to encode to
|
|
12334
|
+
* @returns Writer
|
|
12335
|
+
*/
|
|
12336
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderStatus, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12337
|
+
|
|
12338
|
+
/**
|
|
12339
|
+
* Decodes an EncoderStatus message from the specified reader or buffer.
|
|
12340
|
+
* @param reader Reader or buffer to decode from
|
|
12341
|
+
* @param [length] Message length if known beforehand
|
|
12342
|
+
* @returns EncoderStatus
|
|
12343
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12344
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12345
|
+
*/
|
|
12346
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderStatus;
|
|
12347
|
+
|
|
12348
|
+
/**
|
|
12349
|
+
* Decodes an EncoderStatus message from the specified reader or buffer, length delimited.
|
|
12350
|
+
* @param reader Reader or buffer to decode from
|
|
12351
|
+
* @returns EncoderStatus
|
|
12352
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12353
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12354
|
+
*/
|
|
12355
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderStatus;
|
|
12356
|
+
|
|
12357
|
+
/**
|
|
12358
|
+
* Verifies an EncoderStatus message.
|
|
12359
|
+
* @param message Plain object to verify
|
|
12360
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12361
|
+
*/
|
|
12362
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12363
|
+
|
|
12364
|
+
/**
|
|
12365
|
+
* Creates an EncoderStatus message from a plain object. Also converts values to their respective internal types.
|
|
12366
|
+
* @param object Plain object
|
|
12367
|
+
* @returns EncoderStatus
|
|
12368
|
+
*/
|
|
12369
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderStatus;
|
|
12370
|
+
|
|
12371
|
+
/**
|
|
12372
|
+
* Creates a plain object from an EncoderStatus message. Also converts values to other types if specified.
|
|
12373
|
+
* @param message EncoderStatus
|
|
12374
|
+
* @param [options] Conversion options
|
|
12375
|
+
* @returns Plain object
|
|
12376
|
+
*/
|
|
12377
|
+
public static toObject(message: sesame.v1.outputs.EncoderStatus, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12378
|
+
|
|
12379
|
+
/**
|
|
12380
|
+
* Converts this EncoderStatus to JSON.
|
|
12381
|
+
* @returns JSON object
|
|
12382
|
+
*/
|
|
12383
|
+
public toJSON(): { [k: string]: any };
|
|
12384
|
+
|
|
12385
|
+
/**
|
|
12386
|
+
* Gets the default type url for EncoderStatus
|
|
12387
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12388
|
+
* @returns The default type url
|
|
12389
|
+
*/
|
|
12390
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12391
|
+
}
|
|
11920
12392
|
}
|
|
11921
12393
|
|
|
11922
12394
|
/** Namespace compositor. */
|