From: Bastian Dehn Date: Sat, 26 Sep 2026 10:46:30 +0000 (+0200) Subject: fix errlog mp3 X-Git-Tag: v1.0.0^2~1^2~7 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=fab0e207fbbc240b0e92b9f19c663e97eb2ba37b;p=albentohandy.git fix errlog mp3 --- diff --git a/src/lib/mp3.sh b/src/lib/mp3.sh index 05a709a..5baa084 100644 --- a/src/lib/mp3.sh +++ b/src/lib/mp3.sh @@ -1,6 +1,6 @@ #!/bin/bash -vorbis_errlog() +mp3_errlog() { local lastexit=$? local msg="$1" @@ -12,16 +12,16 @@ vorbis_errlog() mp3_check_programs() { command -v flac > /dev/null \ - || vorbis_errlog "command flac not found" \ + || mp3_errlog "command flac not found" \ || return $? command -v lame > /dev/null \ - || vorbis_errlog "command lame not found" \ + || mp3_errlog "command lame not found" \ || return $? command -v eyeD3 > /dev/null \ - || vorbis_errlog "command eyeD3 not found" \ + || mp3_errlog "command eyeD3 not found" \ || return $? command -v parallel > /dev/null \ - || vorbis_errlog "command parallel not found" \ + || mp3_errlog "command parallel not found" \ || return $? }