Aluriak / MusicGenerator

Generation of music with the help of Matlab, Markov and Python
GNU General Public License v2.0
3 stars 1 forks source link

Idea for later #11

Open Nuopel opened 7 years ago

Nuopel commented 7 years ago

If you have idea but which would be interesting only in late stage of the project you can put them there

Nuopel commented 7 years ago

Split generation in init stage, middle stage, late stage. Something like soft, movement, soft. To reproduce a music which is more near of reality.

Aluriak commented 7 years ago

@Nuopel It's already possible (not with the current CLI, but with python code):

import itertools

gen_first = generator.bla_bla()
gen_secnd =  = generator.bla_bla()

music_player.midi(itertools.chain(gen_first, gen_secnd))

Will concatenate the output of two generators, eventually (1) with different method or time clustering or (2) with different learned input.

Nuopel commented 7 years ago

Ok cool!