vulpivia

joined 1 year ago
[–] [email protected] 1 points 4 months ago

Writing real-time audio processing code in Python won't be performant, though. And that's the part that matters for a DAW.

[–] [email protected] 1 points 4 months ago (2 children)

In this case we're talking about a soft real-time application where milliseconds matter. If you use Python for this, your developer speed will suffer because you're using most of your time to fight garbage collection pauses, among other things.

[–] [email protected] 1 points 4 months ago (4 children)

Yes. For a DAW, I would avoid languages with garbage collection.