MCPcopy Index your code
hub / github.com/callstack/agent-device / temporarySiblingVideoPath

Function temporarySiblingVideoPath

src/recording/overlay.ts:110–114  ·  view source on GitHub ↗
(videoPath: string)

Source from the content-addressed store, hash-verified

108}
109
110function temporarySiblingVideoPath(videoPath: string): string {
111 const parsed = path.parse(videoPath);
112 const suffix = `${process.pid}-${Date.now()}-${Math.random().toString(16).slice(2)}`;
113 return path.join(parsed.dir, `.${parsed.name}.agent-device-${suffix}${parsed.ext || '.mp4'}`);
114}
115
116export async function trimRecordingStart(params: {
117 videoPath: string;

Callers 1

exportProcessedVideoFunction · 0.85

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected