strange behavior of seq
Posted: Mon Dec 03, 2012 12:57 pm
I took a sound of 2 min and made a fade in over 2 min for a better visual recognition.
Then i applied some code to test the seq command. (Please comment in or out the different seq lines)
what seems to work as I expected are the first 3 , (seq s05 s090) and (seq s05 s90pl).
The rest and perhaps some more ended up with some parts of the result as long as to the end of the original sound.
I can't understand that.
What's wrong with that?
Then i applied some code to test the seq command. (Please comment in or out the different seq lines)
Code: Select all
(setf s090 (multichan-expand #'extract-abs 0 90 s))
(setf s90pl (multichan-expand #'extract-abs 90 (get-duration 1) s))
(setf s05 (multichan-expand #'extract-abs 0 5 s))
; (seq my-unmodified-snd (at-abs 90 my-selection) s1)
(seq s090)
(seq s05)
(seq s90pl)
(seq s090 s05)
(seq s05 s090)
(seq s090 s05)
(seq s05 s90pl)
(seq s90pl s05)
The rest and perhaps some more ended up with some parts of the result as long as to the end of the original sound.
I can't understand that.
What's wrong with that?