我想要什么 - 将 MIDI 文件转换为云上带有 soundfont 的音频文件。
我可以在我的双启动 Linux 笔记本电脑 MacBook 上执行此操作,但我想在云上执行此操作,特别是 GCP。
仅此一项不起作用:
sudo apt-get update
sudo apt get upgrade -y
sudo apt-get install fluidsynth
运行fluidsynth
会给出错误,例如
fluidsynth: error: Failed to connect to Jack server.
Failed to create the audio driver
我试图 apt-get 安装缺少的包,比如 jackd2,它只是给出了另一组错误。
有没有人尝试过在云端合成音乐?帮助表示赞赏。
我们实际上可以在您仅运行时忽略错误
fluidsynth
这有效:
fluidsynth -F ./test.wav GeneralUserGSv1.471.sf2 test.mid
我仍然遇到此错误消息:
fluidsynth: warning: Failed to pin the sample data to RAM; swapping is possible.
我的用例的具体说明在我的repo中。