Files
allstarr/octo-fiesta/appsettings.json
V1ck3s 8aa9c2d437 feat: implement DeezerDownloadService with Blowfish decryption
- Port JavaScript DeezerDownloader to C#
- Add Deezer API authentication with ARL token
- Implement track download via media.deezer.com API
- Add Blowfish CBC decryption for encrypted chunks (uses OpenSSL)
- Add rate limiting and retry with exponential backoff
- Update config for Deezer ARL tokens
- Configure Subsonic URL to 192.168.1.12:4533
2025-12-13 18:06:37 +01:00

20 lines
311 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Subsonic": {
"Url": "http://192.168.1.12:4533"
},
"Library": {
"DownloadPath": "./downloads"
},
"Deezer": {
"Arl": "",
"ArlFallback": ""
}
}