diff --git a/ui/media/js/auto-save.js b/ui/media/js/auto-save.js index df044e2b..44903724 100644 --- a/ui/media/js/auto-save.js +++ b/ui/media/js/auto-save.js @@ -38,6 +38,7 @@ const SETTINGS_IDS_LIST = [ "sound_toggle", "turbo", "confirm_dangerous_actions", + "metadata_output_format", "auto_save_settings", "apply_color_correction" ] diff --git a/ui/media/js/parameters.js b/ui/media/js/parameters.js index f326953b..a4167fc3 100644 --- a/ui/media/js/parameters.js +++ b/ui/media/js/parameters.js @@ -53,6 +53,19 @@ var PARAMETERS = [ return `` } }, + { + id: "metadata_output_format", + type: ParameterType.select, + label: "Metadata format", + note: "the metadata will be saved to disk in this format", + default: "txt", + options: [ + { + value: "txt", + label: "json" + } + ], + }, { id: "sound_toggle", type: ParameterType.checkbox,