Spaces:
Sleeping
Sleeping
File size: 1,123 Bytes
43a06dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
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;
|