hi,

I'm working on an application that needs to read video files or webcams and then processes the individual video frames. I want to use phonon, because accessing the videos is so simple. But I don't see a way who I can get the imagedata of individual frames.
My algorithems work on QImages, so I need to convert the video frames to QImages.

I tried to use QPixmap::grabWidget(videoWidget) and then transform the QPixmap into a QImage, but I get a lot of graphic errors.

Is there a nicer way to get video frames from Phonon? Phonon seem to be a really abstract API.