-
-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autoclip #1228
Comments
Do the piano samples need to be that long? It might just be enough to trim all the 'default' samples.. |
they could be trimmed i guess.. generally, most sample banks have very long tails, so this will be a problem for other samples too. |
example usage: autoclip(0) // automatically clips all samples to hap length
autoclip(1) // automatically clips all samples >=1 s to hap length
autoclip(Infinity) // samples are never clipped automatically
$: s("sax") |
Looking at the piano samples some are over 24 seconds. That seems really long to me but I have not spent much time with pro sample packs.. |
drum loops would work, as they are looped, and the hap length is equal to the sample length, or what do you have in mind? |
what i mean with "sonic use", i mean the difference between: note("c a f e").s("piano")
// and
note("c a f e").s("piano").clip(1).rel(4) is marginal.. in the first case, you'd get 24s samples, in the second you'd get 5s samples. the idea is that if you want to have cpu costly behavior, you have to opt in instead of opt out, because people will either don't know about it or forget it |
one drawback is that things will sound a bit worse with the default settings, as you won't get the floatyness of layered samples by default. but that is already the case with synths anyway.. |
this would prevent a good chunk of crashes / glitches
The text was updated successfully, but these errors were encountered: