mirror of
https://git.gay/lucida/lucida
synced 2025-12-11 20:15:14 +01:00
change priority
This commit is contained in:
parent
44bc197d35
commit
8e877ec4d7
@ -265,8 +265,8 @@ async function getStream(
|
||||
if (hq == true && filter.length == 0) throw new Error('Could not find HQ format.')
|
||||
|
||||
if (filter.length == 0) filter = transcodings.filter((x) => x.preset.startsWith('aac_')) // prioritize aac (go+)
|
||||
if (filter.length == 0) filter = transcodings.filter((x) => x.preset.startsWith('opus_')) // then opus
|
||||
if (filter.length == 0) filter = transcodings.filter((x) => x.preset.startsWith('mp3_')) // then mp3
|
||||
if (filter.length == 0) filter = transcodings.filter((x) => x.preset.startsWith('opus_')) // then opus
|
||||
if (filter.length == 0) throw new Error('Could not find applicable format.') // and this is just in case none of those exist
|
||||
|
||||
const transcoding = filter[0]
|
||||
|
||||
@ -45,6 +45,7 @@ export interface Track {
|
||||
album?: Album
|
||||
durationMs?: number
|
||||
coverArtwork?: CoverArtwork[]
|
||||
regions?: Region[]
|
||||
}
|
||||
|
||||
export interface SearchResults {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user