File: disable-output-during-encoding

package info (click to toggle)
arename 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,112 kB
  • sloc: perl: 640; sh: 585; makefile: 147
file content (21 lines) | stat: -rw-r--r-- 822 bytes parent folder | download
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