diff --git a/src/lib/components/layout/Gradients.svelte b/src/lib/components/layout/Gradients.svelte
index 2adefcf..6a9c9e4 100644
--- a/src/lib/components/layout/Gradients.svelte
+++ b/src/lib/components/layout/Gradients.svelte
@@ -2,7 +2,11 @@
import { page } from "$app/state";
import { duration } from "$lib/animation";
import VertVBig from "$lib/assets/vert-bg.svg?component";
- import { files, gradientColor, showGradient } from "$lib/store/index.svelte";
+ import {
+ files,
+ gradientColor,
+ showGradient,
+ } from "$lib/store/index.svelte";
import { quintOut } from "svelte/easing";
import { fade } from "$lib/animation";
@@ -90,4 +94,4 @@
easing: quintOut,
}}
>
-{/if}
\ No newline at end of file
+{/if}
diff --git a/src/lib/converters/ffmpeg.svelte.ts b/src/lib/converters/ffmpeg.svelte.ts
index 963b975..bfb8fc4 100644
--- a/src/lib/converters/ffmpeg.svelte.ts
+++ b/src/lib/converters/ffmpeg.svelte.ts
@@ -32,6 +32,7 @@ export class FFmpegConverter extends Converter {
log(["converters", this.name], `created converter`);
if (!browser) return;
try {
+ // this is just to cache the wasm and js for when we actually use it. we're not using this ffmpeg instance
this.ffmpeg = new FFmpeg();
(async () => {
const baseURL =
@@ -40,7 +41,6 @@ export class FFmpegConverter extends Converter {
coreURL: `${baseURL}/ffmpeg-core.js`,
wasmURL: `${baseURL}/ffmpeg-core.wasm`,
});
- // this is just to cache the wasm and js for when we actually use it. we're not using this ffmpeg instance
this.ready = true;
})();
} catch (err) {
diff --git a/src/lib/sections/about/Vertd.svelte b/src/lib/sections/about/Vertd.svelte
index 27502df..61b914c 100644
--- a/src/lib/sections/about/Vertd.svelte
+++ b/src/lib/sections/about/Vertd.svelte
@@ -1,8 +1,26 @@
+ Status: + {status.images.ready ? "ready" : "not ready"} +
Supported formats: - {supportedFormats.images} + {status.images.formats}
+ Status: + {status.audio.ready ? "ready" : "not ready"} +
Supported formats: - {supportedFormats.audio} + {status.audio.formats}
@@ -107,7 +127,14 @@ >Learn more. -Supported formats: {supportedFormats.video}
++ Status: + {status.video.ready ? "ready" : "not ready"} +
++ Supported formats: + {status.video.formats} +