0

I have a string of binary. I need to convert this to a wav file. Is there any existing library to achieve that goal? If so how would I write the bytes to an audio file in preferably Java or Python, but any language works.

loadedjd
  • 97
  • 2
  • 6

1 Answers1

1

See the documentation for Wave_write Objects included with Python's standard library. You will need to open a WAV file first in 'wb' (write only) mode, and then use the appropriate methods:

Noctis Skytower
  • 21,433
  • 16
  • 79
  • 117