Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,13 @@ Browse and install community extensions from the [Recordly Marketplace](https://
- Feedback and issue links from the editor
- Project persistence for editor preferences
- Faster preview recovery after export

### Performance and Reliability

- Stream browser-captured recording chunks to disk to avoid large in-memory video buffers
- Keep editor playback responsive during long recordings with throttled timeline state updates
- Cache caption, zoom, and cursor lookups used by preview rendering

---

# Screenshots
Expand Down
66 changes: 66 additions & 0 deletions electron/electron-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,72 @@ interface Window {
videoData: ArrayBuffer,
fileName: string,
) => Promise<{ success: boolean; path?: string; message?: string }>;
openRecordingStream: (fileName: string) => Promise<{
success: boolean;
streamId?: string;
path?: string;
error?: string;
}>;
writeRecordingStreamChunk: (
streamId: string,
position: number,
chunk: Uint8Array,
) => Promise<{ success: boolean; error?: string }>;
closeRecordingStream: (
streamId: string,
options?: { abort?: boolean; mimeType?: string },
) => Promise<{
success: boolean;
path?: string;
message?: string;
error?: string;
bytesWritten?: number;
}>;
openMicrophoneSidecarStream: () => Promise<{
success: boolean;
streamId?: string;
error?: string;
}>;
writeMicrophoneSidecarStreamChunk: (
streamId: string,
position: number,
chunk: Uint8Array,
) => Promise<{ success: boolean; error?: string }>;
closeMicrophoneSidecarStream: (
streamId: string,
videoPath: string,
options?: {
abort?: boolean;
startDelayMs?: number;
browserMicrophoneProfile?: string;
requestedBrowserMicrophoneProfile?: string | null;
requestedConstraints?: unknown;
mediaTrackSettings?: Record<string, boolean | number | string>;
audioInputDevices?: Array<{
deviceId: string;
groupId?: string;
label: string;
}>;
mediaRecorder?: {
mimeType?: string;
audioBitsPerSecond?: number;
timesliceMs?: number;
};
chunkEvents?: Array<{
index: number;
size: number;
elapsedMs: number;
deltaMs: number | null;
recordedElapsedMs?: number;
recordedDeltaMs?: number | null;
}>;
pauseIntervals?: Array<{
startElapsedMs: number;
endElapsedMs?: number;
durationMs?: number;
}>;
},
) => Promise<{ success: boolean; path?: string; error?: string }>;
storeMicrophoneSidecar: (
audioData: ArrayBuffer,
videoPath: string,
Expand Down
Loading