]> gitweb.hhaalo.de Git - albentohandy.git/commitdiff
fix errlog mp3
authorBastian Dehn <hhaalo@arcor.de>
Sat, 26 Sep 2026 10:46:30 +0000 (12:46 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sat, 26 Sep 2026 10:46:30 +0000 (12:46 +0200)
src/lib/mp3.sh

index 05a709a17e648d6d2f91ffdb92ab779bc964b79b..5baa0848b9f6a908cc1a2d984e87585f0f77fe85 100644 (file)
@@ -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 $?
 }