Search found 1349 matches

by danieleghisi
Fri Sep 08, 2023 2:01 pm
Forum: ears
Topic: markers on mp3? region markers?
Replies: 2
Views: 34348

Re: markers on mp3? region markers?

Hello Julien. Markers are slippery, I have programmed most of it myself so I know from first hand that every type has a different way of handling them. It's a nightmare to try to make everything consistent in the interface. Region markers may not be supported, I'm not sure. If that's what ocenaudio ...
by danieleghisi
Fri Sep 08, 2023 10:33 am
Forum: bach: automated composer's helper
Topic: Suggestion for guitar tab hack
Replies: 4
Views: 38801

Re: Suggestion for guitar tab hack

Integer numbers are treated as ascii/Unicode numbers, so you'll have to use the corresponding ones. That doesn't solve the "12" issue. As for now, the best way would be to tweak the font to have 10, 11, 12 etc. natively. Not ideal, I know, but feasible with font forge or similar... Yes, the opaque b...
by danieleghisi
Wed Sep 06, 2023 2:36 pm
Forum: bach: automated composer's helper
Topic: Grouping by measures
Replies: 2
Views: 27502

Re: Grouping by measures

Off the top of my head: bach.beatbox in separate mode! It should work fine and help you out also with possible ties etc.
by danieleghisi
Fri Sep 01, 2023 8:08 pm
Forum: bach: automated composer's helper
Topic: Time limit exceeded | logarithms with bach.eval
Replies: 1
Views: 27253

Re: Time limit exceeded | logarithms with bach.eval

I think that the problem is in the line $logs_at_sample_index ; which does nothing, I guess, while you may probably want $logs_at_sample_index = null; Unless you do that, $logs_at_sample_index becomes very long, and thus I guess it takes time for bell to work on it? (this is something Andrea could s...
by danieleghisi
Sun Aug 20, 2023 10:31 pm
Forum: cage
Topic: LOOP in cage.granulate
Replies: 4
Views: 41651

Re: LOOP in cage.granulate

Hello, the first issue I see is that dump loop outputs the loop from the first outlet, so it's up to you to dispatch it to the last inlet of cage granulate. If you put a [bach.keys null loop @maxdepth 2 @out mn] after the first outlet, you'll be able to send the null outlet of bach.keys to the secon...
by danieleghisi
Sat Aug 19, 2023 7:59 pm
Forum: cage
Topic: LOOP in cage.granulate
Replies: 4
Views: 41651

Re: LOOP in cage.granulate

Hello, I'm not sure I understand the issue. Can you send me a minimal patch?
In any case there's no "loop" message for cage.granulate, but you should send the start/end of the loop in the last inlet (see help file, with [route list])

Best,
d
by danieleghisi
Sat Aug 19, 2023 7:57 pm
Forum: bach: automated composer's helper
Topic: Note durations when playing back from bach.score
Replies: 2
Views: 26208

Re: Note durations when playing back from bach.score

Hello, this looks like an issue with scheduling.
Are you sure you have Max's Overdrive on? If not, you cannot rely on accurate scheduling.
Can you please put your object in the best shape for realtime usage by sending a "realtime 1" message?
That should be the best bach can do...
by danieleghisi
Sat Aug 19, 2023 7:56 pm
Forum: bach: automated composer's helper
Topic: Suggestion for guitar tab hack
Replies: 4
Views: 38801

Re: Suggestion for guitar tab hack

Hey,

off the top of my head:
- use 6 lines
- put TAB by hand ;-)
- change the noteheads to custom noteheads (there's an example in the help center: #custom+noteheads)
- hide stems/beams

I won't bet too much money but I think that should work fine ;-)
by danieleghisi
Sat Aug 19, 2023 7:54 pm
Forum: bach: automated composer's helper
Topic: Extended Helmholtz-Ellis accidentals
Replies: 1
Views: 24322

Re: Extended Helmholtz-Ellis accidentals

Hi Federico,

it's something I'm working on. I think that one of the future development versions of bach will include support of just intonation but I cannot tell you when that'll happen...
by danieleghisi
Sat Aug 19, 2023 7:54 pm
Forum: bach: automated composer's helper
Topic: Sextuplet into triplet
Replies: 1
Views: 25242

Re: Sextuplet into triplet

Hi, in principle yes. That said, rhythmic trees are not easy to handle interactively. You should lock the rhythmic tree for the measure (so bach doesn't make any automatic change), then add/remove the relevant levels. Or, from the interface, select a quarter, split into 2, then split into 3. If you ...