c - Convert WAV to base64 -
i have wave files (.wav) , need convert them in base64 encoded strings. guide me how in python/c/c++ ?
python
the easiest way
from base64 import b64encode f=open("file.wav") enc=b64encode(f.read()) f.close()
now enc
contains encoded value.
you can use bit simplified version:
import base64 enc=base64.b64encode(open("file.wav").read())
c
see this file example of base64 encoding of file.
c++
here can see base64 conversion of strings. think wouldn't difficult same files.
Comments
Post a Comment