What audio formats are supported by QMediaPlayer?

I am trying to figure out what QMediaPlayer supports in Qt, but cannot find a specific list of formats (MP3, AAC, FLAC, MIDI, etc.).

+4
source share
2 answers

QtMultimedia has several backends. For example, on Windows, QtMultimedia uses DirectShow and GStreamer for Linux. Thus, the list of supported formats depends on the backend and codecs available on the target system. See the list of QtMultimedia plugins and some backend information .

+5
source

You might want to take a look at QAudioDeviceInfo .

Take a look at the QAudioDeviceInfo class and its member function supportCodecs ().

+1
source

All Articles