JulioHerrlein Posted June 11 Share Posted June 11 Dear All, I think there is a much needed basic function in Opusmodus: a function to perform diatonic transposition, like (pitch-transpose-to-set (1) '(c4 d4 e4) :set '(c4 major)) result: (d4 e4 f4) (pitch-transpose-to-set (2) '(c4 d4 e4) :set '(c4 major)) result: (e4 f4 g4) (pitch-transpose-to-set (1) '(c4 d4 e4) :set '(d4 major)) result: (cs4 e4 fs4) (pitch-transpose-to-set (2) '(c4 d4 e4) :set '(cs4 whole-tone) :round up) result: (cs4 ds4 f4) It could be also have the possibility of being octave independent in relation to the set, like (pitch-transpose-to-set (1) '(c2 d6 e5) :set '(c4 major) :octave-free t) result: (d2 e6 f5) Actually, the diatonic transposition (or transposition by any other set) is a more sophisticated thing than the simple transposition. And I think that is an essential function for music. I know that is possible to make it via tonality-map but I miss a more easier way to apply the idea over existing material. Best ! P.S. If this function already exist, please let me know. Quote Link to comment Share on other sites More sharing options...
PatrickMimran Posted June 18 Share Posted June 18 This would be very useful Quote Link to comment Share on other sites More sharing options...
opmo Posted June 18 Share Posted June 18 The tonality-map can do all this. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.