Making Music with Facebook audiocraft LLM
- Published on
- • 1 mins read•––– views
This will be a short post. Facebook/Meta has a music generation library where you provide a prompt, and it generates music for you. It isn't bad at all, and if I were a music producer, I would definitely use it to generate samples or inspirational pieces.
The code is simple to follow.
First, set the duration of the generated music:
model.set_generation_params(duration=60)
Next, enter your prompts. You can add multiple prompts, but the generated music will only play once all of them are finished. So, I recommend not adding too many at once.
res = model.generate([
'melodic techno with deep atmospheric pads and driving basslines',
'uplifting progressive house with emotional chord progressions and subtle arpeggios',
],
progress=True)
display_audio(res, 32000)
And that's it!
Here's my copy of the notebook:
Colab Notebook
Have fun! 🎶