Skip to content

Commit

Permalink
chore: adds sentry for tracking errors, so that we can better test on…
Browse files Browse the repository at this point in the history
… mobile devices: test unpgk as host
  • Loading branch information
nwittstruck committed Apr 23, 2024
1 parent 61e5c18 commit 078eb22
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/services/video/video.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ export class VideoService {
});
await this.ffmpeg.load({
coreURL: await toBlobURL(`${assetBasePath}/ffmpeg-core.js`, "text/javascript"),
wasmURL: await toBlobURL(
`${assetBasePath}/ffmpeg-core.wasm`,
/*wasmURL: await toBlobURL(
``,
"application/wasm"
),
),*/
wasmURL: await toBlobURL(`https://unpkg.com/@ffmpeg/core@0.12.6/dist/esm/ffmpeg-core.wasm`, `application/wasm`),
classWorkerURL: `${assetBasePath}/worker.js`
});
this.loaded = true;
Expand Down

0 comments on commit 078eb22

Please sign in to comment.