Compare commits

..

1 Commits

Author SHA1 Message Date
Vincent Riquer
537c205577 quickfix: Opus: remove " kbit/s*" from bitrate 2025-02-10 01:35:02 +01:00

View File

@ -28,6 +28,6 @@ getInfos::Opus() {
rate=${rate% Hz}
channels=$(gettag channels|head -n1)
bitrate=$(gettag 'average bitrate')
bitrate=${bitrate% kbit/s*}
bitrate=${bitrate%% kbit*}
bitrate=${bitrate%%.*}
}