0

After doing split in an audio file with Librosa, I want to know how to obtain the resultant fragments in mp3 filesSee audio image

Endy Bermúdez R
  • 351
  • 1
  • 2
  • 8

1 Answers1

0

Can you just open individual files like

    fragment1 = open("x.mp3", "a")
    fragment2 = open("y.mp3", "a")

and then write to each of those using what you have as variables?

damaredayo
  • 1,048
  • 6
  • 19