I tried to implement SoundEffect from QtMobilityKit in QML to play music file in Meego Harmattan. I found that it can only play .wav file. is there any possible way to play .mp3 file in meego?
This one can play
SoundEffect{
id: sound
source : "/sound.wav"
}
and this one cannot
SoundEffect{
id: sound
source : "/sound.mp3"
}