@stinkycomputing/sesame-api-client 1.5.4 → 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/generated/property-types.d.ts +16 -1
- package/dist/generated/property-types.d.ts.map +1 -1
- package/dist/index.browser.mjs +2024 -306
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.cjs +2024 -306
- 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 +2024 -306
- package/dist/index.mjs.map +2 -2
- package/dist/proto/api.d.ts +857 -17
- package/dist/proto/api.js +5026 -2392
- package/package.json +1 -1
package/dist/proto/api.d.ts
CHANGED
|
@@ -372,6 +372,15 @@ export namespace sesame {
|
|
|
372
372
|
|
|
373
373
|
/** AudioMixerChannel plugins */
|
|
374
374
|
plugins?: (sesame.v1.audio.IAudioPlugin[]|null);
|
|
375
|
+
|
|
376
|
+
/** AudioMixerChannel mute */
|
|
377
|
+
mute?: (boolean|null);
|
|
378
|
+
|
|
379
|
+
/** AudioMixerChannel automationLevel */
|
|
380
|
+
automationLevel?: (number|null);
|
|
381
|
+
|
|
382
|
+
/** AudioMixerChannel automationMute */
|
|
383
|
+
automationMute?: (boolean|null);
|
|
375
384
|
}
|
|
376
385
|
|
|
377
386
|
/** Represents an AudioMixerChannel. */
|
|
@@ -404,6 +413,15 @@ export namespace sesame {
|
|
|
404
413
|
/** AudioMixerChannel plugins. */
|
|
405
414
|
public plugins: sesame.v1.audio.IAudioPlugin[];
|
|
406
415
|
|
|
416
|
+
/** AudioMixerChannel mute. */
|
|
417
|
+
public mute: boolean;
|
|
418
|
+
|
|
419
|
+
/** AudioMixerChannel automationLevel. */
|
|
420
|
+
public automationLevel?: (number|null);
|
|
421
|
+
|
|
422
|
+
/** AudioMixerChannel automationMute. */
|
|
423
|
+
public automationMute: boolean;
|
|
424
|
+
|
|
407
425
|
/**
|
|
408
426
|
* Creates a new AudioMixerChannel instance using the specified properties.
|
|
409
427
|
* @param [properties] Properties to set
|
|
@@ -482,6 +500,115 @@ export namespace sesame {
|
|
|
482
500
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
483
501
|
}
|
|
484
502
|
|
|
503
|
+
/** Properties of an AudioMixerOutput. */
|
|
504
|
+
interface IAudioMixerOutput {
|
|
505
|
+
|
|
506
|
+
/** AudioMixerOutput id */
|
|
507
|
+
id?: (string|null);
|
|
508
|
+
|
|
509
|
+
/** AudioMixerOutput excludedChannelIds */
|
|
510
|
+
excludedChannelIds?: (string[]|null);
|
|
511
|
+
|
|
512
|
+
/** AudioMixerOutput includeMasterPlugins */
|
|
513
|
+
includeMasterPlugins?: (boolean|null);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
/** Represents an AudioMixerOutput. */
|
|
517
|
+
class AudioMixerOutput implements IAudioMixerOutput {
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* Constructs a new AudioMixerOutput.
|
|
521
|
+
* @param [properties] Properties to set
|
|
522
|
+
*/
|
|
523
|
+
constructor(properties?: sesame.v1.audio.IAudioMixerOutput);
|
|
524
|
+
|
|
525
|
+
/** AudioMixerOutput id. */
|
|
526
|
+
public id: string;
|
|
527
|
+
|
|
528
|
+
/** AudioMixerOutput excludedChannelIds. */
|
|
529
|
+
public excludedChannelIds: string[];
|
|
530
|
+
|
|
531
|
+
/** AudioMixerOutput includeMasterPlugins. */
|
|
532
|
+
public includeMasterPlugins?: (boolean|null);
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* Creates a new AudioMixerOutput instance using the specified properties.
|
|
536
|
+
* @param [properties] Properties to set
|
|
537
|
+
* @returns AudioMixerOutput instance
|
|
538
|
+
*/
|
|
539
|
+
public static create(properties?: sesame.v1.audio.IAudioMixerOutput): sesame.v1.audio.AudioMixerOutput;
|
|
540
|
+
|
|
541
|
+
/**
|
|
542
|
+
* Encodes the specified AudioMixerOutput message. Does not implicitly {@link sesame.v1.audio.AudioMixerOutput.verify|verify} messages.
|
|
543
|
+
* @param message AudioMixerOutput message or plain object to encode
|
|
544
|
+
* @param [writer] Writer to encode to
|
|
545
|
+
* @returns Writer
|
|
546
|
+
*/
|
|
547
|
+
public static encode(message: sesame.v1.audio.IAudioMixerOutput, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* Encodes the specified AudioMixerOutput message, length delimited. Does not implicitly {@link sesame.v1.audio.AudioMixerOutput.verify|verify} messages.
|
|
551
|
+
* @param message AudioMixerOutput message or plain object to encode
|
|
552
|
+
* @param [writer] Writer to encode to
|
|
553
|
+
* @returns Writer
|
|
554
|
+
*/
|
|
555
|
+
public static encodeDelimited(message: sesame.v1.audio.IAudioMixerOutput, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* Decodes an AudioMixerOutput message from the specified reader or buffer.
|
|
559
|
+
* @param reader Reader or buffer to decode from
|
|
560
|
+
* @param [length] Message length if known beforehand
|
|
561
|
+
* @returns AudioMixerOutput
|
|
562
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
563
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
564
|
+
*/
|
|
565
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.audio.AudioMixerOutput;
|
|
566
|
+
|
|
567
|
+
/**
|
|
568
|
+
* Decodes an AudioMixerOutput message from the specified reader or buffer, length delimited.
|
|
569
|
+
* @param reader Reader or buffer to decode from
|
|
570
|
+
* @returns AudioMixerOutput
|
|
571
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
572
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
573
|
+
*/
|
|
574
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.audio.AudioMixerOutput;
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* Verifies an AudioMixerOutput message.
|
|
578
|
+
* @param message Plain object to verify
|
|
579
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
580
|
+
*/
|
|
581
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* Creates an AudioMixerOutput message from a plain object. Also converts values to their respective internal types.
|
|
585
|
+
* @param object Plain object
|
|
586
|
+
* @returns AudioMixerOutput
|
|
587
|
+
*/
|
|
588
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.audio.AudioMixerOutput;
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* Creates a plain object from an AudioMixerOutput message. Also converts values to other types if specified.
|
|
592
|
+
* @param message AudioMixerOutput
|
|
593
|
+
* @param [options] Conversion options
|
|
594
|
+
* @returns Plain object
|
|
595
|
+
*/
|
|
596
|
+
public static toObject(message: sesame.v1.audio.AudioMixerOutput, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
597
|
+
|
|
598
|
+
/**
|
|
599
|
+
* Converts this AudioMixerOutput to JSON.
|
|
600
|
+
* @returns JSON object
|
|
601
|
+
*/
|
|
602
|
+
public toJSON(): { [k: string]: any };
|
|
603
|
+
|
|
604
|
+
/**
|
|
605
|
+
* Gets the default type url for AudioMixerOutput
|
|
606
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
607
|
+
* @returns The default type url
|
|
608
|
+
*/
|
|
609
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
610
|
+
}
|
|
611
|
+
|
|
485
612
|
/** Properties of an AudioMixerConfig. */
|
|
486
613
|
interface IAudioMixerConfig {
|
|
487
614
|
|
|
@@ -493,6 +620,18 @@ export namespace sesame {
|
|
|
493
620
|
|
|
494
621
|
/** AudioMixerConfig order */
|
|
495
622
|
order?: (number|null);
|
|
623
|
+
|
|
624
|
+
/** AudioMixerConfig outputs */
|
|
625
|
+
outputs?: (sesame.v1.audio.IAudioMixerOutput[]|null);
|
|
626
|
+
|
|
627
|
+
/** AudioMixerConfig masterLevel */
|
|
628
|
+
masterLevel?: (number|null);
|
|
629
|
+
|
|
630
|
+
/** AudioMixerConfig masterAutomationLevel */
|
|
631
|
+
masterAutomationLevel?: (number|null);
|
|
632
|
+
|
|
633
|
+
/** AudioMixerConfig masterPlugins */
|
|
634
|
+
masterPlugins?: (sesame.v1.audio.IAudioPlugin[]|null);
|
|
496
635
|
}
|
|
497
636
|
|
|
498
637
|
/** Represents an AudioMixerConfig. */
|
|
@@ -513,6 +652,18 @@ export namespace sesame {
|
|
|
513
652
|
/** AudioMixerConfig order. */
|
|
514
653
|
public order: number;
|
|
515
654
|
|
|
655
|
+
/** AudioMixerConfig outputs. */
|
|
656
|
+
public outputs: sesame.v1.audio.IAudioMixerOutput[];
|
|
657
|
+
|
|
658
|
+
/** AudioMixerConfig masterLevel. */
|
|
659
|
+
public masterLevel?: (number|null);
|
|
660
|
+
|
|
661
|
+
/** AudioMixerConfig masterAutomationLevel. */
|
|
662
|
+
public masterAutomationLevel?: (number|null);
|
|
663
|
+
|
|
664
|
+
/** AudioMixerConfig masterPlugins. */
|
|
665
|
+
public masterPlugins: sesame.v1.audio.IAudioPlugin[];
|
|
666
|
+
|
|
516
667
|
/**
|
|
517
668
|
* Creates a new AudioMixerConfig instance using the specified properties.
|
|
518
669
|
* @param [properties] Properties to set
|
|
@@ -1235,6 +1386,21 @@ export namespace sesame {
|
|
|
1235
1386
|
|
|
1236
1387
|
/** AudioChannelStatus plugins */
|
|
1237
1388
|
plugins?: (sesame.v1.audio.IAudioChannelPluginStatus[]|null);
|
|
1389
|
+
|
|
1390
|
+
/** AudioChannelStatus mute */
|
|
1391
|
+
mute?: (boolean|null);
|
|
1392
|
+
|
|
1393
|
+
/** AudioChannelStatus automationLevel */
|
|
1394
|
+
automationLevel?: (number|null);
|
|
1395
|
+
|
|
1396
|
+
/** AudioChannelStatus automationMute */
|
|
1397
|
+
automationMute?: (boolean|null);
|
|
1398
|
+
|
|
1399
|
+
/** AudioChannelStatus effectiveLevel */
|
|
1400
|
+
effectiveLevel?: (number|null);
|
|
1401
|
+
|
|
1402
|
+
/** AudioChannelStatus effectiveMute */
|
|
1403
|
+
effectiveMute?: (boolean|null);
|
|
1238
1404
|
}
|
|
1239
1405
|
|
|
1240
1406
|
/** Represents an AudioChannelStatus. */
|
|
@@ -1270,6 +1436,21 @@ export namespace sesame {
|
|
|
1270
1436
|
/** AudioChannelStatus plugins. */
|
|
1271
1437
|
public plugins: sesame.v1.audio.IAudioChannelPluginStatus[];
|
|
1272
1438
|
|
|
1439
|
+
/** AudioChannelStatus mute. */
|
|
1440
|
+
public mute: boolean;
|
|
1441
|
+
|
|
1442
|
+
/** AudioChannelStatus automationLevel. */
|
|
1443
|
+
public automationLevel: number;
|
|
1444
|
+
|
|
1445
|
+
/** AudioChannelStatus automationMute. */
|
|
1446
|
+
public automationMute: boolean;
|
|
1447
|
+
|
|
1448
|
+
/** AudioChannelStatus effectiveLevel. */
|
|
1449
|
+
public effectiveLevel: number;
|
|
1450
|
+
|
|
1451
|
+
/** AudioChannelStatus effectiveMute. */
|
|
1452
|
+
public effectiveMute: boolean;
|
|
1453
|
+
|
|
1273
1454
|
/**
|
|
1274
1455
|
* Creates a new AudioChannelStatus instance using the specified properties.
|
|
1275
1456
|
* @param [properties] Properties to set
|
|
@@ -1348,6 +1529,127 @@ export namespace sesame {
|
|
|
1348
1529
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1349
1530
|
}
|
|
1350
1531
|
|
|
1532
|
+
/** Properties of an AudioMixerOutputStatus. */
|
|
1533
|
+
interface IAudioMixerOutputStatus {
|
|
1534
|
+
|
|
1535
|
+
/** AudioMixerOutputStatus id */
|
|
1536
|
+
id?: (string|null);
|
|
1537
|
+
|
|
1538
|
+
/** AudioMixerOutputStatus outputType */
|
|
1539
|
+
outputType?: (sesame.v1.audio.AudioMixerChannelType|null);
|
|
1540
|
+
|
|
1541
|
+
/** AudioMixerOutputStatus vu */
|
|
1542
|
+
vu?: (number[]|null);
|
|
1543
|
+
|
|
1544
|
+
/** AudioMixerOutputStatus excludedChannelIds */
|
|
1545
|
+
excludedChannelIds?: (string[]|null);
|
|
1546
|
+
|
|
1547
|
+
/** AudioMixerOutputStatus includeMasterPlugins */
|
|
1548
|
+
includeMasterPlugins?: (boolean|null);
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
/** Represents an AudioMixerOutputStatus. */
|
|
1552
|
+
class AudioMixerOutputStatus implements IAudioMixerOutputStatus {
|
|
1553
|
+
|
|
1554
|
+
/**
|
|
1555
|
+
* Constructs a new AudioMixerOutputStatus.
|
|
1556
|
+
* @param [properties] Properties to set
|
|
1557
|
+
*/
|
|
1558
|
+
constructor(properties?: sesame.v1.audio.IAudioMixerOutputStatus);
|
|
1559
|
+
|
|
1560
|
+
/** AudioMixerOutputStatus id. */
|
|
1561
|
+
public id: string;
|
|
1562
|
+
|
|
1563
|
+
/** AudioMixerOutputStatus outputType. */
|
|
1564
|
+
public outputType: sesame.v1.audio.AudioMixerChannelType;
|
|
1565
|
+
|
|
1566
|
+
/** AudioMixerOutputStatus vu. */
|
|
1567
|
+
public vu: number[];
|
|
1568
|
+
|
|
1569
|
+
/** AudioMixerOutputStatus excludedChannelIds. */
|
|
1570
|
+
public excludedChannelIds: string[];
|
|
1571
|
+
|
|
1572
|
+
/** AudioMixerOutputStatus includeMasterPlugins. */
|
|
1573
|
+
public includeMasterPlugins: boolean;
|
|
1574
|
+
|
|
1575
|
+
/**
|
|
1576
|
+
* Creates a new AudioMixerOutputStatus instance using the specified properties.
|
|
1577
|
+
* @param [properties] Properties to set
|
|
1578
|
+
* @returns AudioMixerOutputStatus instance
|
|
1579
|
+
*/
|
|
1580
|
+
public static create(properties?: sesame.v1.audio.IAudioMixerOutputStatus): sesame.v1.audio.AudioMixerOutputStatus;
|
|
1581
|
+
|
|
1582
|
+
/**
|
|
1583
|
+
* Encodes the specified AudioMixerOutputStatus message. Does not implicitly {@link sesame.v1.audio.AudioMixerOutputStatus.verify|verify} messages.
|
|
1584
|
+
* @param message AudioMixerOutputStatus message or plain object to encode
|
|
1585
|
+
* @param [writer] Writer to encode to
|
|
1586
|
+
* @returns Writer
|
|
1587
|
+
*/
|
|
1588
|
+
public static encode(message: sesame.v1.audio.IAudioMixerOutputStatus, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1589
|
+
|
|
1590
|
+
/**
|
|
1591
|
+
* Encodes the specified AudioMixerOutputStatus message, length delimited. Does not implicitly {@link sesame.v1.audio.AudioMixerOutputStatus.verify|verify} messages.
|
|
1592
|
+
* @param message AudioMixerOutputStatus message or plain object to encode
|
|
1593
|
+
* @param [writer] Writer to encode to
|
|
1594
|
+
* @returns Writer
|
|
1595
|
+
*/
|
|
1596
|
+
public static encodeDelimited(message: sesame.v1.audio.IAudioMixerOutputStatus, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
1597
|
+
|
|
1598
|
+
/**
|
|
1599
|
+
* Decodes an AudioMixerOutputStatus message from the specified reader or buffer.
|
|
1600
|
+
* @param reader Reader or buffer to decode from
|
|
1601
|
+
* @param [length] Message length if known beforehand
|
|
1602
|
+
* @returns AudioMixerOutputStatus
|
|
1603
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1604
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1605
|
+
*/
|
|
1606
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.audio.AudioMixerOutputStatus;
|
|
1607
|
+
|
|
1608
|
+
/**
|
|
1609
|
+
* Decodes an AudioMixerOutputStatus message from the specified reader or buffer, length delimited.
|
|
1610
|
+
* @param reader Reader or buffer to decode from
|
|
1611
|
+
* @returns AudioMixerOutputStatus
|
|
1612
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
1613
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
1614
|
+
*/
|
|
1615
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.audio.AudioMixerOutputStatus;
|
|
1616
|
+
|
|
1617
|
+
/**
|
|
1618
|
+
* Verifies an AudioMixerOutputStatus message.
|
|
1619
|
+
* @param message Plain object to verify
|
|
1620
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
1621
|
+
*/
|
|
1622
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
1623
|
+
|
|
1624
|
+
/**
|
|
1625
|
+
* Creates an AudioMixerOutputStatus message from a plain object. Also converts values to their respective internal types.
|
|
1626
|
+
* @param object Plain object
|
|
1627
|
+
* @returns AudioMixerOutputStatus
|
|
1628
|
+
*/
|
|
1629
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.audio.AudioMixerOutputStatus;
|
|
1630
|
+
|
|
1631
|
+
/**
|
|
1632
|
+
* Creates a plain object from an AudioMixerOutputStatus message. Also converts values to other types if specified.
|
|
1633
|
+
* @param message AudioMixerOutputStatus
|
|
1634
|
+
* @param [options] Conversion options
|
|
1635
|
+
* @returns Plain object
|
|
1636
|
+
*/
|
|
1637
|
+
public static toObject(message: sesame.v1.audio.AudioMixerOutputStatus, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
* Converts this AudioMixerOutputStatus to JSON.
|
|
1641
|
+
* @returns JSON object
|
|
1642
|
+
*/
|
|
1643
|
+
public toJSON(): { [k: string]: any };
|
|
1644
|
+
|
|
1645
|
+
/**
|
|
1646
|
+
* Gets the default type url for AudioMixerOutputStatus
|
|
1647
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1648
|
+
* @returns The default type url
|
|
1649
|
+
*/
|
|
1650
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1351
1653
|
/** Properties of an AudioMixerStatus. */
|
|
1352
1654
|
interface IAudioMixerStatus {
|
|
1353
1655
|
|
|
@@ -1362,6 +1664,21 @@ export namespace sesame {
|
|
|
1362
1664
|
|
|
1363
1665
|
/** AudioMixerStatus channels */
|
|
1364
1666
|
channels?: (sesame.v1.audio.IAudioChannelStatus[]|null);
|
|
1667
|
+
|
|
1668
|
+
/** AudioMixerStatus masterLevel */
|
|
1669
|
+
masterLevel?: (number|null);
|
|
1670
|
+
|
|
1671
|
+
/** AudioMixerStatus masterAutomationLevel */
|
|
1672
|
+
masterAutomationLevel?: (number|null);
|
|
1673
|
+
|
|
1674
|
+
/** AudioMixerStatus masterEffectiveLevel */
|
|
1675
|
+
masterEffectiveLevel?: (number|null);
|
|
1676
|
+
|
|
1677
|
+
/** AudioMixerStatus masterPlugins */
|
|
1678
|
+
masterPlugins?: (sesame.v1.audio.IAudioChannelPluginStatus[]|null);
|
|
1679
|
+
|
|
1680
|
+
/** AudioMixerStatus outputs */
|
|
1681
|
+
outputs?: (sesame.v1.audio.IAudioMixerOutputStatus[]|null);
|
|
1365
1682
|
}
|
|
1366
1683
|
|
|
1367
1684
|
/** Represents an AudioMixerStatus. */
|
|
@@ -1385,6 +1702,21 @@ export namespace sesame {
|
|
|
1385
1702
|
/** AudioMixerStatus channels. */
|
|
1386
1703
|
public channels: sesame.v1.audio.IAudioChannelStatus[];
|
|
1387
1704
|
|
|
1705
|
+
/** AudioMixerStatus masterLevel. */
|
|
1706
|
+
public masterLevel: number;
|
|
1707
|
+
|
|
1708
|
+
/** AudioMixerStatus masterAutomationLevel. */
|
|
1709
|
+
public masterAutomationLevel: number;
|
|
1710
|
+
|
|
1711
|
+
/** AudioMixerStatus masterEffectiveLevel. */
|
|
1712
|
+
public masterEffectiveLevel: number;
|
|
1713
|
+
|
|
1714
|
+
/** AudioMixerStatus masterPlugins. */
|
|
1715
|
+
public masterPlugins: sesame.v1.audio.IAudioChannelPluginStatus[];
|
|
1716
|
+
|
|
1717
|
+
/** AudioMixerStatus outputs. */
|
|
1718
|
+
public outputs: sesame.v1.audio.IAudioMixerOutputStatus[];
|
|
1719
|
+
|
|
1388
1720
|
/**
|
|
1389
1721
|
* Creates a new AudioMixerStatus instance using the specified properties.
|
|
1390
1722
|
* @param [properties] Properties to set
|
|
@@ -1580,6 +1912,15 @@ export namespace sesame {
|
|
|
1580
1912
|
|
|
1581
1913
|
/** AudioChannelControlRequest plugins */
|
|
1582
1914
|
plugins?: (sesame.v1.audio.IAudioPluginControlRequest[]|null);
|
|
1915
|
+
|
|
1916
|
+
/** AudioChannelControlRequest mute */
|
|
1917
|
+
mute?: (boolean|null);
|
|
1918
|
+
|
|
1919
|
+
/** AudioChannelControlRequest automationLevel */
|
|
1920
|
+
automationLevel?: (number|null);
|
|
1921
|
+
|
|
1922
|
+
/** AudioChannelControlRequest automationMute */
|
|
1923
|
+
automationMute?: (boolean|null);
|
|
1583
1924
|
}
|
|
1584
1925
|
|
|
1585
1926
|
/** Represents an AudioChannelControlRequest. */
|
|
@@ -1603,6 +1944,15 @@ export namespace sesame {
|
|
|
1603
1944
|
/** AudioChannelControlRequest plugins. */
|
|
1604
1945
|
public plugins: sesame.v1.audio.IAudioPluginControlRequest[];
|
|
1605
1946
|
|
|
1947
|
+
/** AudioChannelControlRequest mute. */
|
|
1948
|
+
public mute?: (boolean|null);
|
|
1949
|
+
|
|
1950
|
+
/** AudioChannelControlRequest automationLevel. */
|
|
1951
|
+
public automationLevel?: (number|null);
|
|
1952
|
+
|
|
1953
|
+
/** AudioChannelControlRequest automationMute. */
|
|
1954
|
+
public automationMute?: (boolean|null);
|
|
1955
|
+
|
|
1606
1956
|
/**
|
|
1607
1957
|
* Creates a new AudioChannelControlRequest instance using the specified properties.
|
|
1608
1958
|
* @param [properties] Properties to set
|
|
@@ -1686,6 +2036,15 @@ export namespace sesame {
|
|
|
1686
2036
|
|
|
1687
2037
|
/** AudioControlRequest channels */
|
|
1688
2038
|
channels?: (sesame.v1.audio.IAudioChannelControlRequest[]|null);
|
|
2039
|
+
|
|
2040
|
+
/** AudioControlRequest masterLevel */
|
|
2041
|
+
masterLevel?: (number|null);
|
|
2042
|
+
|
|
2043
|
+
/** AudioControlRequest masterAutomationLevel */
|
|
2044
|
+
masterAutomationLevel?: (number|null);
|
|
2045
|
+
|
|
2046
|
+
/** AudioControlRequest masterPlugins */
|
|
2047
|
+
masterPlugins?: (sesame.v1.audio.IAudioPluginControlRequest[]|null);
|
|
1689
2048
|
}
|
|
1690
2049
|
|
|
1691
2050
|
/** Represents an AudioControlRequest. */
|
|
@@ -1700,6 +2059,15 @@ export namespace sesame {
|
|
|
1700
2059
|
/** AudioControlRequest channels. */
|
|
1701
2060
|
public channels: sesame.v1.audio.IAudioChannelControlRequest[];
|
|
1702
2061
|
|
|
2062
|
+
/** AudioControlRequest masterLevel. */
|
|
2063
|
+
public masterLevel?: (number|null);
|
|
2064
|
+
|
|
2065
|
+
/** AudioControlRequest masterAutomationLevel. */
|
|
2066
|
+
public masterAutomationLevel?: (number|null);
|
|
2067
|
+
|
|
2068
|
+
/** AudioControlRequest masterPlugins. */
|
|
2069
|
+
public masterPlugins: sesame.v1.audio.IAudioPluginControlRequest[];
|
|
2070
|
+
|
|
1703
2071
|
/**
|
|
1704
2072
|
* Creates a new AudioControlRequest instance using the specified properties.
|
|
1705
2073
|
* @param [properties] Properties to set
|
|
@@ -1860,6 +2228,15 @@ export namespace sesame {
|
|
|
1860
2228
|
/** CommandListItem setMetadataBindings */
|
|
1861
2229
|
setMetadataBindings?: (sesame.v1.commands.ISetMetadataBindingsRequest|null);
|
|
1862
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
|
+
|
|
1863
2240
|
/** CommandListItem transactionId */
|
|
1864
2241
|
transactionId?: (number|null);
|
|
1865
2242
|
|
|
@@ -1951,6 +2328,15 @@ export namespace sesame {
|
|
|
1951
2328
|
/** CommandListItem setMetadataBindings. */
|
|
1952
2329
|
public setMetadataBindings?: (sesame.v1.commands.ISetMetadataBindingsRequest|null);
|
|
1953
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
|
+
|
|
1954
2340
|
/** CommandListItem transactionId. */
|
|
1955
2341
|
public transactionId?: (number|null);
|
|
1956
2342
|
|
|
@@ -1958,7 +2344,7 @@ export namespace sesame {
|
|
|
1958
2344
|
public transactionDeps: number[];
|
|
1959
2345
|
|
|
1960
2346
|
/** CommandListItem item. */
|
|
1961
|
-
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");
|
|
1962
2348
|
|
|
1963
2349
|
/**
|
|
1964
2350
|
* Creates a new CommandListItem instance using the specified properties.
|
|
@@ -9177,6 +9563,9 @@ export namespace sesame {
|
|
|
9177
9563
|
|
|
9178
9564
|
/** Status recorders */
|
|
9179
9565
|
recorders?: (sesame.v1.recorder.IRecorderStatus[]|null);
|
|
9566
|
+
|
|
9567
|
+
/** Status encoders */
|
|
9568
|
+
encoders?: (sesame.v1.outputs.IEncoderStatus[]|null);
|
|
9180
9569
|
}
|
|
9181
9570
|
|
|
9182
9571
|
/** Represents a Status. */
|
|
@@ -9212,6 +9601,9 @@ export namespace sesame {
|
|
|
9212
9601
|
/** Status recorders. */
|
|
9213
9602
|
public recorders: sesame.v1.recorder.IRecorderStatus[];
|
|
9214
9603
|
|
|
9604
|
+
/** Status encoders. */
|
|
9605
|
+
public encoders: sesame.v1.outputs.IEncoderStatus[];
|
|
9606
|
+
|
|
9215
9607
|
/**
|
|
9216
9608
|
* Creates a new Status instance using the specified properties.
|
|
9217
9609
|
* @param [properties] Properties to set
|
|
@@ -9962,6 +10354,12 @@ export namespace sesame {
|
|
|
9962
10354
|
OUTPUT_TYPE_ENCODED_SUPER_SLOWMO_RECORDER = 7
|
|
9963
10355
|
}
|
|
9964
10356
|
|
|
10357
|
+
/** EncoderType enum. */
|
|
10358
|
+
enum EncoderType {
|
|
10359
|
+
ENCODER_TYPE_UNSPECIFIED = 0,
|
|
10360
|
+
ENCODER_TYPE_VIDEO = 1
|
|
10361
|
+
}
|
|
10362
|
+
|
|
9965
10363
|
/** EncoderPreset enum. */
|
|
9966
10364
|
enum EncoderPreset {
|
|
9967
10365
|
ENCODER_PRESET_UNSPECIFIED = 0,
|
|
@@ -10110,6 +10508,321 @@ export namespace sesame {
|
|
|
10110
10508
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10111
10509
|
}
|
|
10112
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
|
+
|
|
10113
10826
|
/** Properties of a DecklinkOutputConfig. */
|
|
10114
10827
|
interface IDecklinkOutputConfig {
|
|
10115
10828
|
|
|
@@ -10225,8 +10938,8 @@ export namespace sesame {
|
|
|
10225
10938
|
/** EncodedWebSocketOutputConfig channel */
|
|
10226
10939
|
channel?: (string|null);
|
|
10227
10940
|
|
|
10228
|
-
/** EncodedWebSocketOutputConfig
|
|
10229
|
-
|
|
10941
|
+
/** EncodedWebSocketOutputConfig encoderId */
|
|
10942
|
+
encoderId?: (string|null);
|
|
10230
10943
|
|
|
10231
10944
|
/** EncodedWebSocketOutputConfig metadataTracks */
|
|
10232
10945
|
metadataTracks?: (string[]|null);
|
|
@@ -10244,8 +10957,8 @@ export namespace sesame {
|
|
|
10244
10957
|
/** EncodedWebSocketOutputConfig channel. */
|
|
10245
10958
|
public channel: string;
|
|
10246
10959
|
|
|
10247
|
-
/** EncodedWebSocketOutputConfig
|
|
10248
|
-
public
|
|
10960
|
+
/** EncodedWebSocketOutputConfig encoderId. */
|
|
10961
|
+
public encoderId: string;
|
|
10249
10962
|
|
|
10250
10963
|
/** EncodedWebSocketOutputConfig metadataTracks. */
|
|
10251
10964
|
public metadataTracks: string[];
|
|
@@ -10331,8 +11044,8 @@ export namespace sesame {
|
|
|
10331
11044
|
/** Properties of an EncodedRecorderOutputConfig. */
|
|
10332
11045
|
interface IEncodedRecorderOutputConfig {
|
|
10333
11046
|
|
|
10334
|
-
/** EncodedRecorderOutputConfig
|
|
10335
|
-
|
|
11047
|
+
/** EncodedRecorderOutputConfig encoderId */
|
|
11048
|
+
encoderId?: (string|null);
|
|
10336
11049
|
|
|
10337
11050
|
/** EncodedRecorderOutputConfig filename */
|
|
10338
11051
|
filename?: (string|null);
|
|
@@ -10356,8 +11069,8 @@ export namespace sesame {
|
|
|
10356
11069
|
*/
|
|
10357
11070
|
constructor(properties?: sesame.v1.outputs.IEncodedRecorderOutputConfig);
|
|
10358
11071
|
|
|
10359
|
-
/** EncodedRecorderOutputConfig
|
|
10360
|
-
public
|
|
11072
|
+
/** EncodedRecorderOutputConfig encoderId. */
|
|
11073
|
+
public encoderId: string;
|
|
10361
11074
|
|
|
10362
11075
|
/** EncodedRecorderOutputConfig filename. */
|
|
10363
11076
|
public filename: string;
|
|
@@ -10588,8 +11301,8 @@ export namespace sesame {
|
|
|
10588
11301
|
/** EncodedSrtOutputConfig url */
|
|
10589
11302
|
url?: (string|null);
|
|
10590
11303
|
|
|
10591
|
-
/** EncodedSrtOutputConfig
|
|
10592
|
-
|
|
11304
|
+
/** EncodedSrtOutputConfig encoderId */
|
|
11305
|
+
encoderId?: (string|null);
|
|
10593
11306
|
}
|
|
10594
11307
|
|
|
10595
11308
|
/** Represents an EncodedSrtOutputConfig. */
|
|
@@ -10604,8 +11317,8 @@ export namespace sesame {
|
|
|
10604
11317
|
/** EncodedSrtOutputConfig url. */
|
|
10605
11318
|
public url: string;
|
|
10606
11319
|
|
|
10607
|
-
/** EncodedSrtOutputConfig
|
|
10608
|
-
public
|
|
11320
|
+
/** EncodedSrtOutputConfig encoderId. */
|
|
11321
|
+
public encoderId: string;
|
|
10609
11322
|
|
|
10610
11323
|
/**
|
|
10611
11324
|
* Creates a new EncodedSrtOutputConfig instance using the specified properties.
|
|
@@ -10688,8 +11401,8 @@ export namespace sesame {
|
|
|
10688
11401
|
/** Properties of an EncodedMoqOutputConfig. */
|
|
10689
11402
|
interface IEncodedMoqOutputConfig {
|
|
10690
11403
|
|
|
10691
|
-
/** EncodedMoqOutputConfig
|
|
10692
|
-
|
|
11404
|
+
/** EncodedMoqOutputConfig encoderId */
|
|
11405
|
+
encoderId?: (string|null);
|
|
10693
11406
|
|
|
10694
11407
|
/** EncodedMoqOutputConfig url */
|
|
10695
11408
|
url?: (string|null);
|
|
@@ -10713,8 +11426,8 @@ export namespace sesame {
|
|
|
10713
11426
|
*/
|
|
10714
11427
|
constructor(properties?: sesame.v1.outputs.IEncodedMoqOutputConfig);
|
|
10715
11428
|
|
|
10716
|
-
/** EncodedMoqOutputConfig
|
|
10717
|
-
public
|
|
11429
|
+
/** EncodedMoqOutputConfig encoderId. */
|
|
11430
|
+
public encoderId: string;
|
|
10718
11431
|
|
|
10719
11432
|
/** EncodedMoqOutputConfig url. */
|
|
10720
11433
|
public url: string;
|
|
@@ -11440,6 +12153,9 @@ export namespace sesame {
|
|
|
11440
12153
|
|
|
11441
12154
|
/** OutputStatus srtStats */
|
|
11442
12155
|
srtStats?: (sesame.v1.status.ISRTSendStatistics|null);
|
|
12156
|
+
|
|
12157
|
+
/** OutputStatus encoderId */
|
|
12158
|
+
encoderId?: (string|null);
|
|
11443
12159
|
}
|
|
11444
12160
|
|
|
11445
12161
|
/** Represents an OutputStatus. */
|
|
@@ -11472,6 +12188,9 @@ export namespace sesame {
|
|
|
11472
12188
|
/** OutputStatus srtStats. */
|
|
11473
12189
|
public srtStats?: (sesame.v1.status.ISRTSendStatistics|null);
|
|
11474
12190
|
|
|
12191
|
+
/** OutputStatus encoderId. */
|
|
12192
|
+
public encoderId: string;
|
|
12193
|
+
|
|
11475
12194
|
/**
|
|
11476
12195
|
* Creates a new OutputStatus instance using the specified properties.
|
|
11477
12196
|
* @param [properties] Properties to set
|
|
@@ -11549,6 +12268,127 @@ export namespace sesame {
|
|
|
11549
12268
|
*/
|
|
11550
12269
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11551
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
|
+
}
|
|
11552
12392
|
}
|
|
11553
12393
|
|
|
11554
12394
|
/** Namespace compositor. */
|