]> gitweb.hhaalo.de Git - albentohandy.git/commitdiff
fix serial vorbis
authorBastian Dehn <hhaalo@arcor.de>
Sat, 12 Sep 2026 08:47:36 +0000 (10:47 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sat, 12 Sep 2026 08:47:36 +0000 (10:47 +0200)
libs/vorbis.sh

index 1cb73a4bc96731a7f7a57fcbe3be12f6ec1723cd..0f85b85d402c4ba87788cb0233dd499a43fcd42d 100644 (file)
@@ -41,7 +41,9 @@ encoding_flac_to_ogg()
        QUALITY=${QUALITY:="6"}
        nice --adjustment=10 flac --totally-silent --stdout --decode \
                "$input" \
-               | nice --adjustment=15 oggenc --quiet --quality "$QUALITY" \
+               | nice --adjustment=15 oggenc --quiet \
+               --serial 1 \
+               --quality "$QUALITY" \
                --output "$output" -
 }