api: add an option to allow better audio from youtube

& an env variable to disable it if needed
This commit is contained in:
wukko
2025-04-20 20:45:07 +06:00
parent 0294bbd447
commit 335cd51eb5
3 changed files with 6 additions and 0 deletions

View File

@@ -46,5 +46,6 @@ export const apiSchema = z.object({
localProcessing: z.boolean().default(false),
youtubeHLS: z.boolean().default(false),
youtubeBetterAudio: z.boolean().default(false),
})
.strict();