Displaying 4 results from an estimated 4 matches for "replaygain_freq".
2012 Feb 26
3
PATCH: Add test for metaflac --add-replay-gain
.../= 256;
+??????????????????? }
+??????????????????? while (bx--) {
+??????????????????????????? printf("%c", byte[bx]);
+??????????????????? }
+??????????? }
+
+??? }' /dev/null |
+??? flac --silent \
+??????? --endian=big --channels=1 --bps=24 --sample-rate=$1 --sign=unsigned -
+}
+
+REPLAYGAIN_FREQ=
+REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ? 8000/-12.73"
+REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 11025/-12.93"
+REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 11025/-12.93"
+REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 12000/-12.98"
+REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 16000/-13.27"
+RE...
2013 Apr 25
0
[PATCH] Add set -x to stop test_metaflac.sh
...t exits with a non-zero exit code
when die is called in a pipe.
---
test/test_metaflac.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/test/test_metaflac.sh b/test/test_metaflac.sh
index 9a13291..2ea2251 100755
--- a/test/test_metaflac.sh
+++ b/test/test_metaflac.sh
@@ -452,6 +452,8 @@ REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 37800/-14.18"
REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 44100/-14.17"
REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 48000/-14.16:1:2:4"
+set -x
+
for ACTION in $REPLAYGAIN_FREQ ; do
if [ -n "${ACTION##*:*}" ] ; then
HARMONICS=1
--
1.7.10.4
-----...
2014 Jun 27
0
[PATCH 2] remove unnecessary code
There are
* two REPLAYGAIN_FREQ="$REPLAYGAIN_FREQ 11025/-12.93" lines,
* two #include "share/compat.h" lines, and
* unnecessary #undef FLAC__STRCASECMP (it should be removed there:
http://git.xiph.org/?p=flac.git;a=commitdiff;h=4bc1220b32d067e3ed7aa6f08b2ef4e568f3dbab
-------------- next part --------------
A...
2014 Nov 30
4
awk vs. mawk
...ent --no-error-on-compression-fail --force-raw-format \
- --endian=big --channels=1 --bps=24 --sample-rate=$1 --sign=unsigned -
+ }' \
+ | flac${EXE} --silent --no-error-on-compression-fail --force-raw-format\
+ --endian=little --channels=1 --bps=24 --sample-rate=$1 --sign=signed -
}
REPLAYGAIN_FREQ=
@@ -168,6 +153,7 @@ for ACTION in $REPLAYGAIN_FREQ ; do
RATE=$(($MULTIPLE * FREQ))
[ $MULTIPLE -eq 1 -o -n "${REPLAYGAIN_FREQ##* $RATE/*}" ] || break
echo -n "Testing FLAC replaygain $RATE ($FREQ x $MULTIPLE) ... "
+ flacfile=$AWK.$RATE.replaygain.flac
to...