how to import music from your computer

how do i attach my own music to my game from my computer?
please help
my game has a dead line of tomorrow and i’m not finished or quite sure how to do it.
i’ve tried changing the format.

Try using the WWW class. You can use it with the file:// protocol in order to read things from the hard drive. You can then use WWW.audioClip in order to get an audioClip from what you have read.

var audioImport : WWW = new WWW ("file://"+Application.dataPath+"/myMusic.ogg");//Start importing myMusic.ogg
yield audioImport;//wait until it's finished
audio.clip=audioImport.audioClip;//Do whatever you want with www.audioClip