when starting the video it appears at seconds 1 and 2 and returns to start, like a jump. Is there a way to avoid that jump?
Download your project
There is an example of a player on my site, maybe it will help you
ΠΠ°Π³ΡΡΠ·ΠΈΡΠ΅ ΠΠ°Ρ ΠΏΡΠΎΠ΅ΠΊΡ
ΠΠ° ΠΌΠ°Π΅ΠΌ ΡΠ°ΠΉΡΠ΅ Π΅ΡΡΡ ΠΏΡΠΈΠΌΠ΅Ρ ΠΏΡΠΎΠΈΠ³ΡΡΠ²Π°ΡΠ΅Π»Ρ, ΠΌΠΎΠΆΠ΅Ρ ΠΠ°ΠΌ ΡΡΠΎ ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ
https://pavlenkovv.ru/2022/04/14/Π»Π΅Π³ΠΊΠΈΠΉ-ΠΏΡΠΈΠΌΠ΅Ρ-ΠΌΠ΅Π΄ΠΈΠ°ΠΏΡΠΎΠΈΠ³ΡΡΠ²Π°ΡΠ΅Π»Ρ/
1 Like
Try the following steps:
- Select your video widget
- Open Code Editor
- Click Add new code button
- Paste the following code
Item {
Timer {
id: timer
interval: 50
running: true
repeat: true
triggeredOnStart: true
onTriggered: {
if (contentUi.objectName == "videoDelegate") {
contentUi.children[2].children[0].visible = false
timer.stop()
}
}
}
}
- Click Run button
1 Like