mirror of
https://git.lucida.su/lucida/verdana.git
synced 2026-08-17 13:04:05 +00:00
change priority
This commit is contained in:
parent
44bc197d35
commit
8e877ec4d7
2 changed files with 2 additions and 1 deletions
|
|
@ -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…
Reference in a new issue