PDA

View Full Version : phonon does't work fine in debian/kubuntu/ubuntu



skhaz
3rd October 2008, 21:00
Hi,
I have a application that a video playing and some text's scrolling in
bottom, in windows and fedora works fine...
but on gnu/linux debian/kubuntu/ubuntu the video can't resize

part of code

mediaObject = new MediaObject(this);
videoWidget = new VideoWidget(this);
createPath(mediaObject, videoWidget);

connect(mediaObject, SIGNAL(hasVideoChanged(bool)), videoWidget,
SLOT(setVisible(bool)));

videoWidget->resize(desktopWidth, desktopHeight-70);
videoWidget->hide();
videoWidget->move(0, 0);
videoWidget->setAspectRatio(VideoWidget::AspectRatioWidget);

well... I know that this is not bug of the QT.
can anyone help me?

rbp
9th February 2009, 05:24
Did you compile Qt and Phonon from source on Ubuntu? I found the Phonon in the Ubuntu repository broken.

Lykurg
9th February 2009, 13:01
Hi,

on my Kubuntu I have to switch the phonon backend from xine to gstreamer that my application works fine.

Lykurg