mirror of
https://github.com/wukko/cobalt.git
synced 2025-05-09 10:14:26 +02:00

it seems to be doing more bad than good, we need to scale or finish the duck project first
45 lines
1.1 KiB
TypeScript
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;
|