sampler-parse-filename   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/external/instruments_ext-scm.xtm

Implementation

;; the "default" one, will try a few common naming conventions, and bail out
;; otherwise
(define sampler-parse-filename
  (lambda (filename)
    (or (sampler-parse-midinote-filename filename)
        (sampler-parse-spn-filename filename)
        #f)))


Back to Index