first commit

This commit is contained in:
cool.gitter.not.me.again.duh
2025-05-31 15:51:18 -06:00
commit 089cb3dc5a
34 changed files with 9012 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#!/usr/bin/python3
from librespot.audio.decoders import AudioQuality
stock_quality = "HIGH"
librespot_credentials = "credentials.json"
qualities = {
"HIGH": {
"n_quality": AudioQuality.HIGH,
"f_format": ".ogg",
"s_quality": "HIGH"
},
"VERY_HIGH": {
"n_quality": AudioQuality.VERY_HIGH,
"f_format": ".ogg",
"s_quality": "VERY_HIGH"
},
"NORMAL": {
"n_quality": AudioQuality.NORMAL,
"f_format": ".ogg",
"s_quality": "NORMAL"
}
}