Qt for WebAssembly can play audio from url
Unsolved
Qt for WebAssembly
-
Hello,
I use Qt 6.8.0, with qml I use Multimedia to play audioMediaPlayer {
autoPlay: true
loops: MediaPlayer.Infinite
source: "*.mp3" // url from internet
audioOutput: AudioOutput {
volume: moduleController.infoController.musicVolume / 100
}
}It works perfect on desktop but not in WebAssembly
So are there any ways to play audio on WebAssembly or I must way for incoming versions of Qt (Current 6.8.0 is latest)