From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 208.118.235.0/24 X-Spam-Status: No, score=-2.4 required=3.0 tests=AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 49C7863381F for ; Mon, 29 Dec 2014 04:26:22 +0000 (UTC) Received: from localhost ([::1]:60142 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y5RuP-0002Lr-Ju for dtas-all@80x24.org; Sun, 28 Dec 2014 23:26:21 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34927) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y5RuL-0002KJ-NC for dtas-all@nongnu.org; Sun, 28 Dec 2014 23:26:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y5RuF-0007ep-HG for dtas-all@nongnu.org; Sun, 28 Dec 2014 23:26:17 -0500 Received: from dcvr.yhbt.net ([64.71.152.64]:60652) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y5RuF-0007ek-CB for dtas-all@nongnu.org; Sun, 28 Dec 2014 23:26:11 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 324A063381A for ; Mon, 29 Dec 2014 04:26:10 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] examples/splitfx.sample.yml: use more common effect Date: Mon, 29 Dec 2014 04:26:07 +0000 Message-Id: <1419827169-20555-2-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.2.1.202.g55b961f X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.71.152.64 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Sender: dtas-all-bounces+dtas-all=80x24.org@nongnu.org The "-l" and "-r" switches used by the sox ladspa effect (for latency compensation and replicate, respectively) are not available until sox v14.4.2, so avoid using it since it can fail tests on common systems today. --- examples/splitfx.sample.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/splitfx.sample.yml b/examples/splitfx.sample.yml index c1b5872..5d32a6c 100644 --- a/examples/splitfx.sample.yml +++ b/examples/splitfx.sample.yml @@ -18,7 +18,7 @@ env: # these effects may be used in any command in this file, including targets FX: highpass -1 120 highpass 40 highpass 40 - ladspa -lr tap_limiter -10 9.5 + vol +1.5dB stats track_start: 1 # 0 for pregap/intro tracks cdda_align: true -- EW