Omniform saves every downloaded file to a configurable output folder. The folder is displayed in a button at the top of the app window, just above the URL input. It defaults to the system Downloads directory when the app starts, and any folder you pick applies to all subsequent downloads in that session.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/damianiglesias/omniform/llms.txt
Use this file to discover all available pages before exploring further.
The output folder setting is session-only. Every time you restart Omniform the
folder resets to the system Downloads default. There is currently no persistent
preference to save a custom path across sessions.
Default output folder
On startup, Omniform calls theget_default_output_dir backend command, which uses Rust’s dirs crate to resolve the system Downloads directory (dirs::download_dir()). If no dedicated Downloads folder exists on the system, it falls back to the home directory.
| Platform | Default output path |
|---|---|
| Windows | C:\Users\<username>\Downloads |
| macOS | /Users/<username>/Downloads |
| Linux | /home/<username>/Downloads (or $HOME if no XDG Downloads directory is configured) |
Changing the folder
Click the output folder button — the one displaying the current folder path (or “Select a folder…” if no path has been resolved yet) — to open the native directory picker for your operating system.Click the output folder button
The button is located in the Output folder row above the URL input form. It shows the currently active folder path.
Pick a folder
Your operating system’s native directory picker opens. Browse to any folder you have write access to and confirm your selection.
Filename format
Omniform uses the following yt-dlp output template for every download:| Template variable | Value |
|---|---|
%(title)s | The video’s metadata title as returned by the platform |
%(ext)s | The file extension for the chosen output format (e.g. mp4, mp3, flac) |