@stinkycomputing/sesame-api-client 1.4.1-alpha.5 → 1.4.1-alpha.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/index.cjs CHANGED
@@ -22148,13 +22148,13 @@ var SesameClient = class extends import_events3.EventEmitter {
22148
22148
  msg.items = playlist.clips.map((clip) => ({
22149
22149
  id: clip.id,
22150
22150
  recorderId: clip.recorderId,
22151
- transitionTimeUs: (clip.transitionTime ?? 0) * 1e3,
22151
+ transitionTimeUs: clip.transitionTimeUs ?? 0,
22152
22152
  transitionType: clip.transitionType ?? sesame.v1.recorder.TransitionType.TRANSITION_TYPE_MIX,
22153
22153
  transitionFadeColor: clip.transitionFadeColor ?? { x: 0, y: 0, z: 0, w: 0 },
22154
22154
  speed: clip.speed ?? 1,
22155
22155
  audioRouting: clip.audioRouting,
22156
- startTimeUs: clip.startTime,
22157
- endTimeUs: clip.endTime
22156
+ startTimeUs: clip.startTimeUs,
22157
+ endTimeUs: clip.endTimeUs
22158
22158
  }));
22159
22159
  await this.rpc.service.requestPlaylistExportStart(msg);
22160
22160
  }