Work-in-progress repo for ambisonics extensions for OM-SoX
Marlon Schumacher
5 days ago 4020656850c3f64875a927ae9687127c163d9099
commit | author | age
92c40d 1 ; ********************************************************************
AN 2 ; OM-SoX, (c) 2011-2013 Marlon Schumacher (CIRMMT/McGill University) *
3 ;           http://sourceforge.net/projects/omsox/                   *
4 ;                                                                    *
5 ;  Multichannel Audio Manipulation and Functional Batch Processing.  *
6 ;       DSP based on SoX - (c) C.Bagwell and Contributors            *
7 ;               http://sox.sourceforge.net/                          *
8 ; ********************************************************************
9 ;
10 ;This program is free software; you can redistribute it and/or
11 ;modify it under the terms of the GNU General Public License
12 ;as published by the Free Software Foundation; either version 2
13 ;of the License, or (at your option) any later version.
14 ;
15 ;See file LICENSE for further informations on licensing terms.
16 ;
17 ;This program is distributed in the hope that it will be useful,
18 ;but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;GNU General Public License for more details.
21 ;
22 ;You should have received a copy of the GNU General Public License
23 ;along with this program; if not, write to the Free Software
24 ;Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,10 USA.
25 ;
26 ;Authors: M. Schumacher
27
28 (in-package :om)
29
30 ;;; sox-ladspa ===============================
31
32 (defmethod! sox-ladspa ((module pathname) (plugin string) (parameters t) &key sox-append)
33   :icon 24
34   :initvals '(nil nil nil)
35   :indoc (list "Full path to LADSPA module" "Name of plugin (a module can contain more than one plugin)" "List of parameter values for plugin (missing arguments are supplied by default values if possible)" 
36                *sox-append-doc*)
37   :doc "Apply a LADSPA (Linux Audio Developer's Simple Plugin API) plugin. 
38
39 NB: Currently only monaural plugins (with one audio input and one audio output port) can be used."
40
41   (let* (
42          (thestring (format nil "ladspa '~d' ~d" module plugin)))
43     (when parameters
44       (loop for val in (list! parameters) do
45             (setf thestring (concatenate 'string thestring 
46                                    (format nil " ~a" val)))))
47     (sox-concat sox-append thestring))
48     )
49
50 ;==================================================
51 ;For now VST plugins don't work until sox supports the ladspa-based vst-wrapper