@stinkycomputing/sesame-api-client 1.5.7 → 1.5.9
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/README.md +7 -7
- package/dist/command-list.d.ts +11 -6
- 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 +2406 -327
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.cjs +2406 -327
- 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 +2406 -327
- package/dist/index.mjs.map +2 -2
- package/dist/proto/api.d.ts +1033 -48
- package/dist/proto/api.js +6660 -3508
- package/dist/sesame-api-client.d.ts +4 -1
- package/dist/sesame-api-client.d.ts.map +1 -1
- package/docs/protocol-reference.md +98 -76
- 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,18 @@ 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
|
+
|
|
2240
|
+
/** CommandListItem takePlaylist */
|
|
2241
|
+
takePlaylist?: (sesame.v1.sources.ITakePlaylistRequest|null);
|
|
2242
|
+
|
|
1863
2243
|
/** CommandListItem transactionId */
|
|
1864
2244
|
transactionId?: (number|null);
|
|
1865
2245
|
|
|
@@ -1951,6 +2331,18 @@ export namespace sesame {
|
|
|
1951
2331
|
/** CommandListItem setMetadataBindings. */
|
|
1952
2332
|
public setMetadataBindings?: (sesame.v1.commands.ISetMetadataBindingsRequest|null);
|
|
1953
2333
|
|
|
2334
|
+
/** CommandListItem addEncoder. */
|
|
2335
|
+
public addEncoder?: (sesame.v1.outputs.IEncoderAddRequest|null);
|
|
2336
|
+
|
|
2337
|
+
/** CommandListItem updateEncoder. */
|
|
2338
|
+
public updateEncoder?: (sesame.v1.outputs.IEncoderUpdateRequest|null);
|
|
2339
|
+
|
|
2340
|
+
/** CommandListItem removeEncoder. */
|
|
2341
|
+
public removeEncoder?: (sesame.v1.outputs.IEncoderRemoveRequest|null);
|
|
2342
|
+
|
|
2343
|
+
/** CommandListItem takePlaylist. */
|
|
2344
|
+
public takePlaylist?: (sesame.v1.sources.ITakePlaylistRequest|null);
|
|
2345
|
+
|
|
1954
2346
|
/** CommandListItem transactionId. */
|
|
1955
2347
|
public transactionId?: (number|null);
|
|
1956
2348
|
|
|
@@ -1958,7 +2350,7 @@ export namespace sesame {
|
|
|
1958
2350
|
public transactionDeps: number[];
|
|
1959
2351
|
|
|
1960
2352
|
/** 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");
|
|
2353
|
+
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"|"takePlaylist");
|
|
1962
2354
|
|
|
1963
2355
|
/**
|
|
1964
2356
|
* Creates a new CommandListItem instance using the specified properties.
|
|
@@ -5851,91 +6243,230 @@ export namespace sesame {
|
|
|
5851
6243
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5852
6244
|
}
|
|
5853
6245
|
|
|
5854
|
-
/** Properties of
|
|
5855
|
-
interface
|
|
6246
|
+
/** Properties of a TakePlaylistRequest. */
|
|
6247
|
+
interface ITakePlaylistRequest {
|
|
5856
6248
|
|
|
5857
|
-
/**
|
|
6249
|
+
/** TakePlaylistRequest sourceId */
|
|
5858
6250
|
sourceId?: (string|null);
|
|
6251
|
+
|
|
6252
|
+
/** TakePlaylistRequest userPlaylistId */
|
|
6253
|
+
userPlaylistId?: (string|null);
|
|
6254
|
+
|
|
6255
|
+
/** TakePlaylistRequest items */
|
|
6256
|
+
items?: (sesame.v1.recorder.IPlaylistItem[]|null);
|
|
6257
|
+
|
|
6258
|
+
/** TakePlaylistRequest startTimeUs */
|
|
6259
|
+
startTimeUs?: (number|Long|null);
|
|
6260
|
+
|
|
6261
|
+
/** TakePlaylistRequest startIndex */
|
|
6262
|
+
startIndex?: (number|Long|null);
|
|
6263
|
+
|
|
6264
|
+
/** TakePlaylistRequest materialPosUs */
|
|
6265
|
+
materialPosUs?: (number|Long|null);
|
|
6266
|
+
|
|
6267
|
+
/** TakePlaylistRequest transitionTimeUs */
|
|
6268
|
+
transitionTimeUs?: (number|Long|null);
|
|
6269
|
+
|
|
6270
|
+
/** TakePlaylistRequest playbackSpeed */
|
|
6271
|
+
playbackSpeed?: (number|null);
|
|
5859
6272
|
}
|
|
5860
6273
|
|
|
5861
|
-
/** Represents
|
|
5862
|
-
class
|
|
6274
|
+
/** Represents a TakePlaylistRequest. */
|
|
6275
|
+
class TakePlaylistRequest implements ITakePlaylistRequest {
|
|
5863
6276
|
|
|
5864
6277
|
/**
|
|
5865
|
-
* Constructs a new
|
|
6278
|
+
* Constructs a new TakePlaylistRequest.
|
|
5866
6279
|
* @param [properties] Properties to set
|
|
5867
6280
|
*/
|
|
5868
|
-
constructor(properties?: sesame.v1.sources.
|
|
6281
|
+
constructor(properties?: sesame.v1.sources.ITakePlaylistRequest);
|
|
5869
6282
|
|
|
5870
|
-
/**
|
|
6283
|
+
/** TakePlaylistRequest sourceId. */
|
|
5871
6284
|
public sourceId: string;
|
|
5872
6285
|
|
|
6286
|
+
/** TakePlaylistRequest userPlaylistId. */
|
|
6287
|
+
public userPlaylistId: string;
|
|
6288
|
+
|
|
6289
|
+
/** TakePlaylistRequest items. */
|
|
6290
|
+
public items: sesame.v1.recorder.IPlaylistItem[];
|
|
6291
|
+
|
|
6292
|
+
/** TakePlaylistRequest startTimeUs. */
|
|
6293
|
+
public startTimeUs?: (number|Long|null);
|
|
6294
|
+
|
|
6295
|
+
/** TakePlaylistRequest startIndex. */
|
|
6296
|
+
public startIndex?: (number|Long|null);
|
|
6297
|
+
|
|
6298
|
+
/** TakePlaylistRequest materialPosUs. */
|
|
6299
|
+
public materialPosUs?: (number|Long|null);
|
|
6300
|
+
|
|
6301
|
+
/** TakePlaylistRequest transitionTimeUs. */
|
|
6302
|
+
public transitionTimeUs?: (number|Long|null);
|
|
6303
|
+
|
|
6304
|
+
/** TakePlaylistRequest playbackSpeed. */
|
|
6305
|
+
public playbackSpeed?: (number|null);
|
|
6306
|
+
|
|
5873
6307
|
/**
|
|
5874
|
-
* Creates a new
|
|
6308
|
+
* Creates a new TakePlaylistRequest instance using the specified properties.
|
|
5875
6309
|
* @param [properties] Properties to set
|
|
5876
|
-
* @returns
|
|
6310
|
+
* @returns TakePlaylistRequest instance
|
|
5877
6311
|
*/
|
|
5878
|
-
public static create(properties?: sesame.v1.sources.
|
|
6312
|
+
public static create(properties?: sesame.v1.sources.ITakePlaylistRequest): sesame.v1.sources.TakePlaylistRequest;
|
|
5879
6313
|
|
|
5880
6314
|
/**
|
|
5881
|
-
* Encodes the specified
|
|
5882
|
-
* @param message
|
|
6315
|
+
* Encodes the specified TakePlaylistRequest message. Does not implicitly {@link sesame.v1.sources.TakePlaylistRequest.verify|verify} messages.
|
|
6316
|
+
* @param message TakePlaylistRequest message or plain object to encode
|
|
5883
6317
|
* @param [writer] Writer to encode to
|
|
5884
6318
|
* @returns Writer
|
|
5885
6319
|
*/
|
|
5886
|
-
public static encode(message: sesame.v1.sources.
|
|
6320
|
+
public static encode(message: sesame.v1.sources.ITakePlaylistRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5887
6321
|
|
|
5888
6322
|
/**
|
|
5889
|
-
* Encodes the specified
|
|
5890
|
-
* @param message
|
|
6323
|
+
* Encodes the specified TakePlaylistRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.TakePlaylistRequest.verify|verify} messages.
|
|
6324
|
+
* @param message TakePlaylistRequest message or plain object to encode
|
|
5891
6325
|
* @param [writer] Writer to encode to
|
|
5892
6326
|
* @returns Writer
|
|
5893
6327
|
*/
|
|
5894
|
-
public static encodeDelimited(message: sesame.v1.sources.
|
|
6328
|
+
public static encodeDelimited(message: sesame.v1.sources.ITakePlaylistRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5895
6329
|
|
|
5896
6330
|
/**
|
|
5897
|
-
* Decodes
|
|
6331
|
+
* Decodes a TakePlaylistRequest message from the specified reader or buffer.
|
|
5898
6332
|
* @param reader Reader or buffer to decode from
|
|
5899
6333
|
* @param [length] Message length if known beforehand
|
|
5900
|
-
* @returns
|
|
6334
|
+
* @returns TakePlaylistRequest
|
|
5901
6335
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5902
6336
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5903
6337
|
*/
|
|
5904
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.
|
|
6338
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.TakePlaylistRequest;
|
|
5905
6339
|
|
|
5906
6340
|
/**
|
|
5907
|
-
* Decodes
|
|
6341
|
+
* Decodes a TakePlaylistRequest message from the specified reader or buffer, length delimited.
|
|
5908
6342
|
* @param reader Reader or buffer to decode from
|
|
5909
|
-
* @returns
|
|
6343
|
+
* @returns TakePlaylistRequest
|
|
5910
6344
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5911
6345
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5912
6346
|
*/
|
|
5913
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.
|
|
6347
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.TakePlaylistRequest;
|
|
5914
6348
|
|
|
5915
6349
|
/**
|
|
5916
|
-
* Verifies
|
|
6350
|
+
* Verifies a TakePlaylistRequest message.
|
|
5917
6351
|
* @param message Plain object to verify
|
|
5918
6352
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
5919
6353
|
*/
|
|
5920
6354
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
5921
6355
|
|
|
5922
6356
|
/**
|
|
5923
|
-
* Creates
|
|
6357
|
+
* Creates a TakePlaylistRequest message from a plain object. Also converts values to their respective internal types.
|
|
5924
6358
|
* @param object Plain object
|
|
5925
|
-
* @returns
|
|
6359
|
+
* @returns TakePlaylistRequest
|
|
5926
6360
|
*/
|
|
5927
|
-
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.
|
|
6361
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.TakePlaylistRequest;
|
|
5928
6362
|
|
|
5929
6363
|
/**
|
|
5930
|
-
* Creates a plain object from
|
|
5931
|
-
* @param message
|
|
6364
|
+
* Creates a plain object from a TakePlaylistRequest message. Also converts values to other types if specified.
|
|
6365
|
+
* @param message TakePlaylistRequest
|
|
5932
6366
|
* @param [options] Conversion options
|
|
5933
6367
|
* @returns Plain object
|
|
5934
6368
|
*/
|
|
5935
|
-
public static toObject(message: sesame.v1.sources.
|
|
6369
|
+
public static toObject(message: sesame.v1.sources.TakePlaylistRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
5936
6370
|
|
|
5937
6371
|
/**
|
|
5938
|
-
* Converts this
|
|
6372
|
+
* Converts this TakePlaylistRequest to JSON.
|
|
6373
|
+
* @returns JSON object
|
|
6374
|
+
*/
|
|
6375
|
+
public toJSON(): { [k: string]: any };
|
|
6376
|
+
|
|
6377
|
+
/**
|
|
6378
|
+
* Gets the default type url for TakePlaylistRequest
|
|
6379
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6380
|
+
* @returns The default type url
|
|
6381
|
+
*/
|
|
6382
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6383
|
+
}
|
|
6384
|
+
|
|
6385
|
+
/** Properties of an EjectPlaylistRequest. */
|
|
6386
|
+
interface IEjectPlaylistRequest {
|
|
6387
|
+
|
|
6388
|
+
/** EjectPlaylistRequest sourceId */
|
|
6389
|
+
sourceId?: (string|null);
|
|
6390
|
+
}
|
|
6391
|
+
|
|
6392
|
+
/** Represents an EjectPlaylistRequest. */
|
|
6393
|
+
class EjectPlaylistRequest implements IEjectPlaylistRequest {
|
|
6394
|
+
|
|
6395
|
+
/**
|
|
6396
|
+
* Constructs a new EjectPlaylistRequest.
|
|
6397
|
+
* @param [properties] Properties to set
|
|
6398
|
+
*/
|
|
6399
|
+
constructor(properties?: sesame.v1.sources.IEjectPlaylistRequest);
|
|
6400
|
+
|
|
6401
|
+
/** EjectPlaylistRequest sourceId. */
|
|
6402
|
+
public sourceId: string;
|
|
6403
|
+
|
|
6404
|
+
/**
|
|
6405
|
+
* Creates a new EjectPlaylistRequest instance using the specified properties.
|
|
6406
|
+
* @param [properties] Properties to set
|
|
6407
|
+
* @returns EjectPlaylistRequest instance
|
|
6408
|
+
*/
|
|
6409
|
+
public static create(properties?: sesame.v1.sources.IEjectPlaylistRequest): sesame.v1.sources.EjectPlaylistRequest;
|
|
6410
|
+
|
|
6411
|
+
/**
|
|
6412
|
+
* Encodes the specified EjectPlaylistRequest message. Does not implicitly {@link sesame.v1.sources.EjectPlaylistRequest.verify|verify} messages.
|
|
6413
|
+
* @param message EjectPlaylistRequest message or plain object to encode
|
|
6414
|
+
* @param [writer] Writer to encode to
|
|
6415
|
+
* @returns Writer
|
|
6416
|
+
*/
|
|
6417
|
+
public static encode(message: sesame.v1.sources.IEjectPlaylistRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6418
|
+
|
|
6419
|
+
/**
|
|
6420
|
+
* Encodes the specified EjectPlaylistRequest message, length delimited. Does not implicitly {@link sesame.v1.sources.EjectPlaylistRequest.verify|verify} messages.
|
|
6421
|
+
* @param message EjectPlaylistRequest message or plain object to encode
|
|
6422
|
+
* @param [writer] Writer to encode to
|
|
6423
|
+
* @returns Writer
|
|
6424
|
+
*/
|
|
6425
|
+
public static encodeDelimited(message: sesame.v1.sources.IEjectPlaylistRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6426
|
+
|
|
6427
|
+
/**
|
|
6428
|
+
* Decodes an EjectPlaylistRequest message from the specified reader or buffer.
|
|
6429
|
+
* @param reader Reader or buffer to decode from
|
|
6430
|
+
* @param [length] Message length if known beforehand
|
|
6431
|
+
* @returns EjectPlaylistRequest
|
|
6432
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6433
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6434
|
+
*/
|
|
6435
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.sources.EjectPlaylistRequest;
|
|
6436
|
+
|
|
6437
|
+
/**
|
|
6438
|
+
* Decodes an EjectPlaylistRequest message from the specified reader or buffer, length delimited.
|
|
6439
|
+
* @param reader Reader or buffer to decode from
|
|
6440
|
+
* @returns EjectPlaylistRequest
|
|
6441
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6442
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6443
|
+
*/
|
|
6444
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.sources.EjectPlaylistRequest;
|
|
6445
|
+
|
|
6446
|
+
/**
|
|
6447
|
+
* Verifies an EjectPlaylistRequest message.
|
|
6448
|
+
* @param message Plain object to verify
|
|
6449
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6450
|
+
*/
|
|
6451
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6452
|
+
|
|
6453
|
+
/**
|
|
6454
|
+
* Creates an EjectPlaylistRequest message from a plain object. Also converts values to their respective internal types.
|
|
6455
|
+
* @param object Plain object
|
|
6456
|
+
* @returns EjectPlaylistRequest
|
|
6457
|
+
*/
|
|
6458
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.sources.EjectPlaylistRequest;
|
|
6459
|
+
|
|
6460
|
+
/**
|
|
6461
|
+
* Creates a plain object from an EjectPlaylistRequest message. Also converts values to other types if specified.
|
|
6462
|
+
* @param message EjectPlaylistRequest
|
|
6463
|
+
* @param [options] Conversion options
|
|
6464
|
+
* @returns Plain object
|
|
6465
|
+
*/
|
|
6466
|
+
public static toObject(message: sesame.v1.sources.EjectPlaylistRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6467
|
+
|
|
6468
|
+
/**
|
|
6469
|
+
* Converts this EjectPlaylistRequest to JSON.
|
|
5939
6470
|
* @returns JSON object
|
|
5940
6471
|
*/
|
|
5941
6472
|
public toJSON(): { [k: string]: any };
|
|
@@ -9177,6 +9708,9 @@ export namespace sesame {
|
|
|
9177
9708
|
|
|
9178
9709
|
/** Status recorders */
|
|
9179
9710
|
recorders?: (sesame.v1.recorder.IRecorderStatus[]|null);
|
|
9711
|
+
|
|
9712
|
+
/** Status encoders */
|
|
9713
|
+
encoders?: (sesame.v1.outputs.IEncoderStatus[]|null);
|
|
9180
9714
|
}
|
|
9181
9715
|
|
|
9182
9716
|
/** Represents a Status. */
|
|
@@ -9212,6 +9746,9 @@ export namespace sesame {
|
|
|
9212
9746
|
/** Status recorders. */
|
|
9213
9747
|
public recorders: sesame.v1.recorder.IRecorderStatus[];
|
|
9214
9748
|
|
|
9749
|
+
/** Status encoders. */
|
|
9750
|
+
public encoders: sesame.v1.outputs.IEncoderStatus[];
|
|
9751
|
+
|
|
9215
9752
|
/**
|
|
9216
9753
|
* Creates a new Status instance using the specified properties.
|
|
9217
9754
|
* @param [properties] Properties to set
|
|
@@ -9962,6 +10499,12 @@ export namespace sesame {
|
|
|
9962
10499
|
OUTPUT_TYPE_ENCODED_SUPER_SLOWMO_RECORDER = 7
|
|
9963
10500
|
}
|
|
9964
10501
|
|
|
10502
|
+
/** EncoderType enum. */
|
|
10503
|
+
enum EncoderType {
|
|
10504
|
+
ENCODER_TYPE_UNSPECIFIED = 0,
|
|
10505
|
+
ENCODER_TYPE_VIDEO = 1
|
|
10506
|
+
}
|
|
10507
|
+
|
|
9965
10508
|
/** EncoderPreset enum. */
|
|
9966
10509
|
enum EncoderPreset {
|
|
9967
10510
|
ENCODER_PRESET_UNSPECIFIED = 0,
|
|
@@ -10110,6 +10653,321 @@ export namespace sesame {
|
|
|
10110
10653
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10111
10654
|
}
|
|
10112
10655
|
|
|
10656
|
+
/** Properties of an EncoderAddRequest. */
|
|
10657
|
+
interface IEncoderAddRequest {
|
|
10658
|
+
|
|
10659
|
+
/** EncoderAddRequest id */
|
|
10660
|
+
id?: (string|null);
|
|
10661
|
+
|
|
10662
|
+
/** EncoderAddRequest compositionId */
|
|
10663
|
+
compositionId?: (string|null);
|
|
10664
|
+
|
|
10665
|
+
/** EncoderAddRequest encoder */
|
|
10666
|
+
encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10667
|
+
}
|
|
10668
|
+
|
|
10669
|
+
/** Represents an EncoderAddRequest. */
|
|
10670
|
+
class EncoderAddRequest implements IEncoderAddRequest {
|
|
10671
|
+
|
|
10672
|
+
/**
|
|
10673
|
+
* Constructs a new EncoderAddRequest.
|
|
10674
|
+
* @param [properties] Properties to set
|
|
10675
|
+
*/
|
|
10676
|
+
constructor(properties?: sesame.v1.outputs.IEncoderAddRequest);
|
|
10677
|
+
|
|
10678
|
+
/** EncoderAddRequest id. */
|
|
10679
|
+
public id: string;
|
|
10680
|
+
|
|
10681
|
+
/** EncoderAddRequest compositionId. */
|
|
10682
|
+
public compositionId: string;
|
|
10683
|
+
|
|
10684
|
+
/** EncoderAddRequest encoder. */
|
|
10685
|
+
public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10686
|
+
|
|
10687
|
+
/**
|
|
10688
|
+
* Creates a new EncoderAddRequest instance using the specified properties.
|
|
10689
|
+
* @param [properties] Properties to set
|
|
10690
|
+
* @returns EncoderAddRequest instance
|
|
10691
|
+
*/
|
|
10692
|
+
public static create(properties?: sesame.v1.outputs.IEncoderAddRequest): sesame.v1.outputs.EncoderAddRequest;
|
|
10693
|
+
|
|
10694
|
+
/**
|
|
10695
|
+
* Encodes the specified EncoderAddRequest message. Does not implicitly {@link sesame.v1.outputs.EncoderAddRequest.verify|verify} messages.
|
|
10696
|
+
* @param message EncoderAddRequest message or plain object to encode
|
|
10697
|
+
* @param [writer] Writer to encode to
|
|
10698
|
+
* @returns Writer
|
|
10699
|
+
*/
|
|
10700
|
+
public static encode(message: sesame.v1.outputs.IEncoderAddRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10701
|
+
|
|
10702
|
+
/**
|
|
10703
|
+
* Encodes the specified EncoderAddRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderAddRequest.verify|verify} messages.
|
|
10704
|
+
* @param message EncoderAddRequest message or plain object to encode
|
|
10705
|
+
* @param [writer] Writer to encode to
|
|
10706
|
+
* @returns Writer
|
|
10707
|
+
*/
|
|
10708
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderAddRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10709
|
+
|
|
10710
|
+
/**
|
|
10711
|
+
* Decodes an EncoderAddRequest message from the specified reader or buffer.
|
|
10712
|
+
* @param reader Reader or buffer to decode from
|
|
10713
|
+
* @param [length] Message length if known beforehand
|
|
10714
|
+
* @returns EncoderAddRequest
|
|
10715
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10716
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10717
|
+
*/
|
|
10718
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderAddRequest;
|
|
10719
|
+
|
|
10720
|
+
/**
|
|
10721
|
+
* Decodes an EncoderAddRequest message from the specified reader or buffer, length delimited.
|
|
10722
|
+
* @param reader Reader or buffer to decode from
|
|
10723
|
+
* @returns EncoderAddRequest
|
|
10724
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10725
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10726
|
+
*/
|
|
10727
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderAddRequest;
|
|
10728
|
+
|
|
10729
|
+
/**
|
|
10730
|
+
* Verifies an EncoderAddRequest message.
|
|
10731
|
+
* @param message Plain object to verify
|
|
10732
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10733
|
+
*/
|
|
10734
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10735
|
+
|
|
10736
|
+
/**
|
|
10737
|
+
* Creates an EncoderAddRequest message from a plain object. Also converts values to their respective internal types.
|
|
10738
|
+
* @param object Plain object
|
|
10739
|
+
* @returns EncoderAddRequest
|
|
10740
|
+
*/
|
|
10741
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderAddRequest;
|
|
10742
|
+
|
|
10743
|
+
/**
|
|
10744
|
+
* Creates a plain object from an EncoderAddRequest message. Also converts values to other types if specified.
|
|
10745
|
+
* @param message EncoderAddRequest
|
|
10746
|
+
* @param [options] Conversion options
|
|
10747
|
+
* @returns Plain object
|
|
10748
|
+
*/
|
|
10749
|
+
public static toObject(message: sesame.v1.outputs.EncoderAddRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10750
|
+
|
|
10751
|
+
/**
|
|
10752
|
+
* Converts this EncoderAddRequest to JSON.
|
|
10753
|
+
* @returns JSON object
|
|
10754
|
+
*/
|
|
10755
|
+
public toJSON(): { [k: string]: any };
|
|
10756
|
+
|
|
10757
|
+
/**
|
|
10758
|
+
* Gets the default type url for EncoderAddRequest
|
|
10759
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10760
|
+
* @returns The default type url
|
|
10761
|
+
*/
|
|
10762
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10763
|
+
}
|
|
10764
|
+
|
|
10765
|
+
/** Properties of an EncoderUpdateRequest. */
|
|
10766
|
+
interface IEncoderUpdateRequest {
|
|
10767
|
+
|
|
10768
|
+
/** EncoderUpdateRequest id */
|
|
10769
|
+
id?: (string|null);
|
|
10770
|
+
|
|
10771
|
+
/** EncoderUpdateRequest compositionId */
|
|
10772
|
+
compositionId?: (string|null);
|
|
10773
|
+
|
|
10774
|
+
/** EncoderUpdateRequest encoder */
|
|
10775
|
+
encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10776
|
+
}
|
|
10777
|
+
|
|
10778
|
+
/** Represents an EncoderUpdateRequest. */
|
|
10779
|
+
class EncoderUpdateRequest implements IEncoderUpdateRequest {
|
|
10780
|
+
|
|
10781
|
+
/**
|
|
10782
|
+
* Constructs a new EncoderUpdateRequest.
|
|
10783
|
+
* @param [properties] Properties to set
|
|
10784
|
+
*/
|
|
10785
|
+
constructor(properties?: sesame.v1.outputs.IEncoderUpdateRequest);
|
|
10786
|
+
|
|
10787
|
+
/** EncoderUpdateRequest id. */
|
|
10788
|
+
public id: string;
|
|
10789
|
+
|
|
10790
|
+
/** EncoderUpdateRequest compositionId. */
|
|
10791
|
+
public compositionId: string;
|
|
10792
|
+
|
|
10793
|
+
/** EncoderUpdateRequest encoder. */
|
|
10794
|
+
public encoder?: (sesame.v1.outputs.IEncoderConfig|null);
|
|
10795
|
+
|
|
10796
|
+
/**
|
|
10797
|
+
* Creates a new EncoderUpdateRequest instance using the specified properties.
|
|
10798
|
+
* @param [properties] Properties to set
|
|
10799
|
+
* @returns EncoderUpdateRequest instance
|
|
10800
|
+
*/
|
|
10801
|
+
public static create(properties?: sesame.v1.outputs.IEncoderUpdateRequest): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10802
|
+
|
|
10803
|
+
/**
|
|
10804
|
+
* Encodes the specified EncoderUpdateRequest message. Does not implicitly {@link sesame.v1.outputs.EncoderUpdateRequest.verify|verify} messages.
|
|
10805
|
+
* @param message EncoderUpdateRequest message or plain object to encode
|
|
10806
|
+
* @param [writer] Writer to encode to
|
|
10807
|
+
* @returns Writer
|
|
10808
|
+
*/
|
|
10809
|
+
public static encode(message: sesame.v1.outputs.IEncoderUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10810
|
+
|
|
10811
|
+
/**
|
|
10812
|
+
* Encodes the specified EncoderUpdateRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderUpdateRequest.verify|verify} messages.
|
|
10813
|
+
* @param message EncoderUpdateRequest message or plain object to encode
|
|
10814
|
+
* @param [writer] Writer to encode to
|
|
10815
|
+
* @returns Writer
|
|
10816
|
+
*/
|
|
10817
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10818
|
+
|
|
10819
|
+
/**
|
|
10820
|
+
* Decodes an EncoderUpdateRequest message from the specified reader or buffer.
|
|
10821
|
+
* @param reader Reader or buffer to decode from
|
|
10822
|
+
* @param [length] Message length if known beforehand
|
|
10823
|
+
* @returns EncoderUpdateRequest
|
|
10824
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10825
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10826
|
+
*/
|
|
10827
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10828
|
+
|
|
10829
|
+
/**
|
|
10830
|
+
* Decodes an EncoderUpdateRequest message from the specified reader or buffer, length delimited.
|
|
10831
|
+
* @param reader Reader or buffer to decode from
|
|
10832
|
+
* @returns EncoderUpdateRequest
|
|
10833
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10834
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10835
|
+
*/
|
|
10836
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10837
|
+
|
|
10838
|
+
/**
|
|
10839
|
+
* Verifies an EncoderUpdateRequest message.
|
|
10840
|
+
* @param message Plain object to verify
|
|
10841
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10842
|
+
*/
|
|
10843
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10844
|
+
|
|
10845
|
+
/**
|
|
10846
|
+
* Creates an EncoderUpdateRequest message from a plain object. Also converts values to their respective internal types.
|
|
10847
|
+
* @param object Plain object
|
|
10848
|
+
* @returns EncoderUpdateRequest
|
|
10849
|
+
*/
|
|
10850
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderUpdateRequest;
|
|
10851
|
+
|
|
10852
|
+
/**
|
|
10853
|
+
* Creates a plain object from an EncoderUpdateRequest message. Also converts values to other types if specified.
|
|
10854
|
+
* @param message EncoderUpdateRequest
|
|
10855
|
+
* @param [options] Conversion options
|
|
10856
|
+
* @returns Plain object
|
|
10857
|
+
*/
|
|
10858
|
+
public static toObject(message: sesame.v1.outputs.EncoderUpdateRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10859
|
+
|
|
10860
|
+
/**
|
|
10861
|
+
* Converts this EncoderUpdateRequest to JSON.
|
|
10862
|
+
* @returns JSON object
|
|
10863
|
+
*/
|
|
10864
|
+
public toJSON(): { [k: string]: any };
|
|
10865
|
+
|
|
10866
|
+
/**
|
|
10867
|
+
* Gets the default type url for EncoderUpdateRequest
|
|
10868
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10869
|
+
* @returns The default type url
|
|
10870
|
+
*/
|
|
10871
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10872
|
+
}
|
|
10873
|
+
|
|
10874
|
+
/** Properties of an EncoderRemoveRequest. */
|
|
10875
|
+
interface IEncoderRemoveRequest {
|
|
10876
|
+
|
|
10877
|
+
/** EncoderRemoveRequest id */
|
|
10878
|
+
id?: (string|null);
|
|
10879
|
+
}
|
|
10880
|
+
|
|
10881
|
+
/** Represents an EncoderRemoveRequest. */
|
|
10882
|
+
class EncoderRemoveRequest implements IEncoderRemoveRequest {
|
|
10883
|
+
|
|
10884
|
+
/**
|
|
10885
|
+
* Constructs a new EncoderRemoveRequest.
|
|
10886
|
+
* @param [properties] Properties to set
|
|
10887
|
+
*/
|
|
10888
|
+
constructor(properties?: sesame.v1.outputs.IEncoderRemoveRequest);
|
|
10889
|
+
|
|
10890
|
+
/** EncoderRemoveRequest id. */
|
|
10891
|
+
public id: string;
|
|
10892
|
+
|
|
10893
|
+
/**
|
|
10894
|
+
* Creates a new EncoderRemoveRequest instance using the specified properties.
|
|
10895
|
+
* @param [properties] Properties to set
|
|
10896
|
+
* @returns EncoderRemoveRequest instance
|
|
10897
|
+
*/
|
|
10898
|
+
public static create(properties?: sesame.v1.outputs.IEncoderRemoveRequest): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10899
|
+
|
|
10900
|
+
/**
|
|
10901
|
+
* Encodes the specified EncoderRemoveRequest message. Does not implicitly {@link sesame.v1.outputs.EncoderRemoveRequest.verify|verify} messages.
|
|
10902
|
+
* @param message EncoderRemoveRequest message or plain object to encode
|
|
10903
|
+
* @param [writer] Writer to encode to
|
|
10904
|
+
* @returns Writer
|
|
10905
|
+
*/
|
|
10906
|
+
public static encode(message: sesame.v1.outputs.IEncoderRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10907
|
+
|
|
10908
|
+
/**
|
|
10909
|
+
* Encodes the specified EncoderRemoveRequest message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderRemoveRequest.verify|verify} messages.
|
|
10910
|
+
* @param message EncoderRemoveRequest message or plain object to encode
|
|
10911
|
+
* @param [writer] Writer to encode to
|
|
10912
|
+
* @returns Writer
|
|
10913
|
+
*/
|
|
10914
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderRemoveRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10915
|
+
|
|
10916
|
+
/**
|
|
10917
|
+
* Decodes an EncoderRemoveRequest message from the specified reader or buffer.
|
|
10918
|
+
* @param reader Reader or buffer to decode from
|
|
10919
|
+
* @param [length] Message length if known beforehand
|
|
10920
|
+
* @returns EncoderRemoveRequest
|
|
10921
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10922
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10923
|
+
*/
|
|
10924
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10925
|
+
|
|
10926
|
+
/**
|
|
10927
|
+
* Decodes an EncoderRemoveRequest message from the specified reader or buffer, length delimited.
|
|
10928
|
+
* @param reader Reader or buffer to decode from
|
|
10929
|
+
* @returns EncoderRemoveRequest
|
|
10930
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10931
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10932
|
+
*/
|
|
10933
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10934
|
+
|
|
10935
|
+
/**
|
|
10936
|
+
* Verifies an EncoderRemoveRequest message.
|
|
10937
|
+
* @param message Plain object to verify
|
|
10938
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10939
|
+
*/
|
|
10940
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10941
|
+
|
|
10942
|
+
/**
|
|
10943
|
+
* Creates an EncoderRemoveRequest message from a plain object. Also converts values to their respective internal types.
|
|
10944
|
+
* @param object Plain object
|
|
10945
|
+
* @returns EncoderRemoveRequest
|
|
10946
|
+
*/
|
|
10947
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderRemoveRequest;
|
|
10948
|
+
|
|
10949
|
+
/**
|
|
10950
|
+
* Creates a plain object from an EncoderRemoveRequest message. Also converts values to other types if specified.
|
|
10951
|
+
* @param message EncoderRemoveRequest
|
|
10952
|
+
* @param [options] Conversion options
|
|
10953
|
+
* @returns Plain object
|
|
10954
|
+
*/
|
|
10955
|
+
public static toObject(message: sesame.v1.outputs.EncoderRemoveRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10956
|
+
|
|
10957
|
+
/**
|
|
10958
|
+
* Converts this EncoderRemoveRequest to JSON.
|
|
10959
|
+
* @returns JSON object
|
|
10960
|
+
*/
|
|
10961
|
+
public toJSON(): { [k: string]: any };
|
|
10962
|
+
|
|
10963
|
+
/**
|
|
10964
|
+
* Gets the default type url for EncoderRemoveRequest
|
|
10965
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10966
|
+
* @returns The default type url
|
|
10967
|
+
*/
|
|
10968
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10969
|
+
}
|
|
10970
|
+
|
|
10113
10971
|
/** Properties of a DecklinkOutputConfig. */
|
|
10114
10972
|
interface IDecklinkOutputConfig {
|
|
10115
10973
|
|
|
@@ -10225,8 +11083,8 @@ export namespace sesame {
|
|
|
10225
11083
|
/** EncodedWebSocketOutputConfig channel */
|
|
10226
11084
|
channel?: (string|null);
|
|
10227
11085
|
|
|
10228
|
-
/** EncodedWebSocketOutputConfig
|
|
10229
|
-
|
|
11086
|
+
/** EncodedWebSocketOutputConfig encoderId */
|
|
11087
|
+
encoderId?: (string|null);
|
|
10230
11088
|
|
|
10231
11089
|
/** EncodedWebSocketOutputConfig metadataTracks */
|
|
10232
11090
|
metadataTracks?: (string[]|null);
|
|
@@ -10244,8 +11102,8 @@ export namespace sesame {
|
|
|
10244
11102
|
/** EncodedWebSocketOutputConfig channel. */
|
|
10245
11103
|
public channel: string;
|
|
10246
11104
|
|
|
10247
|
-
/** EncodedWebSocketOutputConfig
|
|
10248
|
-
public
|
|
11105
|
+
/** EncodedWebSocketOutputConfig encoderId. */
|
|
11106
|
+
public encoderId: string;
|
|
10249
11107
|
|
|
10250
11108
|
/** EncodedWebSocketOutputConfig metadataTracks. */
|
|
10251
11109
|
public metadataTracks: string[];
|
|
@@ -10331,8 +11189,8 @@ export namespace sesame {
|
|
|
10331
11189
|
/** Properties of an EncodedRecorderOutputConfig. */
|
|
10332
11190
|
interface IEncodedRecorderOutputConfig {
|
|
10333
11191
|
|
|
10334
|
-
/** EncodedRecorderOutputConfig
|
|
10335
|
-
|
|
11192
|
+
/** EncodedRecorderOutputConfig encoderId */
|
|
11193
|
+
encoderId?: (string|null);
|
|
10336
11194
|
|
|
10337
11195
|
/** EncodedRecorderOutputConfig filename */
|
|
10338
11196
|
filename?: (string|null);
|
|
@@ -10356,8 +11214,8 @@ export namespace sesame {
|
|
|
10356
11214
|
*/
|
|
10357
11215
|
constructor(properties?: sesame.v1.outputs.IEncodedRecorderOutputConfig);
|
|
10358
11216
|
|
|
10359
|
-
/** EncodedRecorderOutputConfig
|
|
10360
|
-
public
|
|
11217
|
+
/** EncodedRecorderOutputConfig encoderId. */
|
|
11218
|
+
public encoderId: string;
|
|
10361
11219
|
|
|
10362
11220
|
/** EncodedRecorderOutputConfig filename. */
|
|
10363
11221
|
public filename: string;
|
|
@@ -10588,8 +11446,8 @@ export namespace sesame {
|
|
|
10588
11446
|
/** EncodedSrtOutputConfig url */
|
|
10589
11447
|
url?: (string|null);
|
|
10590
11448
|
|
|
10591
|
-
/** EncodedSrtOutputConfig
|
|
10592
|
-
|
|
11449
|
+
/** EncodedSrtOutputConfig encoderId */
|
|
11450
|
+
encoderId?: (string|null);
|
|
10593
11451
|
}
|
|
10594
11452
|
|
|
10595
11453
|
/** Represents an EncodedSrtOutputConfig. */
|
|
@@ -10604,8 +11462,8 @@ export namespace sesame {
|
|
|
10604
11462
|
/** EncodedSrtOutputConfig url. */
|
|
10605
11463
|
public url: string;
|
|
10606
11464
|
|
|
10607
|
-
/** EncodedSrtOutputConfig
|
|
10608
|
-
public
|
|
11465
|
+
/** EncodedSrtOutputConfig encoderId. */
|
|
11466
|
+
public encoderId: string;
|
|
10609
11467
|
|
|
10610
11468
|
/**
|
|
10611
11469
|
* Creates a new EncodedSrtOutputConfig instance using the specified properties.
|
|
@@ -10688,8 +11546,8 @@ export namespace sesame {
|
|
|
10688
11546
|
/** Properties of an EncodedMoqOutputConfig. */
|
|
10689
11547
|
interface IEncodedMoqOutputConfig {
|
|
10690
11548
|
|
|
10691
|
-
/** EncodedMoqOutputConfig
|
|
10692
|
-
|
|
11549
|
+
/** EncodedMoqOutputConfig encoderId */
|
|
11550
|
+
encoderId?: (string|null);
|
|
10693
11551
|
|
|
10694
11552
|
/** EncodedMoqOutputConfig url */
|
|
10695
11553
|
url?: (string|null);
|
|
@@ -10713,8 +11571,8 @@ export namespace sesame {
|
|
|
10713
11571
|
*/
|
|
10714
11572
|
constructor(properties?: sesame.v1.outputs.IEncodedMoqOutputConfig);
|
|
10715
11573
|
|
|
10716
|
-
/** EncodedMoqOutputConfig
|
|
10717
|
-
public
|
|
11574
|
+
/** EncodedMoqOutputConfig encoderId. */
|
|
11575
|
+
public encoderId: string;
|
|
10718
11576
|
|
|
10719
11577
|
/** EncodedMoqOutputConfig url. */
|
|
10720
11578
|
public url: string;
|
|
@@ -11440,6 +12298,9 @@ export namespace sesame {
|
|
|
11440
12298
|
|
|
11441
12299
|
/** OutputStatus srtStats */
|
|
11442
12300
|
srtStats?: (sesame.v1.status.ISRTSendStatistics|null);
|
|
12301
|
+
|
|
12302
|
+
/** OutputStatus encoderId */
|
|
12303
|
+
encoderId?: (string|null);
|
|
11443
12304
|
}
|
|
11444
12305
|
|
|
11445
12306
|
/** Represents an OutputStatus. */
|
|
@@ -11472,6 +12333,9 @@ export namespace sesame {
|
|
|
11472
12333
|
/** OutputStatus srtStats. */
|
|
11473
12334
|
public srtStats?: (sesame.v1.status.ISRTSendStatistics|null);
|
|
11474
12335
|
|
|
12336
|
+
/** OutputStatus encoderId. */
|
|
12337
|
+
public encoderId: string;
|
|
12338
|
+
|
|
11475
12339
|
/**
|
|
11476
12340
|
* Creates a new OutputStatus instance using the specified properties.
|
|
11477
12341
|
* @param [properties] Properties to set
|
|
@@ -11549,6 +12413,127 @@ export namespace sesame {
|
|
|
11549
12413
|
*/
|
|
11550
12414
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11551
12415
|
}
|
|
12416
|
+
|
|
12417
|
+
/** Properties of an EncoderStatus. */
|
|
12418
|
+
interface IEncoderStatus {
|
|
12419
|
+
|
|
12420
|
+
/** EncoderStatus id */
|
|
12421
|
+
id?: (string|null);
|
|
12422
|
+
|
|
12423
|
+
/** EncoderStatus type */
|
|
12424
|
+
type?: (sesame.v1.outputs.EncoderType|null);
|
|
12425
|
+
|
|
12426
|
+
/** EncoderStatus state */
|
|
12427
|
+
state?: (sesame.v1.common.ConnectionState|null);
|
|
12428
|
+
|
|
12429
|
+
/** EncoderStatus msg */
|
|
12430
|
+
msg?: (string|null);
|
|
12431
|
+
|
|
12432
|
+
/** EncoderStatus compositionId */
|
|
12433
|
+
compositionId?: (string|null);
|
|
12434
|
+
}
|
|
12435
|
+
|
|
12436
|
+
/** Represents an EncoderStatus. */
|
|
12437
|
+
class EncoderStatus implements IEncoderStatus {
|
|
12438
|
+
|
|
12439
|
+
/**
|
|
12440
|
+
* Constructs a new EncoderStatus.
|
|
12441
|
+
* @param [properties] Properties to set
|
|
12442
|
+
*/
|
|
12443
|
+
constructor(properties?: sesame.v1.outputs.IEncoderStatus);
|
|
12444
|
+
|
|
12445
|
+
/** EncoderStatus id. */
|
|
12446
|
+
public id: string;
|
|
12447
|
+
|
|
12448
|
+
/** EncoderStatus type. */
|
|
12449
|
+
public type: sesame.v1.outputs.EncoderType;
|
|
12450
|
+
|
|
12451
|
+
/** EncoderStatus state. */
|
|
12452
|
+
public state: sesame.v1.common.ConnectionState;
|
|
12453
|
+
|
|
12454
|
+
/** EncoderStatus msg. */
|
|
12455
|
+
public msg?: (string|null);
|
|
12456
|
+
|
|
12457
|
+
/** EncoderStatus compositionId. */
|
|
12458
|
+
public compositionId: string;
|
|
12459
|
+
|
|
12460
|
+
/**
|
|
12461
|
+
* Creates a new EncoderStatus instance using the specified properties.
|
|
12462
|
+
* @param [properties] Properties to set
|
|
12463
|
+
* @returns EncoderStatus instance
|
|
12464
|
+
*/
|
|
12465
|
+
public static create(properties?: sesame.v1.outputs.IEncoderStatus): sesame.v1.outputs.EncoderStatus;
|
|
12466
|
+
|
|
12467
|
+
/**
|
|
12468
|
+
* Encodes the specified EncoderStatus message. Does not implicitly {@link sesame.v1.outputs.EncoderStatus.verify|verify} messages.
|
|
12469
|
+
* @param message EncoderStatus message or plain object to encode
|
|
12470
|
+
* @param [writer] Writer to encode to
|
|
12471
|
+
* @returns Writer
|
|
12472
|
+
*/
|
|
12473
|
+
public static encode(message: sesame.v1.outputs.IEncoderStatus, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12474
|
+
|
|
12475
|
+
/**
|
|
12476
|
+
* Encodes the specified EncoderStatus message, length delimited. Does not implicitly {@link sesame.v1.outputs.EncoderStatus.verify|verify} messages.
|
|
12477
|
+
* @param message EncoderStatus message or plain object to encode
|
|
12478
|
+
* @param [writer] Writer to encode to
|
|
12479
|
+
* @returns Writer
|
|
12480
|
+
*/
|
|
12481
|
+
public static encodeDelimited(message: sesame.v1.outputs.IEncoderStatus, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12482
|
+
|
|
12483
|
+
/**
|
|
12484
|
+
* Decodes an EncoderStatus message from the specified reader or buffer.
|
|
12485
|
+
* @param reader Reader or buffer to decode from
|
|
12486
|
+
* @param [length] Message length if known beforehand
|
|
12487
|
+
* @returns EncoderStatus
|
|
12488
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12489
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12490
|
+
*/
|
|
12491
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): sesame.v1.outputs.EncoderStatus;
|
|
12492
|
+
|
|
12493
|
+
/**
|
|
12494
|
+
* Decodes an EncoderStatus message from the specified reader or buffer, length delimited.
|
|
12495
|
+
* @param reader Reader or buffer to decode from
|
|
12496
|
+
* @returns EncoderStatus
|
|
12497
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12498
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12499
|
+
*/
|
|
12500
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): sesame.v1.outputs.EncoderStatus;
|
|
12501
|
+
|
|
12502
|
+
/**
|
|
12503
|
+
* Verifies an EncoderStatus message.
|
|
12504
|
+
* @param message Plain object to verify
|
|
12505
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12506
|
+
*/
|
|
12507
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12508
|
+
|
|
12509
|
+
/**
|
|
12510
|
+
* Creates an EncoderStatus message from a plain object. Also converts values to their respective internal types.
|
|
12511
|
+
* @param object Plain object
|
|
12512
|
+
* @returns EncoderStatus
|
|
12513
|
+
*/
|
|
12514
|
+
public static fromObject(object: { [k: string]: any }): sesame.v1.outputs.EncoderStatus;
|
|
12515
|
+
|
|
12516
|
+
/**
|
|
12517
|
+
* Creates a plain object from an EncoderStatus message. Also converts values to other types if specified.
|
|
12518
|
+
* @param message EncoderStatus
|
|
12519
|
+
* @param [options] Conversion options
|
|
12520
|
+
* @returns Plain object
|
|
12521
|
+
*/
|
|
12522
|
+
public static toObject(message: sesame.v1.outputs.EncoderStatus, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12523
|
+
|
|
12524
|
+
/**
|
|
12525
|
+
* Converts this EncoderStatus to JSON.
|
|
12526
|
+
* @returns JSON object
|
|
12527
|
+
*/
|
|
12528
|
+
public toJSON(): { [k: string]: any };
|
|
12529
|
+
|
|
12530
|
+
/**
|
|
12531
|
+
* Gets the default type url for EncoderStatus
|
|
12532
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12533
|
+
* @returns The default type url
|
|
12534
|
+
*/
|
|
12535
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12536
|
+
}
|
|
11552
12537
|
}
|
|
11553
12538
|
|
|
11554
12539
|
/** Namespace compositor. */
|