Thanks for the quick reply! Installing the dependencies via homebrew fixed
my issue, and fluidsynth can now do the conversion for me locally!
However, I'm facing another issue now, which probably comes from the fact
that I compiled the code on my mac, and I'm trying to run it on AWS lambda
(which I
Hi Justin,
you probably compiled Fluidsynth without libsndfile support, so the
resulting audio is a raw 16-bit signed dual-channel float audio file (so
not a .wav file with proper headers). You can either convert this raw file
to wav using some tool, or install libsndfile-dev (or whatever it's cal
Hello, I'm trying to compile a fluidsynth binary. For my application, I
need a way to convert from midi to mp3 on an AWS lambda, and I thought that
using fluidsynth would be the best way. These are the steps I took:
1. Clone fluidsynth from here: https://github.com/FluidSynth/fluidsynth
2.