first commit
This commit is contained in:
26
deezspot/spotloader/spotify_settings.py
Normal file
26
deezspot/spotloader/spotify_settings.py
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user