ncassetta / NiCMidi

A MIDI C++ library with objects for reading, writing, playing, editing and recording midi files
GNU Lesser General Public License v3.0
2 stars 1 forks source link

Compilation error when using test_recorder example #2

Closed goofy2k closed 2 years ago

goofy2k commented 2 years ago

../include/recorder.h:32:10: fatal error: process.h: No such file or directory #include "process.h"

Line 32 in recorder.h should be: #include "processor.h" ?

goofy2k commented 2 years ago

I thought of the following, kind of hybrid, approach to record and play while looping. It may be compatible with your current approach, where do final insertion after stopping the sequencer.

What if you record in a new track, as you do now and start with an additional new track every time that a new cycle starts. After stopping the recording session, the N recorded tracks can be merged with the main track(s) as now.