1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Do not write anything to STDOUT/STDERR during encoding
autopkgtests can fail due to "normal" output appearing on STDERR
Author: Nick Morrott <nickm@debian.org>
Forwarded: not-needed
Last-Update: 2022-02-26
---
--- a/bin/gentestsdata.sh
+++ b/bin/gentestsdata.sh
@@ -7,9 +7,9 @@
# create
[ ! -e input.wav ] && cp ../input.wav .
-lame -m s -b 192 --noreplaygain input.wav "Foo Bar - Deaftracks - 01. Foo.mp3"
-oggenc input.wav -b 256 -o "Foo Bar - Deaftracks - 01. Foo.ogg"
-flac -f input.wav -o "Foo Bar - Deaftracks - 01. Foo.flac"
+lame --quiet -m s -b 192 --noreplaygain input.wav "Foo Bar - Deaftracks - 01. Foo.mp3"
+oggenc --quiet input.wav -b 256 -o "Foo Bar - Deaftracks - 01. Foo.ogg"
+flac --silent -f input.wav -o "Foo Bar - Deaftracks - 01. Foo.flac"
# multiply
for i in ogg flac mp3 ; do
|