I'm making a video player using PySide which is a python bind to the Qt framework. I'm using phonon(a module) to display the video and I want to display text above the video as a subtitle. How can I put another widget above my phonon widget. Is opengl an option?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

If you just create your label and set the phonon widget as the parent, the label should appear over it.

QLabel *label = new QLabel(phononWidget);
label->setText("Text over video!");

(I realize this is C++ and you are working in Python but it should be similar)

Update: The above will not work for hardware accelerated video playback. An alternative that does work is to create a graphics scene and add the video widget or player to the scene and use a QGraphicsTextItem for the text. Setting the viewport to a QGLWidget will enable hardware acceleration:

QGraphicsScene *scene = new QGraphicsScene(this);

Phonon::VideoPlayer *v = new Phonon::VideoPlayer();
v->load(Phonon::MediaSource("video_file"));

QGraphicsProxyWidget *pvideoWidget = scene->addWidget(v);

QGraphicsView *view = new QGraphicsView(scene);
view->setViewport(new QGLWidget); //Enable hardware acceleration!

QGraphicsTextItem *label = new QGraphicsTextItem("Text Over Video!", pvideoWidget);
label->moveBy(100, 100);

v->play();
link|improve this answer
Also note that since the label won't be in a layout, you'll need to manage its positioning manually. – Kaleb Pederson Sep 12 '10 at 5:34
Ok I put self.label = QtGui.QLabel("Hello, this is the subtitle", self.videoWidget) But it appears like a black box – Forested Sep 12 '10 at 9:15
This works for most ordinary widgets. I suppose being a video widget, there may be some hardware acceleration or overlay stuff going on that makes things a little trickier. I haven't used the phonon stuff, I'll take a look at the docs and suggest something else if I find anything. – Arnold Spence Sep 12 '10 at 17:06
I've updated my answer with an option that works. I tried it here but you lose hardware acceleration :( – Arnold Spence Sep 12 '10 at 19:46
Do you think it'll be possible to do what you're saying but to use it with opengl to access the ardwareacceleration? – Forested Sep 13 '10 at 13:14
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.