It looks like Nokia Qt SDK does not provide QtMultimediaKit with the package which is a part of Qt Mobility API 1.0.2.
e.g. I cannot use QMediaPlayer to play *.mp4 file (Simbiot^3)
QMediaPlayer *player = new QMediaPlayer;
playlist = new QMediaPlaylist(player);
playlist->append(QUrl("http://example.com/myfile1.mp4"));
playlist->setCurrentPosition(1);
player->play();
Is anyone know how to configure the Nokia Qt SDK with QMediaPlayer?
Thank you.