astra integration module

This commit is contained in:
Boof2015
2026-03-29 18:55:36 -04:00
parent 6cd30cac39
commit 6f73802252
30 changed files with 2314 additions and 39 deletions
+16
View File
@@ -48,6 +48,14 @@ export interface ScopeSettings {
gainDb: number
multiband: boolean
}
astra: {
showCoverArt: boolean
showTitle: boolean
showArtist: boolean
showProgress: boolean
showTime: boolean
showControls: boolean
}
}
export const DEFAULT_SCOPE_SETTINGS: ScopeSettings = {
@@ -58,4 +66,12 @@ export const DEFAULT_SCOPE_SETTINGS: ScopeSettings = {
vumeter: { mode: 'bar', orientation: 'horizontal' },
lufsmeter: { mode: 'bar' },
waveform: { mode: DEFAULT_WAVEFORM_MODE, scrollSpeed: 1, gainDb: 0, multiband: false },
astra: {
showCoverArt: true,
showTitle: true,
showArtist: true,
showProgress: true,
showTime: true,
showControls: true,
},
}