tags:

views:

418

answers:

4

Qt/KDE's Phonon media framework abstraction implemented playback first. Can it do anything more complicated yet?

+1  A: 

As far as I know, Phonon is just a wrapper for the underlying media backend. Under Linux Phonon uses GStreamer by default but it seems they can be changed. So if the backend can capture or transcode, basically Phonon could do so, too. Maybe you would have to extend Phonon.

+3  A: 

There is no API's in Phonon for capture or transcoding yet. Effects and capture is on KDE's Phonon roadmap which can be viewed here;

http://phonon.kde.org/cms/1007

Henrik Hartz
+2  A: 

Phonon, in its current state, only supports playback. The Qt team would like to add capturing in the future though:

Phonon and its Qt backends, though fully functional for multimedia playback, are still under development. Functionality to come is the possibility to capture media and more processors for both music and video files.

Source

Wim Leers
+1  A: 

There is meant to be a new functionality in 4.6 called the QtMultimedia:

http://doc.trolltech.com/4.6-snapshot/qtmultimedia.html

Its not complete yet but you can see some progress.

Phil Hannent