Yesterday, 05:03 PM
(Yesterday, 04:42 PM)romain Wrote:(03-10-2025, 09:09 PM)romain Wrote:(03-10-2025, 05:06 PM)Tim Curtis Wrote: Click the time to toggle between count up and count down. The shipped default is to count down. Quick help explains the toggle.
That was it, thanks
@Tim Curtis ,
in order to avoid getting an useless slash between format and sample rate when format is lossy and bitdepth empty, I suggest the following (cosmetic) changes in mediainfo.tpl
Code:%BitDepth%
%SamplingRate%
%Channel(s)%
%Format%
%BitRate%
%Compression_Mode%
and in music-library.php
PHP Code:$compression = $result[5];
$encodedAt = 'UPnP ' . $format . ' ' . ($bitDepth == '?' ?
formatRate($sampleRate) . 'kHz' :
($bitDepth = $compression == 'Lossless' ? $bitDepth . '/' : '') . formatRate($sampleRate) . ' kHz, ' . $channels . 'ch');
Screenshot
I'll add the patch for upcoming 9.2.7