从 Python 编写 LMMS 脚本
最近,我询问有关使用 Python 编写 FruityLoops 或 Reason 脚本的问题,并没有出现太多。
今天我发现了 LMMS,一个免费软件 FruityLoops 的克隆。 所以,同样的。 有没有人尝试过用Python(或类似的)编写这个脚本? 是否有 API 或包装器用于从外部访问其资源?
如果没有,尝试编写一个的正确方法是什么?
Recently I asked about scripting FruityLoops or Reason from Python, which didn't turn up much.
Today I found LMMS, a free-software FruityLoops clone. So, similarly. Has anyone tried scripting this from Python (or similar)? Is there an API or wrapper for accessing its resources from outside?
If not, what would be the right approach to try writing one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来你可以使用 C++ 为 LMMS 编写插件。 通过在 C++ 插件中嵌入 Python,您可以有效地编写程序脚本在Python中。
It seems you can write plugins for LMMS using C++. By embedding Python in the C++ plugin you can effectively script the program in Python.
您可以将 LMMS 中的几乎所有内容连接到 MIDI 输入。 试试那个?
You can connect pretty much everything in LMMS to a MIDI input. Try that?