@
import Qt4.7
import QtMultimediaKit 1.1
Audio {
id: audio
source: “<url>”
}
PlayButton{
onClicked: { audio.play() }
}
ProgressBar{
progress: audio.position
maximumValue : audio.duration
}
@
this doesnt work, says : out of memory allocating blah blah blah bytes
how can i fix this up ?