Skip to content

Instantly share code, notes, and snippets.

@fakuivan
Last active June 14, 2023 15:00
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fakuivan/007885516ff35f750981b0b403d6006a to your computer and use it in GitHub Desktop.
Save fakuivan/007885516ff35f750981b0b403d6006a to your computer and use it in GitHub Desktop.
Set Spotify quality to the maximum possible on desktop

Modify Spotify quality settings

Open Spotify's local storage directory, I'm using the appx version. Run this command in PowerShell

explorer `
  "$([System.IO.Path]::combine("$env:LOCALAPPDATA", `
                               "Packages", `
                               "$((Get-AppxPackage -Name "SpotifyAB.SpotifyMusic").PackageFamilyName)", `
                               "LocalState", `
                               "Spotify", `
                               "Users"))"

Once the windows explorer opens on that directory enter the directory named "{your username}-user" and open the file prefs and edit the lines audio.play_bitrate_enumeration and audio.sync_bitrate_enumeration to your liking, as far as I can tell the enumerations are mapped to these quality levels:

  • 1 = Low Quality
  • 2 = Normal Quality
  • 3 = High Quality
  • 4 = Extreme Quality
@PaulWentzel420
Copy link

Setting it from 1 to 3 works as expected, but setting it to 4 has the same effect as setting it to 3 sadly

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment