@stinkycomputing/sesame-api-client 1.4.1-alpha.2 → 1.4.1-alpha.5
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/browser.cjs +181 -412
- package/dist/browser.cjs.map +2 -2
- package/dist/browser.d.ts +1 -1
- package/dist/browser.d.ts.map +1 -1
- package/dist/browser.mjs +181 -412
- package/dist/browser.mjs.map +2 -2
- package/dist/command-list.d.ts +17 -140
- package/dist/command-list.d.ts.map +1 -1
- package/dist/index.cjs +181 -412
- 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 +181 -412
- package/dist/index.mjs.map +2 -2
- package/dist/proto/api.d.ts +44 -141
- package/dist/proto/api.js +208 -418
- package/package.json +1 -1
package/dist/command-list.d.ts
CHANGED
|
@@ -1,130 +1,25 @@
|
|
|
1
1
|
import { sesame } from './proto/api';
|
|
2
2
|
import { EaseKind } from './sesame-api-client';
|
|
3
3
|
import Long from 'long';
|
|
4
|
+
/** Makes specified keys required and non-nullable, keeping the rest as-is from the generated type. */
|
|
5
|
+
type WithRequired<T, K extends keyof T> = Omit<T, K> & {
|
|
6
|
+
[P in K]-?: NonNullable<T[P]>;
|
|
7
|
+
};
|
|
4
8
|
export declare function keyframe(timeUs: number | Long, value: sesame.v1.common.IPropValue, easingIn?: EaseKind, easingOut?: EaseKind): sesame.v1.compositor.IKeyFrame;
|
|
5
9
|
export type CompositorID = string;
|
|
6
10
|
export type ReplayID = string;
|
|
7
11
|
export type AudioMixerID = string;
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export interface IRecorderOutputConfig {
|
|
20
|
-
filename: string;
|
|
21
|
-
sizeGb: number;
|
|
22
|
-
groupId: string;
|
|
23
|
-
recorderType: sesame.v1.outputs.RecorderType;
|
|
24
|
-
}
|
|
25
|
-
export interface ISuperSlowmoRecorderOutputConfig extends IRecorderOutputConfig {
|
|
26
|
-
compositionIds: string[];
|
|
27
|
-
sourceIds: string[];
|
|
28
|
-
}
|
|
29
|
-
export interface IOutputConfig {
|
|
30
|
-
outputType: sesame.v1.outputs.OutputType;
|
|
31
|
-
compositionId: string;
|
|
32
|
-
audioMixIds: string[];
|
|
33
|
-
encodedConfig?: IEncoderOutputConfig;
|
|
34
|
-
decklinkConfig?: IDecklinkOutputConfig;
|
|
35
|
-
recorderConfig?: IRecorderOutputConfig;
|
|
36
|
-
superSlowmoRecorderConfig?: ISuperSlowmoRecorderOutputConfig;
|
|
37
|
-
moqConfig?: sesame.v1.outputs.IEncodedMoqOutputConfig;
|
|
38
|
-
systemAudioConfig?: sesame.v1.outputs.ISystemAudioOutputConfig;
|
|
39
|
-
useAsClock?: boolean;
|
|
40
|
-
}
|
|
41
|
-
export interface IEncoderOutputConfig {
|
|
42
|
-
url: string;
|
|
43
|
-
width: number;
|
|
44
|
-
height: number;
|
|
45
|
-
fps: number;
|
|
46
|
-
encoderConfig: IEncoderConfig;
|
|
47
|
-
}
|
|
48
|
-
export interface IDecklinkOutputConfig {
|
|
49
|
-
deviceIndex: number;
|
|
50
|
-
videoFormat: sesame.v1.common.VideoFormat;
|
|
51
|
-
keyAndFill: boolean;
|
|
52
|
-
}
|
|
53
|
-
export interface INDIOutputConfig {
|
|
54
|
-
name: string;
|
|
55
|
-
}
|
|
56
|
-
export interface IAudioMixerChannel {
|
|
57
|
-
id: string;
|
|
58
|
-
sourceId: string;
|
|
59
|
-
channelType: sesame.v1.audio.AudioMixerChannelType;
|
|
60
|
-
sourceChannels: number[];
|
|
61
|
-
plugins: sesame.v1.audio.IAudioPlugin[];
|
|
62
|
-
level: number;
|
|
63
|
-
pan: number;
|
|
64
|
-
}
|
|
65
|
-
export interface IAudioMixerConfig {
|
|
66
|
-
channels: IAudioMixerChannel[];
|
|
67
|
-
outputType: sesame.v1.audio.AudioMixerChannelType;
|
|
68
|
-
order: number;
|
|
69
|
-
}
|
|
70
|
-
export interface ISourceConfig {
|
|
71
|
-
sourceType: sesame.v1.sources.SourceType;
|
|
72
|
-
url?: string;
|
|
73
|
-
deinterlace?: sesame.v1.sources.DeinterlaceType;
|
|
74
|
-
useAsClock?: boolean;
|
|
75
|
-
audioChannels?: number;
|
|
76
|
-
loop?: boolean;
|
|
77
|
-
playState?: sesame.v1.sources.SourceTransportState;
|
|
78
|
-
userId?: string;
|
|
79
|
-
audioOnly: boolean;
|
|
80
|
-
mipMap: boolean;
|
|
81
|
-
decoderType?: sesame.v1.sources.DecoderType;
|
|
82
|
-
decodeBufferFrames?: number;
|
|
83
|
-
textureSize?: sesame.v1.sources.SourceTextureSize;
|
|
84
|
-
moqConfig?: sesame.v1.sources.IMoqSourceConfig;
|
|
85
|
-
rttConfig?: sesame.v1.sources.IRTTSourceConfig;
|
|
86
|
-
decklinkConfig?: sesame.v1.sources.IDecklinkSourceConfig;
|
|
87
|
-
videoProcessors?: sesame.v1.sources.IVideoProcessor[];
|
|
88
|
-
fileConfig?: IFileSourceConfig;
|
|
89
|
-
ndiConfig?: INDISourceConfig;
|
|
90
|
-
srtConfig?: ISRTSourceConfig;
|
|
91
|
-
rtmpConfig?: IRTMPSourceConfig;
|
|
92
|
-
rtspConfig?: IRTSPSourceConfig;
|
|
93
|
-
recorderConfig?: IRecorderSourceConfig;
|
|
94
|
-
}
|
|
95
|
-
export interface IFileSourceConfig {
|
|
96
|
-
filename: string;
|
|
97
|
-
loop?: boolean;
|
|
98
|
-
audioRouting?: number[];
|
|
99
|
-
}
|
|
100
|
-
export interface IDecklinkSourceConfig {
|
|
101
|
-
deviceIndex: number;
|
|
102
|
-
audioRouting?: number[];
|
|
103
|
-
}
|
|
104
|
-
export interface INDISourceConfig {
|
|
105
|
-
name: string;
|
|
106
|
-
audioRouting?: number[];
|
|
107
|
-
}
|
|
108
|
-
export interface ISRTSourceConfig {
|
|
109
|
-
url: string;
|
|
110
|
-
latencyMs?: number;
|
|
111
|
-
audioRouting?: number[];
|
|
112
|
-
}
|
|
113
|
-
export interface IRTMPSourceConfig {
|
|
114
|
-
url: string;
|
|
115
|
-
audioRouting?: number[];
|
|
116
|
-
}
|
|
117
|
-
export interface IRTSPSourceConfig {
|
|
118
|
-
url: string;
|
|
119
|
-
audioRouting?: number[];
|
|
120
|
-
}
|
|
121
|
-
export interface IRecorderSourceConfig {
|
|
122
|
-
recorderId: string;
|
|
123
|
-
}
|
|
124
|
-
export interface ISourceTransportConfig {
|
|
125
|
-
cmdType: sesame.v1.sources.SourceTransportCommandType;
|
|
126
|
-
value: sesame.v1.common.IPropValue;
|
|
127
|
-
}
|
|
12
|
+
export type INodeConfig = WithRequired<Omit<sesame.v1.compositor.INodeAddRequest, 'nodeId'>, 'compositorId' | 'parentAddress' | 'nodeType'>;
|
|
13
|
+
export type IEncoderConfig = WithRequired<sesame.v1.outputs.IEncoderConfig, 'width' | 'height' | 'fps' | 'preset' | 'bitrateKbps'>;
|
|
14
|
+
export type IRecorderOutputConfig = WithRequired<Omit<sesame.v1.outputs.IEncodedRecorderOutputConfig, 'encoder'>, 'filename' | 'sizeGb' | 'groupId' | 'recorderType'>;
|
|
15
|
+
export type ISuperSlowmoRecorderOutputConfig = WithRequired<Omit<sesame.v1.outputs.IEncodedSuperSlowMoRecorderOutputConfig, 'encoder'>, 'filename' | 'sizeGb' | 'groupId' | 'recorderType' | 'compositionIds' | 'sourceIds'>;
|
|
16
|
+
export type IOutputConfig = Omit<sesame.v1.outputs.IOutputAddRequest, 'id'>;
|
|
17
|
+
export type IDecklinkOutputConfig = WithRequired<sesame.v1.outputs.IDecklinkOutputConfig, 'deviceIndex' | 'videoFormat' | 'keyAndFill'>;
|
|
18
|
+
export type IAudioMixerChannel = WithRequired<sesame.v1.audio.IAudioMixerChannel, 'id' | 'sourceId' | 'channelType' | 'sourceChannels' | 'plugins' | 'level' | 'pan'>;
|
|
19
|
+
export type IAudioMixerConfig = WithRequired<sesame.v1.audio.IAudioMixerConfig, 'channels' | 'outputType' | 'order'>;
|
|
20
|
+
export type ISourceConfig = sesame.v1.sources.ISourceConfig;
|
|
21
|
+
export type IRecorderSourceConfig = WithRequired<sesame.v1.sources.IRecorderSourceConfig, 'recorderId'>;
|
|
22
|
+
export type ISourceTransportConfig = WithRequired<Omit<sesame.v1.sources.ISourceTransportCommand, 'sourceId'>, 'cmdType' | 'value'>;
|
|
128
23
|
export interface ITransportCommand {
|
|
129
24
|
type: 'play' | 'pause' | 'stop' | 'seek' | 'seek_usertime' | 'jog' | 'live' | 'set_recorder' | 'load_playlist' | 'eject_playlist' | 'load_clip' | 'set_metadata' | 'take' | 'pre_roll' | 'post_roll' | 'next_playlist_clip' | 'skip_next_playlist_clip' | 'transitions_disabled' | 'set_scrubbing';
|
|
130
25
|
value?: number | string;
|
|
@@ -132,23 +27,7 @@ export interface ITransportCommand {
|
|
|
132
27
|
user?: string;
|
|
133
28
|
id?: string;
|
|
134
29
|
}
|
|
135
|
-
export
|
|
136
|
-
id: number;
|
|
137
|
-
recorderId: string;
|
|
138
|
-
transitionTime?: number;
|
|
139
|
-
speed?: number;
|
|
140
|
-
audioRouting?: number[];
|
|
141
|
-
transitionType?: number;
|
|
142
|
-
transitionFadeColor?: {
|
|
143
|
-
x: number;
|
|
144
|
-
y: number;
|
|
145
|
-
z: number;
|
|
146
|
-
w: number;
|
|
147
|
-
};
|
|
148
|
-
audioLevels?: number[];
|
|
149
|
-
startTime?: number;
|
|
150
|
-
endTime?: number;
|
|
151
|
-
}
|
|
30
|
+
export type IPlaylistClip = WithRequired<sesame.v1.recorder.IPlaylistItem, 'id' | 'recorderId'>;
|
|
152
31
|
export interface IPlaylist {
|
|
153
32
|
id: string;
|
|
154
33
|
duration: number;
|
|
@@ -179,9 +58,6 @@ export declare class CommandList {
|
|
|
179
58
|
getLength(): number;
|
|
180
59
|
filterCreatedAndDestroyedSources(): void;
|
|
181
60
|
get_command_list_msg(): sesame.v1.commands.CommandList;
|
|
182
|
-
private buildSourceConfig;
|
|
183
|
-
private buildOutputEncodedConfig;
|
|
184
|
-
private buildOutputConfig;
|
|
185
61
|
callback(event: string, data: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
186
62
|
add_compositor(id: string, width: number, height: number, multisample: boolean, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
187
63
|
remove_compositor(id: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
@@ -207,4 +83,5 @@ export declare class CommandList {
|
|
|
207
83
|
remove_audio_mixer_channel(mixerId: string, channelId: string, timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
208
84
|
animate_property(propertyDomain: sesame.v1.common.IPropertyDomain, addr: string, prop: string, before: sesame.v1.compositor.AnimationChannelEvaluationMode, after: sesame.v1.compositor.AnimationChannelEvaluationMode, keyframes: sesame.v1.compositor.IKeyFrame[], timeOffsetMs?: number): sesame.v1.commands.CommandListItem;
|
|
209
85
|
}
|
|
86
|
+
export {};
|
|
210
87
|
//# sourceMappingURL=command-list.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command-list.d.ts","sourceRoot":"","sources":["../src/command-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,
|
|
1
|
+
{"version":3,"file":"command-list.d.ts","sourceRoot":"","sources":["../src/command-list.ts"],"names":[],"mappings":"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"}
|