Low Latency with QML Audio
-
wrote on 24 Dec 2017, 10:07 last edited by ibia
Hi. When I use the Audio type there is a few of seconds before the song begins. I want the song to begin automatically when I call the play() function. How can I achieve this goal without using the SoundEffect component ?
-
Hi,
What version of Qt ?
On what platform ?
Whith which compiler ?
What kind of audio file ?
Can you share the code you are using ? -
wrote on 26 Dec 2017, 10:21 last edited by ibia 1 Oct 2018, 13:37
Thank you @SGaist. I am using Qt 5.10 on Windows 8.1 ! And the code I am using is the minimal one for audios. The effect is the same for every mp3 file I use. The code is the following
Audio {
autoPlay: true source: "file.mp3"
}
1/3