diff --git a/app/library/YTDLPOpts.py b/app/library/YTDLPOpts.py
index b989f062..d853e5bd 100644
--- a/app/library/YTDLPOpts.py
+++ b/app/library/YTDLPOpts.py
@@ -129,7 +129,7 @@ class YTDLPOpts(metaclass=Singleton):
self.presets_opts = {}
self._item_opts = {}
- if "format" in data and "not_set" == data["format"]:
+ if "format" in data and data["format"] in ["not_set", "default"]:
data["format"] = None
return data
diff --git a/ui/components/PresetForm.vue b/ui/components/PresetForm.vue
index e1c499e9..3ac968ad 100644
--- a/ui/components/PresetForm.vue
+++ b/ui/components/PresetForm.vue
@@ -113,8 +113,7 @@
The yt-dlp [--format, -f] video format code. see not_set
- to use the default yt-dlp format.
+ default to let yt-dlp choose the best format.
@@ -223,19 +222,19 @@