Pixel Music
Posted: Tue Feb 16, 2016 2:33 am
I wrote a small Love2D application that generates sounds based on image data. You can check it out and see how it works. Feel free to edit it and improve it. If you do improve it, please post your edit here!
Challenge:
I dare someone to draw out Twinkle Twinkle Little Star. Best of Luck!
I forgot to apply the volume. To apply simply go into generateNotes.lua and under this line:
Simply add
So
WARNING:
I RECOMMEND NOT TO USE AN IMAGE LARGER THAN 100x by 100y! I takes a while for the application to process the image and create sound data based on the image data!
Challenge:
I dare someone to draw out Twinkle Twinkle Little Star. Best of Luck!
I forgot to apply the volume. To apply simply go into generateNotes.lua and under this line:
Code: Select all
local source = love.audio.newSource(soundData)
Code: Select all
source:setVolume(v/10)
Code: Select all
local source = love.audio.newSource(soundData)
source:setVolume(v/10)
WARNING:
I RECOMMEND NOT TO USE AN IMAGE LARGER THAN 100x by 100y! I takes a while for the application to process the image and create sound data based on the image data!