Python:midi 到音频流
我需要将 MIDI 数据转换/合成为音频流 PCM 数据。有什么简单的方法可以做到这一点?
I need convert/synthesize MIDI data to audio stream PCM data. What would be an easy way to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
选择你想要做什么,页面上有一个 MIDI 部分。
Take your pick on what you want to do, there is a MIDI section on the page.
我决定编写自己的代码(基于胆怯和子流程)。代码可以在这里看到:
https://github.com/albertz/learn-midi/blob/master /decode.py
我在这里下载了 MacOSX 版 Timidty 的预构建二进制文件:
http://www.merenbach.com/software/ports/timidity
我安装了Freepats 包来自这里:
http://freepats.zenvoid.org/
I decided to code my own (based on timidity and subprocess). The code can be seen here:
https://github.com/albertz/learn-midi/blob/master/decode.py
I downloaded a prebuild binary of Timidty for MacOSX here:
http://www.merenbach.com/software/ports/timidity
And I installed the Freepats package from here:
http://freepats.zenvoid.org/
你可以试试这个:
midi2audio
项目描述:
“轻松将 MIDI 合成为音频或直接播放。它为 FluidSynth 合成器提供了 Python 和命令行界面,使其易于使用并适合脚本和批处理,相比之下,大多数 MIDI 处理软件都是基于 GUI 的。”
You can try this:
midi2audio
Project description:
"Easily synthesize MIDI to audio or just play it. It provides a Python and command-line interface to the FluidSynth synthesizer to make it easy to use and suitable for scripting and batch processing. In contrast, most MIDI processing software is GUI-based."
使用 Jython 是一种选择吗?
我认为 javax.sound.midi 类可以处理这个问题。
Is using Jython an option ?
I think the javax.sound.midi classes would handle this.