pavucontrol-qt icon indicating copy to clipboard operation
pavucontrol-qt copied to clipboard

Volume meter

Open palinek opened this issue 6 years ago • 4 comments

fixes #75

palinek avatar Oct 26 '18 09:10 palinek

I don't think the animation saves a tangible amount of CPU time. Moreover, it seems much better to me when the value shown by the progressbar is that of the moment -- quick ups and downs are informative (although the animation is only for ~ups~ downs).

tsujan avatar Oct 26 '18 10:10 tsujan

Moreover, it seems much better to me when the value shown by the progressbar is that of the moment

It is not so even in current master implementation:

    if (lastPeak >= DECAY_STEP)
        if (v < lastPeak - DECAY_STEP)
            v = lastPeak - DECAY_STEP;

palinek avatar Oct 26 '18 10:10 palinek

It is not so even in current master implementation:

The current master is better. I first compiled, then saw that a piano concerto "looked" like a violin concerto (contrary to my installed pavucontrol-qt), and only then, saw the diff.

tsujan avatar Oct 26 '18 10:10 tsujan

I don't think the animation saves a tangible amount of CPU time.

AFAICT the pulseaudio daemon itself burns at least as much CPU as pavucontrol-qt when showing the VU meters.

This is the main reason why I rarely leave the application open, while I'd actually prefer that when changing audio devices ("sinks").

It would be useful to have the Show volume meters checkbox in a new frame under the tabbox widget, so it is accessible from all tabs.

RJVB avatar Jul 30 '24 22:07 RJVB