From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS6130 216.105.38.0/24 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.sourceforge.net (lists.sourceforge.net [216.105.38.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 5935E1F453 for ; Wed, 13 Feb 2019 08:24:58 +0000 (UTC) Received: from [127.0.0.1] (helo=sfs-ml-1.v29.lw.sourceforge.com) by sfs-ml-1.v29.lw.sourceforge.com with esmtp (Exim 4.90_1) (envelope-from ) id 1gtpqe-0002Kg-HO; Wed, 13 Feb 2019 08:24:52 +0000 Received: from [172.30.20.202] (helo=mx.sourceforge.net) by sfs-ml-1.v29.lw.sourceforge.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90_1) (envelope-from ) id 1gtpqd-0002Jc-Du for sox-users@lists.sourceforge.net; Wed, 13 Feb 2019 08:24:51 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sourceforge.net; s=x; h=In-Reply-To:Content-Type:MIME-Version:References: Message-ID:Subject:To:From:Date:Sender:Reply-To:Cc:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=jO5rYmwDDuDSn4YMYY33at8hYhE/q42a4fZo2Gj5kJQ=; b=lkABqbe2bJg/dKrKABLXANdVDV de548a2esMeFdZ5Q3bb4L/aR8fyLoC/TGpf+FmGBy9yPMGtkeJfyPx92Ce9G3S+wGxWAT5IMydhhR dEsdtUmGMxmyj0NjiS4tj0G0FM3+MxhVapsd0si/jwtaLYR8HeChL59LxbeZq+0vG7pk=; DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sf.net; s=x ; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID:Subject:To: From:Date:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=jO5rYmwDDuDSn4YMYY33at8hYhE/q42a4fZo2Gj5kJQ=; b=H8QuAth+yAvk6oHaBZZ04VynRs qFEQLeDyroLQ9v085HhvHZ/ukJHTRPxyf2f7GrJAvLn9UGk2Z5OeUIMGH+OBzlWlz3FYInKoLwQMa L0dTcLtkc5sdfsh0f8kNH2vcVO3Xe5ajTfTmgmENmekheFjvpPSoadg2KQx9b572ClLA=; Received: from dcvr.yhbt.net ([64.71.152.64]) by sfi-mx-4.v28.lw.sourceforge.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90_1) id 1gtpqb-004KcE-Qw for sox-users@lists.sourceforge.net; Wed, 13 Feb 2019 08:24:51 +0000 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id BBFE61F453; Wed, 13 Feb 2019 08:08:02 +0000 (UTC) Date: Wed, 13 Feb 2019 08:08:02 +0000 From: Eric Wong To: sox-users@lists.sourceforge.net Message-ID: <20190213080802.uzjvb2zouxjzdtda@dcvr> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-Headers-End: 1gtpqb-004KcE-Qw Subject: Re: Dynamically modify sox effects? X-BeenThere: sox-users@lists.sourceforge.net X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: sox-users@lists.sourceforge.net Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: sox-users-bounces@lists.sourceforge.net Robi Pires wrote: > Hello, is there a way I can dynamically modify sox effects while sox is > running? I want to have a way to add effects to my voice (pitch > modulation/reverb/etc.) and pipe that to OBS and Mumble. Is there another > application that does this? Not natively in sox. I use separate processes for decoding/effects/playback and manage the command pipelines and sox processes. I wrote/use dtas (duct-tape audio suite) to do pipes and process management: git clone https://80x24.org/dtas.git Specifically dtas-player; which allows YAML files pointing to ruby (or shell) scripts which can be edited and auto-reloaded via inotify (see examples/splitfx.sample.yml ). You may also use dtas-sourceedit or dtas-sinkedit to edit the commands used for sources/sinks independently (which affects all files you play). I made the splitfx YAML stuff later to have per-file effects. Some basic docs are in the Documentation/ directory; but it's been a while since I updated it... I use dtas every single day for the past few years for general music listening :) _______________________________________________ Sox-users mailing list Sox-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/sox-users