/usr/share/snd/extensions.scm is in snd 17.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 | ;;; various generally useful Snd extensions
;;; mix then scale result to original peak amp
;;; mix with envelope
;;; map-sound-files, for-each-sound-file, match-sound-files, directory->list
;;; mix-channel, insert-channel
;;; redo-channel, undo-channel
;;; sine-ramp, sine-env-channel, blackman4-ramp, blackman4-env-channel
;;; ramp-squared, env-squared-channel
;;; ramp-expt, env-expt-channel
;;; offset-channel
;;; channels-equal
;;; mono->stereo, mono-files->stereo, stereo->mono
(provide 'snd-extensions.scm)
(define remove-if
(let ((documentation "(remove-if func lst) removes any element from 'lst' that 'func' likes"))
(lambda (pred lst)
(map (lambda (x) (if (pred x) (values) x)) lst))))
(if (not (defined? 'all-chans))
(define all-chans
(let ((documentation "(all-chans) -> two parallel lists, the first sound objects, the second channel numbers. If we have
two sounds open (indices 0 and 1 for example), and the second has two channels, (all-chans) returns '((#<sound 0> #<sound 1> #<sound 1>) (0 0 1))"))
(lambda ()
(let ((sndlist ())
(chnlist ()))
(for-each (lambda (snd)
(do ((i (- (channels snd) 1) (- i 1)))
((< i 0))
(set! sndlist (cons snd sndlist))
(set! chnlist (cons i chnlist))))
(sounds))
(list sndlist chnlist))))))
(define channel-sync
(dilambda
(let ((documentation "(channel-sync snd chn) returns the sync property of that channel (it is not actually used anywhere)"))
(lambda (snd chn)
(channel-property 'sync snd chn)))
(lambda (snd chn val)
(set! (channel-property 'sync snd chn) val))))
;;; -------- mix with result at original peak amp
(define normalized-mix
(let ((documentation "(normalized-mix filename beg in-chan snd chn) is like mix but the mix result has same peak amp as unmixed snd/chn (returns scaler)"))
(lambda* (filename beg in-chan snd chn)
(let ((original-maxamp (maxamp snd chn)))
(mix filename beg in-chan snd chn)
(let ((new-maxamp (maxamp snd chn)))
(if (= original-maxamp new-maxamp)
1.0
(let ((scaler (/ original-maxamp new-maxamp)))
(let-temporarily (((sync snd) (+ (sync-max) 1)))
(scale-by scaler snd chn))
scaler)))))))
;;;-------- mix with envelope on mixed-in file
(define enveloped-mix
(let ((documentation "(enveloped-mix filename beg e) mixes filename starting at beg with amplitude envelope e. (enveloped-mix \"pistol.snd\" 0 '(0 0 1 1 2 0))"))
(lambda (filename beg e)
(let* ((len (framples filename))
(amp-env (make-env e :length len))
(rd (make-readin filename)))
(map-channel
(lambda (y)
(+ y (* (env amp-env) (readin rd))))
beg len)))))
;;; -------- map-sound-files, match-sound-files
;;;
;;; apply a function to each sound in dir
;;;
;;; (map-sound-files (lambda (n) (if (> (mus-sound-duration n) 10.0) (snd-print n))))
(define map-sound-files
(let ((documentation "(map-sound-files func dir) applies func to each sound file in dir"))
(lambda* (func dir)
(map func (sound-files-in-directory (or dir "."))))))
(define for-each-sound-file
(let ((documentation "(for-each-sound-file func dir) applies func to each sound file in dir"))
(lambda* (func dir)
(for-each func (sound-files-in-directory (or dir "."))))))
#|
(for-each-sound-file
(lambda (n)
(catch #t
(lambda ()
(if (pair? (mus-sound-loop-info (string-append "/home/bil/sf/" n)))
(snd-print (format #f "~%~A" n))))
(lambda args #f)))
"/home/bil/sf")
|#
(define match-sound-files
(let ((documentation "(match-sound-files func dir) applies func to each sound file in dir and returns a list of files for which func does not return #f"))
(lambda* (func dir)
(let ((matches ()))
(for-each-sound-file (lambda (file)
(if (func file)
(set! matches (cons file matches))))
dir)
matches))))
;;; -------- mix-channel, insert-channel, c-channel
(define mix-channel
(let ((documentation "(mix-channel file beg dur snd chn edpos with-tag) mixes in file. file can be the file name, a sound object, or \
a list (file-name-or-sound-object [beg [channel]])."))
(lambda* (input-data (beg 0) dur snd (chn 0) edpos with-tag)
(let ((input (if (not (pair? input-data))
input-data
(car input-data)))
(input-beg (if (or (not (pair? input-data))
(< (length input-data) 2))
0
(cadr input-data)))
(input-channel (if (or (not (pair? input-data))
(< (length input-data) 3))
0
(caddr input-data))))
(let ((len (or dur (- (if (string? input)
(framples input)
(framples input input-channel))
input-beg)))
(start (or beg 0)))
(cond ((< start 0)
(error 'no-such-sample "mix-channel: begin time < 0: ~A" beg))
((<= len 0))
((not with-tag)
;; not a virtual mix
(let ((d1 (samples input-beg len input input-channel))
(d2 (samples start len snd chn edpos)))
(float-vector-add! d1 d2)
(float-vector->channel d1 start len snd chn
current-edit-position
(format #f (if (string? input-data)
"mix-channel ~S ~A ~A"
"mix-channel '~A ~A ~A")
input-data beg dur))))
;; a virtual mix -- use simplest method available
((sound? input) ; sound object case
(let ((input-snd input)
(input-chn input-channel)
(input-len len)
(output-snd snd)
(output-chn chn)
(output-beg start))
(if (< input-len 1000000)
(mix-float-vector (channel->float-vector input-beg input-len input-snd input-chn) output-beg output-snd output-chn #t)
(let* ((output-name (snd-tempnam))
(output (new-sound output-name :size input-len)))
(float-vector->channel (samples input-beg input-len input-snd input-chn) 0 input-len output 0)
(save-sound output)
(close-sound output)
(mix output-name output-beg 0 output-snd output-chn #t #t)))))
((and (= start 0) ; file input
(= len (framples input)))
(mix input start 0 snd chn #t #f)) ; mix entire file (don't delete it)
(else
;; mix part of file
(let* ((output-name (snd-tempnam))
(output (new-sound output-name :size len)))
(float-vector->channel (samples input-beg len input input-channel) 0 len output 0)
(save-sound output)
(close-sound output)
(mix output-name start 0 snd chn #t #t)))))))))
(define insert-channel
(let ((documentation "(insert-channel file beg dur snd chn edpos) inserts the file. file can be the file name or a list (file-name [beg [channel]])"))
(lambda* (file-data beg dur snd chn edpos)
(let ((file-name (if (string? file-data) file-data (car file-data)))
(file-beg (if (or (string? file-data)
(< (length file-data) 2))
0
(cadr file-data))))
(let ((file-channel (if (or (string? file-data)
(< (length file-data) 3))
0
(caddr file-data)))
(len (or dur (- (framples file-name) file-beg)))
(start (or beg 0)))
(if (< start 0) (error 'no-such-sample "insert-channel: begin time < 0: ~A" beg))
(if (> len 0)
(insert-samples start len
(samples file-beg len file-name file-channel)
snd chn edpos #f
(format #f (if (string? file-data)
"insert-channel ~S ~A ~A"
"insert-channel '~A ~A ~A")
file-data beg dur))))))))
;;; -------- redo-channel, undo-channel
(define redo-channel
(let ((documentation "(redo-channel (edits 1) snd chn) is the regularized version of redo"))
(lambda* ((edits 1) snd chn)
(if (and snd (not (= (sync snd) 0)) chn)
(set! (edit-position snd chn) (+ (edit-position snd chn) edits))
(redo edits snd)))))
(define undo-channel
(let ((documentation "(undo-channel (edits 1) snd chn) is the regularized version of undo"))
(lambda* ((edits 1) snd chn)
(if (and snd (not (= (sync snd) 0)) chn)
(set! (edit-position snd chn) (max 0 (- (edit-position snd chn) edits)))
(undo edits snd)))))
;;; -------- any-env-channel
(define any-env-channel
(let ((documentation "(any-env-channel e func (beg 0) dur snd chn edpos origin) takes breakpoints in 'e', \
connects them with 'func', and applies the result as an amplitude envelope to the given channel"))
(lambda* (e func (beg 0) dur snd chn edpos origin)
;; handled as a sequence of funcs and scales
(when (pair? e)
(let ((pts (/ (length e) 2)))
(if (= pts 1)
(scale-channel (car e) beg dur snd chn edpos)
(let ((x0 0)
(y0 0)
(x1 (car e))
(y1 (cadr e))
(xrange (- (e (- (length e) 2)) (car e)))
(ramp-beg beg)
(ramp-dur 0))
(if (not (number? dur)) (set! dur (framples snd chn)))
(as-one-edit
(lambda ()
(do ((i 1 (+ 1 i))
(j 2 (+ j 2)))
((= i pts))
(set! x0 x1)
(set! y0 y1)
(set! x1 (e j))
(set! y1 (e (+ 1 j)))
(set! ramp-dur (round (* dur (/ (- x1 x0) xrange))))
(if (= y0 y1)
(scale-channel y0 ramp-beg ramp-dur snd chn edpos)
(func y0 y1 ramp-beg ramp-dur snd chn edpos))
(set! ramp-beg (+ ramp-beg ramp-dur))))
origin))))))))
;;; -------- sine-ramp sine-env-channel
(define sine-ramp
(let ((documentation "(sine-ramp rmp0 rmp1 (beg 0) dur snd chn edpos) produces a sinsusoidal connection from rmp0 to rmp1"))
(lambda* (rmp0 rmp1 (beg 0) dur snd chn edpos)
(let ((len (if (number? dur) dur (- (framples snd chn) beg))))
(let ((data (samples beg len snd chn edpos))
(incr (/ pi len))
(scl (* 0.5 (- rmp1 rmp0))))
(do ((off (+ rmp0 scl))
(i 0 (+ i 1))
(angle (- pi) (+ angle incr)))
((= i len))
(float-vector-set! data i (* (float-vector-ref data i)
(+ off (* scl (cos angle))))))
(float-vector->channel data
beg len snd chn current-edit-position
(format #f "sine-ramp ~A ~A ~A ~A" rmp0 rmp1 beg dur)))))))
(define sine-env-channel
(let ((documentation "(sine-env-channel e (beg 0) dur snd chn edpos) connects e's dots with sinusoids"))
(lambda* (e (beg 0) dur snd chn edpos)
(any-env-channel e sine-ramp beg dur snd chn edpos (format #f "sine-env-channel '~A ~A ~A" e beg dur)))))
;;; (sine-env-channel '(0 0 1 1 2 -.5 3 1))
;;; an obvious extension of this idea is to use the blackman fft window formulas
;;; to get sharper sinusoids (i.e. use the sum of n cosines, rather than just 1)
;;; -------- blackman4-ramp, blackman4-env-channel
(define blackman4-ramp
(let ((documentation "(blackman4-ramp rmp0 rmp1 (beg 0) dur snd chn edpos) produces a blackman4-shaped envelope"))
(lambda* (rmp0 rmp1 (beg 0) dur snd chn edpos)
;; float-vector: angle incr off scl
(let ((len (if (number? dur) dur (- (framples snd chn) beg))))
(let ((incr (/ pi len))
(data (samples beg len snd chn edpos))
(coeffs (float-vector-scale! (float-vector 0.084037 -.29145 .375696 -.20762 .041194) (- rmp1 rmp0))))
(float-vector-set! coeffs 0 (+ (float-vector-ref coeffs 0) rmp0))
(do ((i 0 (+ i 1))
(angle 0.0 (+ angle incr)))
((= i len))
(float-vector-set! data i (* (float-vector-ref data i)
(polynomial coeffs (cos angle)))))
(float-vector->channel data beg len snd chn current-edit-position
(format #f "blackman4-ramp ~A ~A ~A ~A" rmp0 rmp1 beg dur)))))))
(define blackman4-env-channel
(let ((documentation "(blackman4-env-channel e (beg 0) dur snd chn edpos) uses the blackman4 window to connect the dots in 'e'"))
(lambda* (e (beg 0) dur snd chn edpos)
(any-env-channel e blackman4-ramp beg dur snd chn edpos (format #f "blackman4-env-channel '~A ~A ~A" e beg dur)))))
;;; -------- ramp-squared, env-squared-channel
(define ramp-squared
(let ((documentation "(ramp-squared rmp0 rmp1 (symmetric #t) (beg 0) dur snd chn edpos) connects rmp0 and rmp1 with an x^2 curve"))
(lambda* (rmp0 rmp1 (symmetric #t) (beg 0) dur snd chn edpos)
;; float-vector: start incr off scl
(let ((len (if (number? dur) dur (- (framples snd chn) beg))))
(let ((incr (/ 1.0 len))
(data (samples beg len snd chn edpos))
(scl (- rmp1 rmp0)))
(if (and symmetric
(< rmp1 rmp0))
(begin
(set! scl (- scl))
(do ((i 0 (+ i 1))
(angle 1.0 (- angle incr)))
((= i len))
(float-vector-set! data i (* (float-vector-ref data i)
(+ rmp1 (* scl angle angle))))))
(do ((i 0 (+ i 1))
(angle 0.0 (+ angle incr)))
((= i len))
(float-vector-set! data i (* (float-vector-ref data i)
(+ rmp0 (* scl angle angle))))))
(float-vector->channel data beg len snd chn current-edit-position
(format #f "ramp-squared ~A ~A ~A ~A ~A" rmp0 rmp1 symmetric beg dur)))))))
(define env-squared-channel
(let ((documentation "(env-squared-channel e (symmetric #t) (beg 0) dur snd chn edpos) connects e's dots with x^2 curves"))
(lambda* (e (symmetric #t) (beg 0) dur snd chn edpos)
(any-env-channel e
(lambda (r0 r1 b d s c e)
(ramp-squared r0 r1 symmetric b d s c e))
beg dur snd chn edpos
(format #f "env-squared-channel '~A ~A ~A ~A" e symmetric beg dur)))))
;;; (env-squared-channel '(0 0 1 1 2 -.5 3 1))
;;; -------- ramp-expt, env-expt-channel
(define ramp-expt
(let ((documentation "(ramp-expt rmp0 rmp1 exponent (symmetric #t) (beg 0) dur snd chn edpos) connects rmp0 and rmp1 with an x^exponent curve"))
(lambda* (rmp0 rmp1 exponent (symmetric #t) (beg 0) dur snd chn edpos)
;; float-vector: start incr off scl exponent
;; a^x = exp(x * log(a))
(let ((len (if (number? dur) dur (- (framples snd chn) beg))))
(let ((incr (/ 1.0 len))
(data (samples beg len snd chn edpos))
(scl (- rmp1 rmp0)))
(if (and symmetric
(< rmp1 rmp0))
(begin
(set! scl (- scl))
(do ((i 0 (+ i 1))
(angle 1.0 (- angle incr)))
((= i len))
(float-vector-set! data i (* (float-vector-ref data i)
(+ rmp1 (* scl (expt angle exponent)))))))
(do ((i 0 (+ i 1))
(angle 0.0 (+ angle incr)))
((= i len))
(float-vector-set! data i (* (float-vector-ref data i)
(+ rmp0 (* scl (expt angle exponent)))))))
(float-vector->channel data beg len snd chn current-edit-position
(format #f "ramp-expt ~A ~A ~A ~A ~A ~A" rmp0 rmp1 exponent symmetric beg dur)))))))
(define env-expt-channel
(let ((documentation "(env-expt-channel e exponent (symmetric #t) (beg 0) dur snd chn edpos) connects e's dots with x^exponent curves"))
(lambda* (e exponent (symmetric #t) (beg 0) dur snd chn edpos)
(if (= exponent 1.0)
(env-channel e beg dur snd chn edpos)
(any-env-channel e
(lambda (r0 r1 b d s c e)
(ramp-expt r0 r1 exponent symmetric b d s c e))
beg dur snd chn edpos
(format #f "env-expt-channel '~A ~A ~A ~A ~A" e exponent symmetric beg dur))))))
;;; -------- offset-channel
(define offset-channel
(let ((documentation "(offset-channel amount (beg 0) dur snd chn edpos) adds amount to each sample"))
(lambda* (dc (beg 0) dur snd chn edpos)
(let ((len (if (number? dur) dur (- (framples snd chn) beg))))
(float-vector->channel (float-vector-offset! (samples beg len snd chn edpos) dc)
beg len snd chn current-edit-position (format #f "offset-channel ~A ~A ~A" dc beg dur))))))
(define offset-sound
(let ((documentation "(offset-sound off beg dur snd) adds 'off' to every sample in 'snd'"))
(lambda* (off (beg 0) dur snd)
(let ((index (or snd (selected-sound) (car (sounds)))))
(if (sound? index)
(do ((out-chans (channels index))
(chn 0 (+ 1 chn)))
((= chn out-chans))
(offset-channel off beg dur index chn))
(error 'no-such-sound "offset-sound: no such sound: ~A" snd))))))
;;; -------- pad-sound
(define pad-sound
(let ((documentation "(pad-sound beg dur snd) places a block of 'dur' zeros in every channel of 'snd' starting at 'beg'"))
(lambda* (beg dur snd)
(let ((index (or snd (selected-sound) (car (sounds)))))
(if (sound? index)
(do ((out-chans (channels index))
(chn 0 (+ 1 chn)))
((= chn out-chans))
(pad-channel beg dur index chn))
(error 'no-such-sound "pad-sound: no such sound: ~A" snd))))))
;;; -------- dither-channel
(define dither-channel
(let ((documentation "(dither-channel (amount .00006) (beg 0) dur snd chn edpos) adds amount dither to each sample"))
(lambda* ((amount .00006) (beg 0) dur snd chn edpos)
(let ((len (if (number? dur) dur (- (framples snd chn) beg))))
(do ((dither (* .5 amount))
(data (samples beg len snd chn edpos))
(i 0 (+ i 1)))
((= i len)
(float-vector->channel data beg len snd chn current-edit-position
(format #f "dither-channel ~,8F ~A ~A" amount beg dur)))
(float-vector-set! data i (+ (float-vector-ref data i) (mus-random dither) (mus-random dither))))))))
(define dither-sound
(let ((documentation "(dither-sound (amount .00006) beg dur snd) adds dithering to every channel of 'snd'"))
(lambda* ((amount .00006) (beg 0) dur snd)
(let ((index (or snd (selected-sound) (car (sounds)))))
(if (sound? index)
(do ((out-chans (channels index))
(chn 0 (+ 1 chn)))
((= chn out-chans))
(dither-channel amount beg dur index chn))
(error 'no-such-sound "dither-sound: no such sound: ~A" snd))))))
;;; -------- contrast-channel
(define contrast-channel
(let ((documentation "(contrast-channel index (beg 0) dur snd chn edpos) applies contrast enhancement to the sound"))
(lambda* (index (beg 0) dur snd chn edpos)
(let ((len (if (number? dur) dur (- (framples snd chn) beg))))
(do ((data (samples beg len snd chn edpos))
(i 0 (+ i 1)))
((= i len)
(float-vector->channel data beg len snd chn current-edit-position
(format #f "contrast-channel ~A ~A ~A" index beg dur)))
(float-vector-set! data i (contrast-enhancement (float-vector-ref data i) index))))))) ; (sin (+ (* 0.5 pi y) (* index (sin (* 2.0 pi y))))))))
(define contrast-sound
(let ((documentation "(contrast-sound index beg dur snd) applies contrast-enhancement to every channel of 'snd'"))
(lambda* (index (beg 0) dur snd)
(let ((ind (or snd (selected-sound) (car (sounds)))))
(if (sound? ind)
(do ((out-chans (channels ind))
(chn 0 (+ 1 chn)))
((= chn out-chans))
(contrast-channel index beg dur ind chn))
(error 'no-such-sound "contrast-sound: no such sound: ~A" snd))))))
;;; -------- scale-sound
(define scale-sound
(let ((documentation "(scale-sound scl beg dur snd) multiplies every sample in 'snd' by 'scl'"))
(lambda* (scl (beg 0) dur snd)
;; the slow way:
;; (map-sound (lambda (fr) (frame* fr scl)) beg dur snd))
(let ((index (or snd (selected-sound) (car (sounds)))))
(if (sound? index)
(do ((out-chans (channels index))
(chn 0 (+ 1 chn)))
((= chn out-chans))
(scale-channel scl beg dur index chn))
(error 'no-such-sound "scale-sound: no such sound: ~A" snd))))))
;;; -------- normalize-sound
(define normalize-sound
(let ((documentation "(normalize-sound amp beg dur snd) scales 'snd' to peak amplitude 'amp'"))
(lambda* (amp (beg 0) dur snd)
(let ((index (or snd (selected-sound) (car (sounds)))))
(if (sound? index)
(let ((out-chans (channels index))
(mx (apply max (maxamp index #t))))
(do ((chn 0 (+ 1 chn)))
((= chn out-chans))
(scale-channel (/ amp mx) beg dur index chn)))
(error 'no-such-sound "normalize-sound: no such sound: ~A" snd))))))
;;; -------- channels-equal
(define channels=?
(let ((documentation "(channels=? s1 c1 s2 c2 (diff 0.0)) -> #t if the two channels are the same (within diff) modulo trailing 0's"))
(lambda* (snd1 (chn1 0) snd2 (chn2 0) (allowable-difference 0.0))
(or (and (equal? snd1 snd2)
(= chn1 chn2))
(let ((mx1 (maxamp snd1 chn1))
(mx2 (maxamp snd1 chn1)))
(and (<= (abs (- mx1 mx2)) allowable-difference)
(let* ((len1 (framples snd1 chn1))
(len2 (framples snd2 chn2))
(first-longer (>= len1 len2)))
(let ((len (if first-longer len1 len2))
(s1 (if first-longer snd1 snd2))
(s2 (if first-longer snd2 snd1))
(c1 (if first-longer chn1 chn2))
(c2 (if first-longer chn2 chn1)))
(let ((v0 (channel->float-vector 0 len s1 c1))
(v1 (channel->float-vector 0 len s2 c2)))
(<= (float-vector-peak (float-vector-subtract! v0 v1)) allowable-difference))))))))))
(define channels-equal?
(let ((documentation "(channels-equal? s1 c1 s2 c2 (diff 0.0)) -> #t if the two channels are the same (within diff)"))
(lambda* (snd1 chn1 snd2 chn2 (allowable-difference 0.0))
(and (= (framples snd1 chn1) (framples snd2 chn2))
(channels=? snd1 chn1 snd2 chn2 allowable-difference)))))
;;; -------- mono->stereo, mono-files->stereo
(define mono->stereo
(let ((documentation "(mono->stereo new-name snd1 chn1 snd2 chn2) takes the two channels and combines them into a stereo sound 'new-name'"))
(lambda (new-name snd1 chn1 snd2 chn2)
;; (mono->stereo "test.snd" 0 0 1 0)
(let ((old-ed1 (edit-position snd1 chn1))
(old-ed2 (edit-position snd2 chn2))
(ind (new-sound new-name :channels 2 :srate (srate snd1))))
(swap-channels ind 0 snd1 chn1)
(swap-channels ind 1 snd2 chn2)
(set! (edit-position snd1 chn1) old-ed1)
(set! (edit-position snd2 chn2) old-ed2)
ind))))
(define mono-files->stereo
(let ((documentation "(mono-files->stereo new-name file1 file2) combines two mono files into the stereo file 'new-name'"))
(lambda (new-name chan1-name chan2-name)
;; (mono-files->stereo "test.snd" "oboe.snd" "pistol.snd")
(let* ((ind1 (open-sound chan1-name))
(ind2 (open-sound chan2-name))
(ind3 (mono->stereo new-name ind1 0 ind2 0)))
(close-sound ind1)
(close-sound ind2)
ind3))))
(define stereo->mono
(let ((documentation "(stereo->mono stereo-sound new-chan1 new-chan2) splits a stereo sound into two mono sounds named 'new-chan1' and 'new-chan2'"))
(lambda (orig-snd chan1-name chan2-name)
;; (stereo->mono 0 "hi1.snd" "hi2.snd")
(let ((old-ed0 (edit-position orig-snd 0))
(old-ed1 (edit-position orig-snd 1))
(chan1 (new-sound chan1-name :srate (srate orig-snd)))
(chan2 (new-sound chan2-name :srate (srate orig-snd))))
(swap-channels orig-snd 0 chan1 0)
(swap-channels orig-snd 1 chan2 0)
(set! (edit-position orig-snd 0) old-ed0)
(set! (edit-position orig-snd 1) old-ed1)
(list chan1 chan2)))))
|