Search found 6 matches

by bla
Sun Jul 17, 2016 8:55 am
Forum: Music made with SL
Topic: New video
Replies: 2
Views: 18389

Re: New video

Cool, dude! Thanks.
by bla
Sun Jul 17, 2016 8:50 am
Forum: Feature Requests
Topic: Auto naming saved files
Replies: 1
Views: 14502

Re: Auto naming saved files

Setting up liblo in C is pretty straightforward, they have example code on their website. void getFileNameTimestamp(char* buf, size_t bufsize) { struct tm* ltime; time_t now = time(NULL); ltime = gmtime(&now); strftime(buf, bufsize, "/mnt/bla/%Y-%m-%d-%H-%M-%S.wav", ltime); } getFileNa...
by bla
Sun Jul 17, 2016 8:28 am
Forum: Feature Requests
Topic: Volume adjustment for overdubs?
Replies: 0
Views: 12258

Volume adjustment for overdubs?

Being too lazy to dig through the source code, any major obstacles to implement this (re mix-down)? Right now using seperate loop instances for my footcontroller code.
by bla
Sun Jul 17, 2016 7:56 am
Forum: Bug Reports
Topic: OSC documentation pan
Replies: 1
Views: 13885

OSC documentation pan

should be pan_1, pan_2, etc. instead of pan1...
by bla
Mon Mar 21, 2016 3:28 am
Forum: OSC Interface
Topic: Local OSC Latency
Replies: 2
Views: 17664

Re: Local OSC Latency

Finally got round to take some measurements (tinyosc, liblo might be higher): around a third millisecond. So yes, probably doesn't matter much even when latency compensation doesn't apply (first start/restart of loops with content at the very beginning, as I understand it).
by bla
Mon Mar 14, 2016 9:27 pm
Forum: OSC Interface
Topic: Local OSC Latency
Replies: 2
Views: 17664

Local OSC Latency

Hi Jesse,

building a RPi looper and went to the trouble of looking into kernel modules to keep the gpio switch latency low. Would this be completely negated by system OSC latency and are there other feasible bindings (sysfs, mmap) without rewriting too much code? Great software dude.

P.