@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.mjs CHANGED
@@ -22096,13 +22096,13 @@ var SesameClient = class extends EventEmitter3 {
22096
22096
  msg.items = playlist.clips.map((clip) => ({
22097
22097
  id: clip.id,
22098
22098
  recorderId: clip.recorderId,
22099
- transitionTimeUs: (clip.transitionTime ?? 0) * 1e3,
22099
+ transitionTimeUs: clip.transitionTimeUs ?? 0,
22100
22100
  transitionType: clip.transitionType ?? sesame.v1.recorder.TransitionType.TRANSITION_TYPE_MIX,
22101
22101
  transitionFadeColor: clip.transitionFadeColor ?? { x: 0, y: 0, z: 0, w: 0 },
22102
22102
  speed: clip.speed ?? 1,
22103
22103
  audioRouting: clip.audioRouting,
22104
- startTimeUs: clip.startTime,
22105
- endTimeUs: clip.endTime
22104
+ startTimeUs: clip.startTimeUs,
22105
+ endTimeUs: clip.endTimeUs
22106
22106
  }));
22107
22107
  await this.rpc.service.requestPlaylistExportStart(msg);
22108
22108
  }