phonon

Phonon on windows XP cant load DS backend which definitely exists

I am experiencing problems with phonon direct show backend on WinXP. Basically it doesn't work at all for me I've tried it with both 4.7.0 SDK and with version built from sources. In both cases phonon_ds94.dll is located in /plugins/phonon_backend/ dir. My system is WinXP and I use VS 2008. Here how I create video player: vp = new Pho...

WMV Playback using Phonon::VideoWidget and Flip4Mac fails in 32-bit builds

My application needs to run on Windows and Mac OS X and display various kinds of media files, such as videos and Adobe Flash content. After installing the Flip4Mac codec, I can play WMV video using Phonon on the Mac. In order to support Flash via the Flash plugin in a QWebView, I need to build a 32-bit binary. But when I do that, WMV pla...

Qt Phonon MediaObject conversion error

Hi, I want to play some WAV files, but I have error C2664 in Visual Studio: error C2664: 'Phonon::MediaObject::setCurrentSource' : conversion error from'const char [24]' to 'const Phonon::MediaSource &' This is the code: Phonon::MediaObject *media_object_; media_object_ = new Phonon::MediaObject(this); media_object_->setCurrentSour...

Phonon audible output fail

This is my code: media_object_ = new Phonon::MediaObject(this); fileName="./DemoEN2.wav"; media_object_->setCurrentSource(fileName); media_object_->play(); I have the includes: #include <Phonon/MediaObject> #include <Phonon/MediaSource> #include <phonon> And: Phonon::MediaObject *media_object_; QString fileName; When I run the ....

Phonon on Windows

Right now I have Phonon working on windows with a DS backend. However, it will not play certain mp3 files and although it appears to be playing m4a files (the song progress bar keeps moving) no sound comes out. The application is built using PyQt4 on Windows and is aimed at Windows users. I know that this is not the fault of my program...