Hi, I used python and the "Pillow" imaging library for this. My little script to generate the MP3 is: #!/usr/bin/python from PIL import Image filename_out = "listen.mp3" im = Image.open ( "listen.png" ) #print im.format, im.size, im.mode im = im.convert('RGB') b = im.to...