Hi, I want to show a video with QGraphicsView and QGraphicsItem.

I need to show every 40 ms a QImage. I use a QTimeLine and a QGraphicsItem.

The problem is that when I call the update() on the QTimeLine slot, there is a lot of time ( about 10 ms ) between the update() call and the paint event of the item.

I know that there isn't an equivalent repaint() for the QGraphicsItem, but anyone know a way to reduce this time ??

Thanks