Work-in-progress repo for ambisonics extensions for OM-SoX
Marlon Schumacher
5 days ago 6ae8ed47dd6caf4ff4df39f1195b87d02e2537f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
;*********************************************************************
; OM-SoX, (c) 2011-2013 Marlon Schumacher (CIRMMT/McGill University) *
;             http://sourceforge.net/projects/omsox/                 *
;                                                                    *
;  Multichannel Audio Manipulation and Functional Batch Processing.  *
;        DSP based on SoX - (c) C.Bagwell and Contributors           *
;                  http://sox.sourceforge.net/                       *
;*********************************************************************
;
;This program is free software; you can redistribute it and/or
;modify it under the terms of the GNU General Public License
;as published by the Free Software Foundation; either version 2
;of the License, or (at your option) any later version.
;
;See file LICENSE for further informations on licensing terms.
;
;This program is distributed in the hope that it will be useful,
;but WITHOUT ANY WARRANTY; without even the implied warranty of
;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;GNU General Public License for more details.
;
;You should have received a copy of the GNU General Public License
;along with this program; if not, write to the Free Software
;Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,10 USA.
;
;Authors: M. Schumacher
 
(in-package :om)
 
; ==== SOX-REMIX ========================
 
(defclass! sox-remix (sox-input)
           (
            (gain-matrix :accessor gain-matrix :initarg :gain-matrix :initform nil :documentation *sox-gain-matrix-doc*)
            (channel-matrix :accessor channel-matrix :initarg :channel-matrix :initform nil :documentation *sox-channel-matrix-doc*)
            )
           (:icon 19)
           (:documentation "Select and mix input audio channels into output audio channels. 
Each output channel is specified, in turn, by a given a list of contributing input channels and gain values.
 
NB: this input class represents a mixing-matrix which allows for arbitrary combinations of input and output channels; it should not be confused with sox-mix (where multiple audio inputs are mixed together.")
           )
 
; consider for the editor to have out-channels as rows, instead of columns (like in the description of mat-trans)
 
(defmethod initialize-instance :after ((self sox-remix) &rest args)
    (when (sound self)
      (if (consp (sound self))
          (om-beep-msg "sox-remix expects a single sound (not a list)") 
 
        (let* ((thesound (sound self))
               (thevolume (if (soundp thesound) (vol (sound self)) 100)))
          (unless (channel-matrix self) (setf (channel-matrix self) (list (arithm-ser 1 (sox-sound-channels thesound) 1)))) ;when there's no 
          (setf (gain-matrix self) (sox-gain-matcher (or (gain-matrix self) (list (sox-vol-convert thevolume))) (channel-matrix self)))
          (sox-init-sound self 'atom)
          )
        )
      ))