2 Attachment(s)
phonon does't work fine in debian/kubuntu/ubuntu
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
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?
Re: phonon does't work fine in debian/kubuntu/ubuntu
Did you compile Qt and Phonon from source on Ubuntu? I found the Phonon in the Ubuntu repository broken.
Re: phonon does't work fine in debian/kubuntu/ubuntu
Hi,
on my Kubuntu I have to switch the phonon backend from xine to gstreamer that my application works fine.
Lykurg