Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/lib/captioning/extractMono16kWebDemuxer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const SOURCE_LOAD_TIMEOUT_MS = 60_000;
const READ_END_PADDING_SEC = 0.5;

function webDemuxerWasmUrl(): string {
return new URL("../exporter/wasm/web-demuxer.wasm", window.location.href).href;
return new URL("./wasm/web-demuxer.wasm", window.location.href).href;
}

/** Mixes one WebCodecs AudioData frame down to mono (averaged across channels). */
Expand Down