Adding custom music to Music Player

To add custom tracks, create a music_data folder in the client's main directory (next to the executable file and the assets folder). Inside it, create a tracks.json file and a music folder.

tracks.json should have the following structure:

[
  {
    "name": "Track 1",
    "file": "music/track1.aac"
  },
  {
    "name": "Track 2",
    "file": "music/Track 2.aac"
  },
  {
    "name": "Track - 3",
    "file": "music/Track - 3.aac"
  }
]
        

The music folder should contain audio files in .aac format.

The added tracks will appear in the Music Player.