Equalizer Preset File Format: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
(Created page with "MediaMonkey saves equalizer presets in text files with <tt>.sde</tt> extension. Files are stored under SDB.EqualizerPath folder. These presets...")
 
(No difference)

Latest revision as of 13:52, 24 April 2013

MediaMonkey saves equalizer presets in text files with .sde extension. Files are stored under SDB.EqualizerPath folder.

These presets can be loaded and saved in the Equalizer dialog. Through scripting, presets can be loaded using the ISDBPlayer::LoadEqualizerPreset method.

File structure description

File has same structure as .ini files. There is one section [Equalizer] with following keys:

  • Bands
  • LeftPreamp
  • RightPreamp
  • Left1 and Right1 to Left10 and Right10

MediaMonkey equalizer dialog is not able to set different values for left and right channels. Therefore .sde files saved from the dialog always have same Left* and Right* values.

Key Description Allowed values
Bands Amount of equalizer bands Always 10
LeftPreamp Left channel preamp -2020 (default 0) (dB)
RightPreamp Right channel preamp -2020 (default 0) (dB)
Left1 … Left10 Left channel equalizer at 31Hz, 63Hz, 125Hz, 250Hz, 500Hz, 1kHz, 2kHz, 4kHz, 8kHz, 16kHz -2020 (default 0) (dB)
Right1 … Right10 Right channel equalizer at 31Hz, 63Hz, 125Hz, 250Hz, 500Hz, 1kHz, 2kHz, 4kHz, 8kHz, 16kHz -2020 (default 0) (dB)

Sample .sde file

This is example of .sde file with default settings, e.g. sound is not modified).

[Equalizer]
Bands=10
LeftPreamp=0
RightPreamp=0
Left1=0
Right1=0
Left2=0
Right2=0
Left3=0
Right3=0
Left4=0
Right4=0
Left5=0
Right5=0
Left6=0
Right6=0
Left7=0
Right7=0
Left8=0
Right8=0
Left9=0
Right9=0
Left10=0
Right10=0

Related Topics