How to repeat video in Qt player
-
You can look at vidiowidget example in Qt installation under examples. It gives good idea for you.
-
You need to work with QMediaPlayer. You can use the play continuously. You can make this work in combination of Play and setPosition. VideoWidget is just display. Did you check the slider and play buttons ? This itself should help you make the repeat. Repeat is nothing but calling the play continuously. Hope this helps.
-
You can move this question to SOLVED state.
-
hi,
maybe you should start another thread. This helps in referencing the questions and answers when searching for a solution in a search engine.
By the way, maybe have a look at QTimer class : start the timer with method start(time) and make something in a slot when signal tiemout() is fired