cobalt/web/src/lib/settings/defaults.ts
wukko 937fddf3e9
web/settings/defaults: roll back default hls
it seems to be doing more bad than good, we need to scale or finish the duck project first
2025-01-07 13:16:58 +06:00

45 lines
1.1 KiB
TypeScript

import { defaultLocale } from "$lib/i18n/translations";
import type { CobaltSettings } from "$lib/types/settings";
const defaultSettings: CobaltSettings = {
schemaVersion: 4,
advanced: {
debug: false,
},
appearance: {
theme: "auto",
language: defaultLocale,
autoLanguage: true,
reduceMotion: false,
reduceTransparency: false,
},
save: {
audioBitrate: "128",
audioFormat: "mp3",
disableMetadata: false,
downloadMode: "auto",
filenameStyle: "classic",
savingMethod: "download",
tiktokH265: false,
tiktokFullAudio: false,
twitterGif: true,
videoQuality: "1080",
youtubeVideoCodec: "h264",
youtubeDubLang: "original",
youtubeHLS: false,
},
privacy: {
alwaysProxy: false,
disableAnalytics: false,
},
processing: {
customInstanceURL: "",
customApiKey: "",
enableCustomInstances: false,
enableCustomApiKey: false,
seenCustomWarning: false,
}
}
export default defaultSettings;