Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Store the ReplayGain tag values as strings #864

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions matroska_tags.xml
Original file line number Diff line number Diff line change
Expand Up @@ -308,12 +308,15 @@ The majority of the contemporary rock and pop music you hear on the radio these
<description lang="en">It is saved as a frequency in hertz to allow near-perfect tuning of instruments to
the same tone as the musical piece (e.g., "441.34" in Hertz). The default value is 440.0 Hz.</description>
</tag>
<tag name="REPLAYGAIN_GAIN" class="Technical Information" type="binary">
<description lang="en">The gain to apply to reach 89dB SPL on playback. This is based on the [@!ReplayGain] standard.
Note that ReplayGain information can be found at all TargetType levels (track, album, etc).</description>
</tag>
<tag name="REPLAYGAIN_PEAK" class="Technical Information" type="binary">
<description lang="en">The maximum absolute peak value of the item. This is based on the [@!ReplayGain] standard.</description>
<tag name="REPLAYGAIN_GAIN" class="Technical Information" type="UTF-8">
<description lang="en">The gain to apply to reach 89dB SPL on playback. The value is computed according to the [@!ReplayGain] standard.
The value in decibels (dB) is stored as a string (e.g., "-0.42 dB"). The decibel unit is **OPTIONAL**.
Note that ReplayGain information can be found at all TargetType levels (track, album, etc).</description>
</tag>
<tag name="REPLAYGAIN_PEAK" class="Technical Information" type="UTF-8">
<description lang="en">The maximum absolute peak amplitude of the item. The value is computed according to the [@!ReplayGain] standard.
The value is a normalized absolute sample value of the target audio stored as a string without spaces (e.g., "1.0129").
Note that ReplayGain information can be found at all TargetType levels (track, album, etc).</description>
</tag>
<tag name="ISRC" class="Identifiers" type="UTF-8">
<description lang="en">The International Standard Recording Code [@!ISRC],
Expand Down
Loading