@camstack/addon-pipeline 1.1.60 → 1.1.61
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/audio-analyzer/index.js +2 -2
- package/dist/audio-analyzer/index.mjs +2 -2
- package/dist/detection-pipeline/index.js +3 -3
- package/dist/detection-pipeline/index.mjs +3 -3
- package/dist/{dist-CcqqznPf.mjs → dist-D16_dBsr.mjs} +214 -6
- package/dist/{dist-DynD1EC-.js → dist-p_JqOxtk.js} +225 -5
- package/dist/{model-download-service-Cp9f4dk6-0wh7OK3s.mjs → model-download-service-Cp9f4dk6-CwUb5v3Y.mjs} +1 -1
- package/dist/{model-download-service-Cp9f4dk6-Cp_GTKTw.js → model-download-service-Cp9f4dk6-Dv-oFwjN.js} +12 -0
- package/dist/motion-wasm/index.js +1 -1
- package/dist/motion-wasm/index.mjs +1 -1
- package/dist/pipeline-runner/index.js +2 -2
- package/dist/pipeline-runner/index.mjs +2 -2
- package/dist/recorder/index.js +638 -11
- package/dist/recorder/index.mjs +639 -12
- package/dist/{step-definitions-DhhwklAL.js → step-definitions-CoxF5G31.js} +18 -2
- package/dist/{step-definitions-CvwB_Otk.mjs → step-definitions-DxAcpUV-.mjs} +18 -2
- package/dist/stream-broker/_stub.js +2 -2
- package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-B07QYb7Q.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-Wu4TlSuq.mjs} +3 -3
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BPujpbZ0.mjs +26 -0
- package/dist/stream-broker/{_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-DSXctoaw.mjs → _virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-DGxcX3Wf.mjs} +1 -1
- package/dist/stream-broker/{hostInit-C02YjaoP.mjs → hostInit-D_dSciqF.mjs} +3 -3
- package/dist/stream-broker/index.js +29 -9
- package/dist/stream-broker/index.mjs +29 -9
- package/dist/stream-broker/remoteEntry.js +1 -1
- package/embed-dist/assets/{MaskShapeCanvas-DI4BY7W2-ColkZGA1.js → MaskShapeCanvas-DI4BY7W2-BldL9_Ee.js} +1 -1
- package/embed-dist/assets/{MotionZonesSettings-NcxxQN8r-BIzNJmu0.js → MotionZonesSettings-NcxxQN8r-BgWqMe4f.js} +1 -1
- package/embed-dist/assets/{PrivacyMaskSettings-APgPLF7p-BHuYOg7Q.js → PrivacyMaskSettings-APgPLF7p-YBgaXffP.js} +1 -1
- package/embed-dist/assets/index-e0bQ8yep.js +81 -0
- package/embed-dist/index.html +1 -1
- package/package.json +5 -1
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DYQ6RHcb.mjs +0 -26
- package/embed-dist/assets/index-n1_ZSmy0.js +0 -81
package/dist/recorder/index.mjs
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { B as BaseAddon, E as migrateConfigToBands, F as storageEvictableCapability, G as hydrateSchema, K as isEvent, M as recordingExportCapability, N as resolveScrubThumbnailGeometry, O as nodePin, U as DeviceType, Z as selectAssignedProfileSlots, ct as string, d as RecordingConfigSchema, j as recordingCapability, l as ExportRecordSchema, s as EVENT_PAD_MS, st as record, ut as EventCategory, z as errMsg } from "../dist-D16_dBsr.mjs";
|
|
2
2
|
import { n as computeSheetGeometry, r as resolveHubHostname, t as allTilePlacements } from "../sheet-geometry-DcpuGTCm.mjs";
|
|
3
|
-
import {
|
|
3
|
+
import { n as createFileDataPlaneHandler, s as parseRangeHeader, t as contentTypeFor } from "../model-download-service-Cp9f4dk6-CwUb5v3Y.mjs";
|
|
4
4
|
import { spawn } from "node:child_process";
|
|
5
5
|
import sharp from "sharp";
|
|
6
|
-
import { promises } from "node:fs";
|
|
6
|
+
import { createReadStream, promises } from "node:fs";
|
|
7
7
|
import path from "node:path";
|
|
8
8
|
import { tmpdir } from "node:os";
|
|
9
|
+
import { randomUUID } from "node:crypto";
|
|
9
10
|
//#region src/recorder/segment-path.ts
|
|
10
11
|
function segmentRelPath(deviceId, profile, startMs, durMs, bytes) {
|
|
11
12
|
if (profile.includes("/")) throw new Error(`segmentRelPath: profile must not contain '/': ${profile}`);
|
|
@@ -872,6 +873,15 @@ function noPlayback(deviceId) {
|
|
|
872
873
|
function playbackDirFor(dataDir, deviceId) {
|
|
873
874
|
return path.join(dataDir, "playback", String(deviceId));
|
|
874
875
|
}
|
|
876
|
+
/**
|
|
877
|
+
* Absolute path of ONE profile's variant playlist inside the playback dir.
|
|
878
|
+
* `buildPlaybackManifest` writes `<profile>.m3u8` next to the master whenever
|
|
879
|
+
* that profile has overlapping footage — the export engine renders this variant
|
|
880
|
+
* (a single-profile source) rather than the multi-variant master.
|
|
881
|
+
*/
|
|
882
|
+
function playbackVariantPlaylistPath(dataDir, deviceId, profile) {
|
|
883
|
+
return path.join(playbackDirFor(dataDir, deviceId), `${profile}.m3u8`);
|
|
884
|
+
}
|
|
875
885
|
/** Prefix window the CODECS probe reads — the fragment's moov (with its
|
|
876
886
|
* avcC/hvcC) leads the file and is ~1-2KB, so 64KB is a generous bound. */
|
|
877
887
|
var PROBE_PREFIX_BYTES = 65536;
|
|
@@ -1135,6 +1145,407 @@ function buildRecordingProvider(deps) {
|
|
|
1135
1145
|
};
|
|
1136
1146
|
}
|
|
1137
1147
|
//#endregion
|
|
1148
|
+
//#region src/recorder/addon/export-store.ts
|
|
1149
|
+
/**
|
|
1150
|
+
* Recording-export persistence for the recorder addon.
|
|
1151
|
+
*
|
|
1152
|
+
* Every export job/history row lives in ONE addon-store blob keyed by export
|
|
1153
|
+
* id. The whole Zod-validated blob round-trips on every read/write via a
|
|
1154
|
+
* {@link DurableState} handle (same pattern as `config-store.ts`), so no field
|
|
1155
|
+
* is silently dropped on persist. History rows are never removed by the system
|
|
1156
|
+
* (audit) — `deleteExport`/janitor flip `state` and clear the file, keeping the
|
|
1157
|
+
* row. A corrupt blob reads back as EMPTY rather than crashing boot.
|
|
1158
|
+
*/
|
|
1159
|
+
/**
|
|
1160
|
+
* The addon-store key holding the exportId → ExportRecord map. Production
|
|
1161
|
+
* builds the durable handle via `BaseAddon.state(RECORDING_EXPORTS_KEY,
|
|
1162
|
+
* RecordingExportsBlobSchema, {})`; the pure functions below take that handle,
|
|
1163
|
+
* so this module never touches the @internal raw addon-store primitive.
|
|
1164
|
+
*/
|
|
1165
|
+
var RECORDING_EXPORTS_KEY = "recordingExports";
|
|
1166
|
+
/** Persisted shape: export id → full ExportRecord. */
|
|
1167
|
+
var RecordingExportsBlobSchema = record(string(), ExportRecordSchema);
|
|
1168
|
+
/** Read every persisted export row, keyed by export id. */
|
|
1169
|
+
async function readExports(state) {
|
|
1170
|
+
const blob = await state.get();
|
|
1171
|
+
return new Map(Object.entries(blob));
|
|
1172
|
+
}
|
|
1173
|
+
/** Insert or replace one export row. Validates at the boundary. Returns it. */
|
|
1174
|
+
async function upsertExport(state, record) {
|
|
1175
|
+
const validated = ExportRecordSchema.parse(record);
|
|
1176
|
+
const map = await readExports(state);
|
|
1177
|
+
map.set(validated.id, validated);
|
|
1178
|
+
await state.set(Object.fromEntries(map));
|
|
1179
|
+
return validated;
|
|
1180
|
+
}
|
|
1181
|
+
/**
|
|
1182
|
+
* Shallow-merge a patch into one export row and persist. Returns the merged
|
|
1183
|
+
* record, or null when the id is unknown.
|
|
1184
|
+
*/
|
|
1185
|
+
async function patchExport(state, id, patch) {
|
|
1186
|
+
const map = await readExports(state);
|
|
1187
|
+
const existing = map.get(id);
|
|
1188
|
+
if (!existing) return null;
|
|
1189
|
+
const merged = ExportRecordSchema.parse({
|
|
1190
|
+
...existing,
|
|
1191
|
+
...patch
|
|
1192
|
+
});
|
|
1193
|
+
map.set(id, merged);
|
|
1194
|
+
await state.set(Object.fromEntries(map));
|
|
1195
|
+
return merged;
|
|
1196
|
+
}
|
|
1197
|
+
/** Read one export row by id, or null. */
|
|
1198
|
+
async function getExportRecord(state, id) {
|
|
1199
|
+
return (await readExports(state)).get(id) ?? null;
|
|
1200
|
+
}
|
|
1201
|
+
/**
|
|
1202
|
+
* List export rows, newest-first, optionally scoped to one device.
|
|
1203
|
+
*/
|
|
1204
|
+
async function listExportsFor(state, deviceId) {
|
|
1205
|
+
return [...(await readExports(state)).values()].filter((r) => deviceId === void 0 || r.deviceId === deviceId).toSorted((a, b) => b.createdAt - a.createdAt);
|
|
1206
|
+
}
|
|
1207
|
+
//#endregion
|
|
1208
|
+
//#region src/recorder/addon/export-ffmpeg-args.ts
|
|
1209
|
+
/** Widest [min,max] speed a single ffmpeg `atempo` filter accepts. Outside this
|
|
1210
|
+
* band audio is dropped rather than chained (kept simple + predictable). */
|
|
1211
|
+
var ATEMPO_MIN = .5;
|
|
1212
|
+
var ATEMPO_MAX = 2;
|
|
1213
|
+
var X264 = [
|
|
1214
|
+
"-c:v",
|
|
1215
|
+
"libx264",
|
|
1216
|
+
"-preset",
|
|
1217
|
+
"veryfast",
|
|
1218
|
+
"-pix_fmt",
|
|
1219
|
+
"yuv420p"
|
|
1220
|
+
];
|
|
1221
|
+
var FASTSTART = ["-movflags", "+faststart"];
|
|
1222
|
+
/** Build the ffmpeg argv for one export render. */
|
|
1223
|
+
function buildExportArgs(input) {
|
|
1224
|
+
const { inputPlaylist, outPath, options } = input;
|
|
1225
|
+
const inArgs = ["-i", inputPlaylist];
|
|
1226
|
+
if (options.timelapse) {
|
|
1227
|
+
const everySec = options.timelapse.everyMs / 1e3;
|
|
1228
|
+
const fps = options.timelapse.outputFps ?? 30;
|
|
1229
|
+
return [
|
|
1230
|
+
...inArgs,
|
|
1231
|
+
"-vf",
|
|
1232
|
+
`select='not(mod(t,${everySec}))',setpts=N/FRAME_RATE/TB,fps=${fps}`,
|
|
1233
|
+
"-an",
|
|
1234
|
+
...X264,
|
|
1235
|
+
...FASTSTART,
|
|
1236
|
+
outPath
|
|
1237
|
+
];
|
|
1238
|
+
}
|
|
1239
|
+
const speed = options.speed ?? 1;
|
|
1240
|
+
if (speed === 1) return [
|
|
1241
|
+
...inArgs,
|
|
1242
|
+
"-map",
|
|
1243
|
+
"0",
|
|
1244
|
+
"-c",
|
|
1245
|
+
"copy",
|
|
1246
|
+
...options.includeAudio ? [] : ["-an"],
|
|
1247
|
+
...FASTSTART,
|
|
1248
|
+
outPath
|
|
1249
|
+
];
|
|
1250
|
+
const keepAudio = options.includeAudio && speed >= ATEMPO_MIN && speed <= ATEMPO_MAX;
|
|
1251
|
+
return [
|
|
1252
|
+
...inArgs,
|
|
1253
|
+
"-filter:v",
|
|
1254
|
+
`setpts=PTS/${speed}`,
|
|
1255
|
+
...keepAudio ? [
|
|
1256
|
+
"-filter:a",
|
|
1257
|
+
`atempo=${speed}`,
|
|
1258
|
+
"-c:a",
|
|
1259
|
+
"aac"
|
|
1260
|
+
] : ["-an"],
|
|
1261
|
+
...X264,
|
|
1262
|
+
...FASTSTART,
|
|
1263
|
+
outPath
|
|
1264
|
+
];
|
|
1265
|
+
}
|
|
1266
|
+
//#endregion
|
|
1267
|
+
//#region src/recorder/addon/export-engine.ts
|
|
1268
|
+
/**
|
|
1269
|
+
* Render engine for recording exports.
|
|
1270
|
+
*
|
|
1271
|
+
* A FIFO queue with ONE concurrent ffmpeg render (exports are heavy; serialising
|
|
1272
|
+
* protects the recording node). Each job: resolve the range's local HLS master
|
|
1273
|
+
* playlist → build argv (`buildExportArgs`) → spawn ffmpeg → parse `time=` from
|
|
1274
|
+
* stderr for progress → on exit 0 stat the file and mark `ready`; on non-zero
|
|
1275
|
+
* mark `failed` and remove the partial. `cancel` SIGKILLs an in-flight render.
|
|
1276
|
+
* State transitions patch the DurableState store and emit telemetry events.
|
|
1277
|
+
*
|
|
1278
|
+
* Unlike `SegmentWriter` there is NO auto-restart — a render runs once; boot
|
|
1279
|
+
* re-queue of interrupted jobs is the provider's concern.
|
|
1280
|
+
*/
|
|
1281
|
+
var STDERR_TAIL_LINES$1 = 12;
|
|
1282
|
+
var TIME_RE = /time=(\d+):(\d+):(\d+(?:\.\d+)?)/;
|
|
1283
|
+
/** Expected OUTPUT duration (seconds) for progress scaling. */
|
|
1284
|
+
function expectedOutSeconds(rec) {
|
|
1285
|
+
const rangeSec = Math.max(.001, (rec.toMs - rec.fromMs) / 1e3);
|
|
1286
|
+
if (rec.options.timelapse) {
|
|
1287
|
+
const everySec = rec.options.timelapse.everyMs / 1e3;
|
|
1288
|
+
const fps = rec.options.timelapse.outputFps ?? 30;
|
|
1289
|
+
return Math.max(.001, rangeSec / everySec / fps);
|
|
1290
|
+
}
|
|
1291
|
+
return rangeSec / (rec.options.speed ?? 1);
|
|
1292
|
+
}
|
|
1293
|
+
var ExportEngine = class {
|
|
1294
|
+
deps;
|
|
1295
|
+
queue = [];
|
|
1296
|
+
activeId = null;
|
|
1297
|
+
activeProc = null;
|
|
1298
|
+
cancelled = /* @__PURE__ */ new Set();
|
|
1299
|
+
constructor(deps) {
|
|
1300
|
+
this.deps = deps;
|
|
1301
|
+
}
|
|
1302
|
+
/** Queue a persisted `queued` record for rendering. */
|
|
1303
|
+
enqueue(id) {
|
|
1304
|
+
if (this.queue.includes(id) || this.activeId === id) return;
|
|
1305
|
+
this.queue.push(id);
|
|
1306
|
+
this.pump();
|
|
1307
|
+
}
|
|
1308
|
+
/** Abort a queued or in-flight render. */
|
|
1309
|
+
async cancel(id) {
|
|
1310
|
+
this.cancelled.add(id);
|
|
1311
|
+
const idx = this.queue.indexOf(id);
|
|
1312
|
+
if (idx >= 0) this.queue.splice(idx, 1);
|
|
1313
|
+
if (this.activeId === id && this.activeProc) try {
|
|
1314
|
+
this.activeProc.kill("SIGKILL");
|
|
1315
|
+
} catch {}
|
|
1316
|
+
else if (idx >= 0) await this.fail(id, "cancelled");
|
|
1317
|
+
}
|
|
1318
|
+
async pump() {
|
|
1319
|
+
if (this.activeId) return;
|
|
1320
|
+
const id = this.queue.shift();
|
|
1321
|
+
if (!id) return;
|
|
1322
|
+
if (this.cancelled.has(id)) {
|
|
1323
|
+
this.cancelled.delete(id);
|
|
1324
|
+
await this.fail(id, "cancelled");
|
|
1325
|
+
this.pump();
|
|
1326
|
+
return;
|
|
1327
|
+
}
|
|
1328
|
+
this.activeId = id;
|
|
1329
|
+
try {
|
|
1330
|
+
await this.render(id);
|
|
1331
|
+
} catch (err) {
|
|
1332
|
+
await this.fail(id, err instanceof Error ? err.message : String(err));
|
|
1333
|
+
} finally {
|
|
1334
|
+
this.activeId = null;
|
|
1335
|
+
this.activeProc = null;
|
|
1336
|
+
this.pump();
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
async render(id) {
|
|
1340
|
+
const rec = await patchExport(this.deps.state, id, {
|
|
1341
|
+
state: "rendering",
|
|
1342
|
+
progressPct: 0
|
|
1343
|
+
});
|
|
1344
|
+
if (!rec) return;
|
|
1345
|
+
const playlist = await this.deps.resolvePlaylist(rec);
|
|
1346
|
+
if (!playlist) {
|
|
1347
|
+
await this.fail(id, "no footage for range");
|
|
1348
|
+
return;
|
|
1349
|
+
}
|
|
1350
|
+
const outPath = this.deps.outPath(rec);
|
|
1351
|
+
const args = buildExportArgs({
|
|
1352
|
+
inputPlaylist: playlist,
|
|
1353
|
+
outPath,
|
|
1354
|
+
options: rec.options
|
|
1355
|
+
});
|
|
1356
|
+
const totalSec = expectedOutSeconds(rec);
|
|
1357
|
+
await new Promise((resolve) => {
|
|
1358
|
+
const proc = this.deps.spawn(this.deps.ffmpegPath ?? "ffmpeg", args);
|
|
1359
|
+
this.activeProc = proc;
|
|
1360
|
+
const stderrTail = [];
|
|
1361
|
+
proc.stderr?.on("data", (chunk) => {
|
|
1362
|
+
const text = chunk instanceof Buffer ? chunk.toString("utf8") : String(chunk);
|
|
1363
|
+
for (const line of text.split("\n")) {
|
|
1364
|
+
const trimmed = line.trim();
|
|
1365
|
+
if (trimmed) {
|
|
1366
|
+
stderrTail.push(trimmed);
|
|
1367
|
+
if (stderrTail.length > STDERR_TAIL_LINES$1) stderrTail.shift();
|
|
1368
|
+
}
|
|
1369
|
+
const m = TIME_RE.exec(line);
|
|
1370
|
+
if (m) {
|
|
1371
|
+
const sec = Number(m[1]) * 3600 + Number(m[2]) * 60 + Number(m[3]);
|
|
1372
|
+
const pct = Math.min(99, Math.round(sec / totalSec * 100));
|
|
1373
|
+
patchExport(this.deps.state, id, { progressPct: pct });
|
|
1374
|
+
this.deps.emit(EventCategory.RecordingExportProgress, {
|
|
1375
|
+
exportId: id,
|
|
1376
|
+
progressPct: pct
|
|
1377
|
+
});
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
});
|
|
1381
|
+
proc.on("exit", (code) => {
|
|
1382
|
+
this.activeProc = null;
|
|
1383
|
+
this.finish(id, typeof code === "number" ? code : null, outPath, stderrTail).then(resolve);
|
|
1384
|
+
});
|
|
1385
|
+
});
|
|
1386
|
+
}
|
|
1387
|
+
async finish(id, code, outPath, stderrTail) {
|
|
1388
|
+
if (this.cancelled.has(id)) {
|
|
1389
|
+
this.cancelled.delete(id);
|
|
1390
|
+
await this.deps.removeFile(outPath);
|
|
1391
|
+
await this.fail(id, "cancelled");
|
|
1392
|
+
return;
|
|
1393
|
+
}
|
|
1394
|
+
if (code !== 0) {
|
|
1395
|
+
await this.deps.removeFile(outPath);
|
|
1396
|
+
await this.fail(id, `ffmpeg exited ${code}: ${stderrTail.join(" | ")}`);
|
|
1397
|
+
return;
|
|
1398
|
+
}
|
|
1399
|
+
let bytes = 0;
|
|
1400
|
+
try {
|
|
1401
|
+
bytes = await this.deps.statBytes(outPath);
|
|
1402
|
+
} catch (err) {
|
|
1403
|
+
await this.fail(id, err instanceof Error ? err.message : String(err));
|
|
1404
|
+
return;
|
|
1405
|
+
}
|
|
1406
|
+
await patchExport(this.deps.state, id, {
|
|
1407
|
+
state: "ready",
|
|
1408
|
+
progressPct: 100,
|
|
1409
|
+
fileBytes: bytes,
|
|
1410
|
+
error: null
|
|
1411
|
+
});
|
|
1412
|
+
this.deps.emit(EventCategory.RecordingExportCompleted, {
|
|
1413
|
+
exportId: id,
|
|
1414
|
+
fileBytes: bytes
|
|
1415
|
+
});
|
|
1416
|
+
}
|
|
1417
|
+
async fail(id, error) {
|
|
1418
|
+
await patchExport(this.deps.state, id, {
|
|
1419
|
+
state: "failed",
|
|
1420
|
+
progressPct: null,
|
|
1421
|
+
error
|
|
1422
|
+
});
|
|
1423
|
+
this.deps.emit(EventCategory.RecordingExportFailed, {
|
|
1424
|
+
exportId: id,
|
|
1425
|
+
error
|
|
1426
|
+
});
|
|
1427
|
+
}
|
|
1428
|
+
};
|
|
1429
|
+
//#endregion
|
|
1430
|
+
//#region src/recorder/addon/recording-export-provider.ts
|
|
1431
|
+
/**
|
|
1432
|
+
* True when at least one indexed segment overlaps `[fromMs, toMs)`. Mirrors the
|
|
1433
|
+
* `buildPlaybackManifest` overlap idiom: a segment `[startMs, startMs+durMs)`
|
|
1434
|
+
* overlaps the window iff it starts before the window ends AND ends after the
|
|
1435
|
+
* window starts.
|
|
1436
|
+
*/
|
|
1437
|
+
function hasFootage(index, deviceId, profile, fromMs, toMs) {
|
|
1438
|
+
return index.segments(deviceId, profile).some((s) => s.startMs < toMs && s.startMs + s.durMs > fromMs);
|
|
1439
|
+
}
|
|
1440
|
+
/** Load a record or throw a clear NOT_FOUND-style error. */
|
|
1441
|
+
async function requireRecord(state, exportId) {
|
|
1442
|
+
const rec = await getExportRecord(state, exportId);
|
|
1443
|
+
if (!rec) throw new Error(`recordingExport: unknown export "${exportId}"`);
|
|
1444
|
+
return rec;
|
|
1445
|
+
}
|
|
1446
|
+
/** Build the `recordingExport` provider over the injected deps. */
|
|
1447
|
+
function buildRecordingExportProvider(deps) {
|
|
1448
|
+
return {
|
|
1449
|
+
createExport: async ({ deviceId, profile, fromMs, toMs, options }) => {
|
|
1450
|
+
if (!(fromMs < toMs)) throw new Error(`recordingExport: invalid range ${fromMs}..${toMs}`);
|
|
1451
|
+
if (!hasFootage(deps.index, deviceId, profile, fromMs, toMs)) throw new Error(`recordingExport: no footage for ${deviceId}/${profile} in ${fromMs}..${toMs}`);
|
|
1452
|
+
const now = deps.now();
|
|
1453
|
+
const record = {
|
|
1454
|
+
id: deps.newId(),
|
|
1455
|
+
deviceId,
|
|
1456
|
+
profile,
|
|
1457
|
+
fromMs,
|
|
1458
|
+
toMs,
|
|
1459
|
+
options,
|
|
1460
|
+
state: "queued",
|
|
1461
|
+
progressPct: null,
|
|
1462
|
+
fileBytes: null,
|
|
1463
|
+
expiresAt: now + options.maxLifeMs,
|
|
1464
|
+
deleteAfterDownload: options.deleteAfterDownload,
|
|
1465
|
+
downloadedAt: null,
|
|
1466
|
+
createdAt: now,
|
|
1467
|
+
createdBy: deps.createdBy(),
|
|
1468
|
+
error: null
|
|
1469
|
+
};
|
|
1470
|
+
const saved = await upsertExport(deps.state, record);
|
|
1471
|
+
deps.engine.enqueue(saved.id);
|
|
1472
|
+
return saved;
|
|
1473
|
+
},
|
|
1474
|
+
listExports: ({ deviceId }) => listExportsFor(deps.state, deviceId),
|
|
1475
|
+
getExport: ({ exportId }) => requireRecord(deps.state, exportId),
|
|
1476
|
+
cancelExport: async ({ exportId }) => {
|
|
1477
|
+
const existing = await requireRecord(deps.state, exportId);
|
|
1478
|
+
await deps.engine.cancel(exportId);
|
|
1479
|
+
return await getExportRecord(deps.state, exportId) ?? existing;
|
|
1480
|
+
},
|
|
1481
|
+
deleteExport: async ({ exportId }) => {
|
|
1482
|
+
const existing = await requireRecord(deps.state, exportId);
|
|
1483
|
+
await deps.removeFile(deps.outPath(existing));
|
|
1484
|
+
return await patchExport(deps.state, exportId, {
|
|
1485
|
+
state: "deleted",
|
|
1486
|
+
fileBytes: null
|
|
1487
|
+
}) ?? existing;
|
|
1488
|
+
},
|
|
1489
|
+
getDownloadUrl: async ({ exportId }) => {
|
|
1490
|
+
await requireRecord(deps.state, exportId);
|
|
1491
|
+
const url = deps.downloadUrlFor(exportId);
|
|
1492
|
+
return {
|
|
1493
|
+
url,
|
|
1494
|
+
endpoints: [url]
|
|
1495
|
+
};
|
|
1496
|
+
}
|
|
1497
|
+
};
|
|
1498
|
+
}
|
|
1499
|
+
//#endregion
|
|
1500
|
+
//#region src/recorder/addon/export-janitor.ts
|
|
1501
|
+
/** States whose file still exists on disk and can be reclaimed. */
|
|
1502
|
+
var LIVE_STATES = new Set(["ready"]);
|
|
1503
|
+
/**
|
|
1504
|
+
* Delete the files of every export past `expiresAt` and flip them to `expired`
|
|
1505
|
+
* (row kept). Only `ready` exports hold a file; `queued`/`rendering` are left
|
|
1506
|
+
* for the engine, terminal rows are skipped. Returns the expired ids.
|
|
1507
|
+
*/
|
|
1508
|
+
async function sweepExpiredExports(now, deps) {
|
|
1509
|
+
const rows = await listExportsFor(deps.state);
|
|
1510
|
+
const expired = [];
|
|
1511
|
+
for (const rec of rows) {
|
|
1512
|
+
if (!LIVE_STATES.has(rec.state)) continue;
|
|
1513
|
+
if (rec.expiresAt > now) continue;
|
|
1514
|
+
try {
|
|
1515
|
+
await deps.removeFile(deps.outPath(rec));
|
|
1516
|
+
} catch {}
|
|
1517
|
+
await patchExport(deps.state, rec.id, {
|
|
1518
|
+
state: "expired",
|
|
1519
|
+
fileBytes: null
|
|
1520
|
+
});
|
|
1521
|
+
expired.push(rec.id);
|
|
1522
|
+
}
|
|
1523
|
+
return { expired };
|
|
1524
|
+
}
|
|
1525
|
+
/**
|
|
1526
|
+
* Record a completed download. Stamps `downloadedAt`; when the export is
|
|
1527
|
+
* `deleteAfterDownload`, removes the file after `graceMs` (protects immediate
|
|
1528
|
+
* client retries) and flips to `deleted`. `scheduleDelete` is injected so the
|
|
1529
|
+
* caller controls timer semantics (real setTimeout in prod, immediate in test).
|
|
1530
|
+
*/
|
|
1531
|
+
async function markDownloaded(id, now, deps, scheduleDelete, graceMs) {
|
|
1532
|
+
const rec = await patchExport(deps.state, id, { downloadedAt: now });
|
|
1533
|
+
if (!rec || !rec.deleteAfterDownload) return;
|
|
1534
|
+
scheduleDelete(() => {
|
|
1535
|
+
(async () => {
|
|
1536
|
+
const current = (await listExportsFor(deps.state)).find((r) => r.id === id);
|
|
1537
|
+
if (!current || current.state !== "ready") return;
|
|
1538
|
+
try {
|
|
1539
|
+
await deps.removeFile(deps.outPath(current));
|
|
1540
|
+
} catch {}
|
|
1541
|
+
await patchExport(deps.state, id, {
|
|
1542
|
+
state: "deleted",
|
|
1543
|
+
fileBytes: null
|
|
1544
|
+
});
|
|
1545
|
+
})();
|
|
1546
|
+
}, graceMs);
|
|
1547
|
+
}
|
|
1548
|
+
//#endregion
|
|
1138
1549
|
//#region src/recorder/addon/roots.ts
|
|
1139
1550
|
/**
|
|
1140
1551
|
* Storage-root resolution + boot hydrate for the recorder addon.
|
|
@@ -3052,6 +3463,14 @@ var MARKER_PAD_POST_MS = EVENT_PAD_MS.postMs;
|
|
|
3052
3463
|
* form the hub reverse-proxy client path `/addon/recorder/playback`. */
|
|
3053
3464
|
var RECORDER_ADDON_ID = "recorder";
|
|
3054
3465
|
var PLAYBACK_PREFIX = "playback";
|
|
3466
|
+
/** Data-plane prefix for export MP4 downloads → `/addon/recorder/exports/<id>.mp4`. */
|
|
3467
|
+
var EXPORTS_PREFIX = "exports";
|
|
3468
|
+
/** How often the export janitor sweeps expired exports. */
|
|
3469
|
+
var EXPORT_SWEEP_INTERVAL_MS = 5 * 6e4;
|
|
3470
|
+
/** Grace after a completed download before a `deleteAfterDownload` file is removed. */
|
|
3471
|
+
var EXPORT_DELETE_GRACE_MS = 6e4;
|
|
3472
|
+
/** Only `.mp4` export ids matching this shape are servable (traversal guard). */
|
|
3473
|
+
var EXPORT_FILENAME_RE = /^([A-Za-z0-9][A-Za-z0-9_-]*)\.mp4$/;
|
|
3055
3474
|
/** Narrows the `unknown` extras `SegmentStore`'s logger contract accepts down
|
|
3056
3475
|
* to the structured `{ tags, error }` shape the device-scoped call sites
|
|
3057
3476
|
* (stat/relocate failures) pass — as opposed to the raw caught error most
|
|
@@ -3079,6 +3498,10 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3079
3498
|
playbackBaseUrl = null;
|
|
3080
3499
|
/** Scrub-thumbnail service (sink + data-plane + backfill). Null until started. */
|
|
3081
3500
|
thumbnailService = null;
|
|
3501
|
+
/** Render engine for recording exports. Null on non-recording nodes. */
|
|
3502
|
+
exportEngine = null;
|
|
3503
|
+
/** Periodic export-expiry sweep timer. Cleared on shutdown. */
|
|
3504
|
+
exportSweepTimer = null;
|
|
3082
3505
|
constructor() {
|
|
3083
3506
|
super({ ...DEFAULT_CONFIG });
|
|
3084
3507
|
}
|
|
@@ -3156,7 +3579,7 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3156
3579
|
}),
|
|
3157
3580
|
brokerCall: makeBrokerCall(brokerHandle)
|
|
3158
3581
|
});
|
|
3159
|
-
const
|
|
3582
|
+
const recordingDeps = {
|
|
3160
3583
|
index: this.index,
|
|
3161
3584
|
segmentStore: this.segmentStore,
|
|
3162
3585
|
nodeId: this.nodeId,
|
|
@@ -3177,11 +3600,42 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3177
3600
|
return true;
|
|
3178
3601
|
}
|
|
3179
3602
|
}
|
|
3180
|
-
}
|
|
3603
|
+
};
|
|
3604
|
+
const recordingProvider = buildRecordingProvider(recordingDeps);
|
|
3181
3605
|
const evictableProvider = new StorageEvictableProvider({
|
|
3182
3606
|
index: this.index,
|
|
3183
3607
|
store: this.segmentStore
|
|
3184
3608
|
});
|
|
3609
|
+
const exportsState = this.exportsStore();
|
|
3610
|
+
const exportCodecCache = /* @__PURE__ */ new Map();
|
|
3611
|
+
const exportOutPath = (rec) => path.join(this.ctx.dataDir, EXPORTS_PREFIX, String(rec.deviceId), `${rec.id}.mp4`);
|
|
3612
|
+
const removeExportFile = async (p) => {
|
|
3613
|
+
await promises.rm(p, { force: true });
|
|
3614
|
+
};
|
|
3615
|
+
this.exportEngine = new ExportEngine({
|
|
3616
|
+
spawn,
|
|
3617
|
+
logger: this.ctx.logger.child("export"),
|
|
3618
|
+
state: exportsState,
|
|
3619
|
+
resolvePlaylist: async (rec) => {
|
|
3620
|
+
if ((await buildPlaybackManifest(recordingDeps, exportCodecCache, rec.deviceId, rec.fromMs, rec.toMs)).localMasterPath === null) return null;
|
|
3621
|
+
return playbackVariantPlaylistPath(this.ctx.dataDir, rec.deviceId, rec.profile);
|
|
3622
|
+
},
|
|
3623
|
+
outPath: exportOutPath,
|
|
3624
|
+
statBytes: async (p) => (await promises.stat(p)).size,
|
|
3625
|
+
removeFile: removeExportFile,
|
|
3626
|
+
emit: (category, data) => this.emitExportEvent(category, data)
|
|
3627
|
+
});
|
|
3628
|
+
const exportProvider = buildRecordingExportProvider({
|
|
3629
|
+
state: exportsState,
|
|
3630
|
+
engine: this.exportEngine,
|
|
3631
|
+
index: this.index,
|
|
3632
|
+
now: () => Date.now(),
|
|
3633
|
+
newId: () => randomUUID(),
|
|
3634
|
+
createdBy: () => "operator",
|
|
3635
|
+
outPath: exportOutPath,
|
|
3636
|
+
removeFile: removeExportFile,
|
|
3637
|
+
downloadUrlFor: (id) => `/addon/${RECORDER_ADDON_ID}/${EXPORTS_PREFIX}/${id}.mp4`
|
|
3638
|
+
});
|
|
3185
3639
|
try {
|
|
3186
3640
|
const handler = createFileDataPlaneHandler({ getRoots: () => this.playbackRoots() });
|
|
3187
3641
|
const served = await this.ctx.dataPlane?.serve({
|
|
@@ -3197,6 +3651,19 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3197
3651
|
} catch (err) {
|
|
3198
3652
|
this.ctx.logger.warn("recorder playback data-plane failed to serve", { meta: { error: errMsg(err) } });
|
|
3199
3653
|
}
|
|
3654
|
+
try {
|
|
3655
|
+
const served = await this.ctx.dataPlane?.serve({
|
|
3656
|
+
prefix: EXPORTS_PREFIX,
|
|
3657
|
+
access: "authenticated",
|
|
3658
|
+
handler: (req, res) => this.serveExportDownload(exportsState, exportOutPath, req, res)
|
|
3659
|
+
});
|
|
3660
|
+
this.ctx.logger.info("recorder exports data-plane served", { meta: {
|
|
3661
|
+
clientBase: served ? `/addon/${RECORDER_ADDON_ID}/${EXPORTS_PREFIX}` : "(no dataPlane facility)",
|
|
3662
|
+
internal: served?.baseUrl
|
|
3663
|
+
} });
|
|
3664
|
+
} catch (err) {
|
|
3665
|
+
this.ctx.logger.warn("recorder exports data-plane failed to serve", { meta: { error: errMsg(err) } });
|
|
3666
|
+
}
|
|
3200
3667
|
await this.ensureThumbnailService().serveEarly();
|
|
3201
3668
|
this.ctx.logger.info("recorder addon started (continuous write path active)", {
|
|
3202
3669
|
tags: { nodeId: this.nodeId },
|
|
@@ -3205,13 +3672,20 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3205
3672
|
watchIntervalMs: this.config.watchIntervalMs
|
|
3206
3673
|
}
|
|
3207
3674
|
});
|
|
3208
|
-
return { providers: [
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3675
|
+
return { providers: [
|
|
3676
|
+
{
|
|
3677
|
+
capability: recordingCapability,
|
|
3678
|
+
provider: recordingProvider
|
|
3679
|
+
},
|
|
3680
|
+
{
|
|
3681
|
+
capability: storageEvictableCapability,
|
|
3682
|
+
provider: evictableProvider
|
|
3683
|
+
},
|
|
3684
|
+
{
|
|
3685
|
+
capability: recordingExportCapability,
|
|
3686
|
+
provider: exportProvider
|
|
3687
|
+
}
|
|
3688
|
+
] };
|
|
3215
3689
|
}
|
|
3216
3690
|
async onShutdown() {
|
|
3217
3691
|
this.eventUnsub?.();
|
|
@@ -3221,6 +3695,11 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3221
3695
|
this.segmentStore = null;
|
|
3222
3696
|
await this.thumbnailService?.stop();
|
|
3223
3697
|
this.thumbnailService = null;
|
|
3698
|
+
if (this.exportSweepTimer !== null) {
|
|
3699
|
+
clearInterval(this.exportSweepTimer);
|
|
3700
|
+
this.exportSweepTimer = null;
|
|
3701
|
+
}
|
|
3702
|
+
this.exportEngine = null;
|
|
3224
3703
|
}
|
|
3225
3704
|
/**
|
|
3226
3705
|
* Boot hydrate: once the hub is reachable (`ctx.api.*` safe), resolve the
|
|
@@ -3278,6 +3757,39 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3278
3757
|
} catch (err) {
|
|
3279
3758
|
this.ctx.logger.warn("recorder: thumbnail service start failed", { meta: { error: errMsg(err) } });
|
|
3280
3759
|
}
|
|
3760
|
+
await this.bootstrapExports();
|
|
3761
|
+
}
|
|
3762
|
+
/**
|
|
3763
|
+
* Resume interrupted exports and arm the expiry sweep. A row left `rendering`
|
|
3764
|
+
* by a crash/restart has no live ffmpeg, so demote it to `queued` and re-enqueue
|
|
3765
|
+
* it alongside any still-`queued` rows. The sweep runs immediately then on an
|
|
3766
|
+
* interval; both are best-effort (a failure never blocks boot).
|
|
3767
|
+
*/
|
|
3768
|
+
async bootstrapExports() {
|
|
3769
|
+
const engine = this.exportEngine;
|
|
3770
|
+
if (!engine) return;
|
|
3771
|
+
const state = this.exportsStore();
|
|
3772
|
+
try {
|
|
3773
|
+
for (const rec of await listExportsFor(state)) {
|
|
3774
|
+
if (rec.state === "rendering") await patchExport(state, rec.id, {
|
|
3775
|
+
state: "queued",
|
|
3776
|
+
progressPct: null
|
|
3777
|
+
});
|
|
3778
|
+
if (rec.state === "queued" || rec.state === "rendering") engine.enqueue(rec.id);
|
|
3779
|
+
}
|
|
3780
|
+
} catch (err) {
|
|
3781
|
+
this.ctx.logger.warn("recorder: export boot re-queue failed", { meta: { error: errMsg(err) } });
|
|
3782
|
+
}
|
|
3783
|
+
if (this.exportSweepTimer === null) {
|
|
3784
|
+
const sweep = () => {
|
|
3785
|
+
sweepExpiredExports(Date.now(), this.exportJanitorDeps()).catch((err) => {
|
|
3786
|
+
this.ctx.logger.warn("recorder: export expiry sweep failed", { meta: { error: errMsg(err) } });
|
|
3787
|
+
});
|
|
3788
|
+
};
|
|
3789
|
+
sweep();
|
|
3790
|
+
this.exportSweepTimer = setInterval(sweep, EXPORT_SWEEP_INTERVAL_MS);
|
|
3791
|
+
this.exportSweepTimer.unref?.();
|
|
3792
|
+
}
|
|
3281
3793
|
}
|
|
3282
3794
|
/** Construct the thumbnail service once — every dep is a lazy closure, so
|
|
3283
3795
|
* construction is safe in `onInitialize` (before locations resolve). */
|
|
@@ -3406,6 +3918,121 @@ var RecorderV2Addon = class extends BaseAddon {
|
|
|
3406
3918
|
configStore() {
|
|
3407
3919
|
return this.state(RECORDING_CONFIGS_KEY, RecordingConfigsBlobSchema, {});
|
|
3408
3920
|
}
|
|
3921
|
+
/** Durable handle over the exportId→ExportRecord blob (same `BaseAddon.state()`
|
|
3922
|
+
* wrapper as the config store). */
|
|
3923
|
+
exportsStore() {
|
|
3924
|
+
return this.state(RECORDING_EXPORTS_KEY, RecordingExportsBlobSchema, {});
|
|
3925
|
+
}
|
|
3926
|
+
/** Retention deps shared by the sweep and the download-complete hook. */
|
|
3927
|
+
exportJanitorDeps() {
|
|
3928
|
+
return {
|
|
3929
|
+
state: this.exportsStore(),
|
|
3930
|
+
outPath: (rec) => path.join(this.ctx.dataDir, EXPORTS_PREFIX, String(rec.deviceId), `${rec.id}.mp4`),
|
|
3931
|
+
removeFile: async (p) => {
|
|
3932
|
+
await promises.rm(p, { force: true });
|
|
3933
|
+
}
|
|
3934
|
+
};
|
|
3935
|
+
}
|
|
3936
|
+
/** Emit an export telemetry event through the addon event bus (untyped
|
|
3937
|
+
* category — the export categories are telemetry, not in the typed catalog). */
|
|
3938
|
+
emitExportEvent(category, data) {
|
|
3939
|
+
const source = {
|
|
3940
|
+
type: "addon",
|
|
3941
|
+
id: RECORDER_ADDON_ID,
|
|
3942
|
+
nodeId: this.nodeId
|
|
3943
|
+
};
|
|
3944
|
+
this.ctx.eventBus.emit({
|
|
3945
|
+
id: randomUUID(),
|
|
3946
|
+
timestamp: /* @__PURE__ */ new Date(),
|
|
3947
|
+
source,
|
|
3948
|
+
category,
|
|
3949
|
+
data
|
|
3950
|
+
});
|
|
3951
|
+
}
|
|
3952
|
+
/**
|
|
3953
|
+
* Dedicated export MP4 download handler. Resolves `<exportId>.mp4` to a `ready`
|
|
3954
|
+
* row's file (traversal-guarded by the id regex + the exact stored path),
|
|
3955
|
+
* streams it with HTTP `Range`, and — when the FINAL byte of a full-file GET is
|
|
3956
|
+
* flushed — records the download so `deleteAfterDownload` can reclaim the file.
|
|
3957
|
+
*/
|
|
3958
|
+
async serveExportDownload(state, outPath, req, res) {
|
|
3959
|
+
if (req.method !== "GET" && req.method !== "HEAD") {
|
|
3960
|
+
res.writeHead(405).end();
|
|
3961
|
+
return;
|
|
3962
|
+
}
|
|
3963
|
+
const urlPath = (req.url ?? "/").split("?")[0] ?? "/";
|
|
3964
|
+
const match = EXPORT_FILENAME_RE.exec(urlPath.replace(/^\/+/, ""));
|
|
3965
|
+
if (!match) {
|
|
3966
|
+
res.writeHead(404).end();
|
|
3967
|
+
return;
|
|
3968
|
+
}
|
|
3969
|
+
const exportId = match[1];
|
|
3970
|
+
const rec = await getExportRecord(state, exportId);
|
|
3971
|
+
if (!rec || rec.state !== "ready") {
|
|
3972
|
+
res.writeHead(404).end();
|
|
3973
|
+
return;
|
|
3974
|
+
}
|
|
3975
|
+
const absPath = outPath(rec);
|
|
3976
|
+
let size;
|
|
3977
|
+
try {
|
|
3978
|
+
const st = await promises.stat(absPath);
|
|
3979
|
+
if (!st.isFile()) {
|
|
3980
|
+
res.writeHead(404).end();
|
|
3981
|
+
return;
|
|
3982
|
+
}
|
|
3983
|
+
size = st.size;
|
|
3984
|
+
} catch {
|
|
3985
|
+
res.writeHead(404).end();
|
|
3986
|
+
return;
|
|
3987
|
+
}
|
|
3988
|
+
const baseHeaders = {
|
|
3989
|
+
"content-type": contentTypeFor(absPath),
|
|
3990
|
+
"accept-ranges": "bytes",
|
|
3991
|
+
"cache-control": "no-cache"
|
|
3992
|
+
};
|
|
3993
|
+
const range = parseRangeHeader(req.headers.range, size);
|
|
3994
|
+
const servesFinalByte = range ? range.end === size - 1 : true;
|
|
3995
|
+
const recordDownloadOnFinish = () => {
|
|
3996
|
+
if (req.method !== "GET" || !servesFinalByte) return;
|
|
3997
|
+
res.once("finish", () => {
|
|
3998
|
+
markDownloaded(exportId, Date.now(), this.exportJanitorDeps(), (fn, ms) => {
|
|
3999
|
+
setTimeout(fn, ms).unref?.();
|
|
4000
|
+
}, EXPORT_DELETE_GRACE_MS).catch((err) => {
|
|
4001
|
+
this.ctx.logger.warn("recorder: markDownloaded failed", { meta: {
|
|
4002
|
+
exportId,
|
|
4003
|
+
error: errMsg(err)
|
|
4004
|
+
} });
|
|
4005
|
+
});
|
|
4006
|
+
});
|
|
4007
|
+
};
|
|
4008
|
+
if (range) {
|
|
4009
|
+
res.writeHead(206, {
|
|
4010
|
+
...baseHeaders,
|
|
4011
|
+
"content-range": `bytes ${range.start}-${range.end}/${size}`,
|
|
4012
|
+
"content-length": String(range.end - range.start + 1)
|
|
4013
|
+
});
|
|
4014
|
+
if (req.method === "HEAD") {
|
|
4015
|
+
res.end();
|
|
4016
|
+
return;
|
|
4017
|
+
}
|
|
4018
|
+
recordDownloadOnFinish();
|
|
4019
|
+
createReadStream(absPath, {
|
|
4020
|
+
start: range.start,
|
|
4021
|
+
end: range.end
|
|
4022
|
+
}).pipe(res);
|
|
4023
|
+
return;
|
|
4024
|
+
}
|
|
4025
|
+
res.writeHead(200, {
|
|
4026
|
+
...baseHeaders,
|
|
4027
|
+
"content-length": String(size)
|
|
4028
|
+
});
|
|
4029
|
+
if (req.method === "HEAD") {
|
|
4030
|
+
res.end();
|
|
4031
|
+
return;
|
|
4032
|
+
}
|
|
4033
|
+
recordDownloadOnFinish();
|
|
4034
|
+
createReadStream(absPath).pipe(res);
|
|
4035
|
+
}
|
|
3409
4036
|
};
|
|
3410
4037
|
//#endregion
|
|
3411
4038
|
export { RecorderV2Addon as default };
|