Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.11.2
-
None
-
I'm using Qt5.11.2 on Ubuntu 16.04
-
-
4bcd9000baf27241c52931365c91a42c5ae2f83c (qt/qtmultimedia/5.12)
Description
I have the following QML that plays an audio file in an infinite loop.
import QtQuick 2.11 import QtQuick.Window 2.11 import QtMultimedia 5.8 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Audio { id: noiseId loops: Audio.Infinite source: "qrc:/448213__florianreichelt__white-noise.wav" onStatusChanged: console.log("status = " + status) onError: console.log("error = " + error + " " + errorString) onPlaybackStateChanged: console.log("playbackstate = " + playbackState) } Component.onCompleted: noiseId.play() }
I used the noise file from here
Unfortunately, after every loop, I hear a clear short hiccup.
Is this a bug? Is there a work-around?