From 343d5f2d65084ab51bcffe99bab13c01db6d0975 Mon Sep 17 00:00:00 2001 From: Maya Date: Mon, 4 May 2026 15:27:29 +0300 Subject: [PATCH] feat: ui of image sequence/fps in format dropdown --- messages/en.json | 4 + .../components/functional/FancyInput.svelte | 102 ++++++++++-------- .../functional/FormatDropdown.svelte | 24 ++++- src/lib/css/app.scss | 2 +- 4 files changed, 84 insertions(+), 48 deletions(-) diff --git a/messages/en.json b/messages/en.json index 6fb0e81..fffca5a 100644 --- a/messages/en.json +++ b/messages/en.json @@ -59,6 +59,10 @@ "image": "image", "extract_error": "Error extracting {filename}: {error}" }, + "image_sequence": { + "image_sequence": "Image Sequence", + "fps": "FPS" + }, "large_file_warning": "Due to browser / device limitations, video to audio conversion is disabled for this file as it is larger than {limit}GB. We recommend using Firefox or Safari for files of this size since they have less limitations.", "external_warning": { "title": "External server warning", diff --git a/src/lib/components/functional/FancyInput.svelte b/src/lib/components/functional/FancyInput.svelte index 8f1b7ce..6a81085 100644 --- a/src/lib/components/functional/FancyInput.svelte +++ b/src/lib/components/functional/FancyInput.svelte @@ -1,24 +1,29 @@