Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Recent Posts
1
FLAC / Re: FLAC v1.4.x Performance Tests
Last post by Wombat -
I am still wondering GCC 14 being slower with all option versions on my AMD 5900x as the older GCC 13.
If someone wants the current git-cfe3afca in 14.1.0 for testing here it is as generic, AVX2 and with disabled asm.
2
3rd Party Plugins - (fb2k) / Re: External Tags
Last post by Case -
The metadata that APIs return for a track doesn't change when stream is switched. Doing what is suggested would pretty much require ignoring all metadata caches and forcing fresh tag reloads from decoders at all times.
Until there are proper interfaces to do what you want, it's best to stick to one stream.
4
General Audio / Re: Replay gain not working properly, audio levels are not norlamized
Last post by rzsolti -
Only if you look at the whole albums, which must use the loudest track's correction for the whole album in order to preserve inter-track volume differences, the classical album seems to have a louder finale section. That is not surprising, given that classical music tends to have a huge dynamic range (=loudness differences) within an album.

Thanks, i will try this. However, the courious thing is: the classical music album is just a solo flute + piano, it does not have really load sections, which would make this much album gain nececery.

I usually listen to whole albums, so i thought the album mode made sense
5
Support - (fb2k) / Re: Bitperfect audio in v2.x?
Last post by Case -
All default outputs in foobar2000 since v1.6 are WASAPI. The bitperfect output you want requires WASAPI exclusive, also supported natively. Just select an output that has "[exclusive]" at the end of the name.
6
General Audio / Re: Replay gain not working properly, audio levels are not norlamized
Last post by rzsolti -
my mpd config
#music_directory                "/music"
#playlist_directory             "/playlists"
#db_file                        "/db"
# General music daemon options ################################################
user                            "root"
group                           "root"
###############################################################################
# Input #######################################################################
input {
        plugin "curl"
}
###############################################################################
# Audio Output ################################################################
audio_output {
        type                 "alsa"
        name               "default"
        mixer_control      "SMSL SU-8"
        replay_gain_handler    "software"
}
###############################################################################
# Normalization automatic volume adjustments ##################################
replaygain                      "album"
replaygain_preamp               "0"
###############################################################################
8
General Audio / Re: Replay gain not working properly, audio levels are not norlamized
Last post by ojdo -
If you look at track gain for those tracks, they match what you expect: flute+piano are to be corrected only -5.00 dB (=track already is quite silen), while Taylor Swift needs a whopping -12.81 dB reduction (=track is loud).

Only if you look at the whole albums, which must use the loudest track's correction for the whole album in order to preserve inter-track volume differences, the classical album seems to have a louder finale section. That is not surprising, given that classical music tends to have a huge dynamic range (=loudness differences) within an album.

To test this hypothesis, try setting MPD to applying track gain. Now the classical track should sound much closer in volume to Taylor Swift. Applying "Album gain" only makes sense when listening to albums continuously. For most other situations (e.g. shuffling playlists), track gain brings you closer to your goal of maintaining a constant listening volume.
9
General Audio / Re: Replay gain not working properly, audio levels are not norlamized
Last post by rzsolti -
My alsa setup:
pcm.softvol {
    type            softvol
    slave {
        pcm         "hw:DAC"
    }
    control {
        name        "SMSL SU-8 Playback Volume"
        card        0
    }
}

pcm.!default {
    type             plug
    slave.pcm       "softvol"
    slave.rate "unchanged"
}
10
General Audio / Replay gain not working properly, audio levels are not norlamized
Last post by rzsolti -
In MusicBrainz Picard, i have set the replay gain tags (by album) for my collection, here are the parameters, i have used:
  • target level: -23
  • True peak
  • Max peak: -1
  • Clipping protection: always
In MPD, i have enabled replay gain and set it to use album tags.
So, in theory, everything is perfect, in practice, however, Taylor Swift is loud and classical music is quiet.