4
votes

I'm trying to figure out what is supported by QMediaPlayer in Qt but cannot find a specific list of formats (MP3, AAC, FLAC, MIDI etc.).

2

2 Answers

5
votes

There are several backends available in QtMultimedia. For example, on Windows QtMultimedia uses DirectShow, and GStreamer on Linux. So, list of supported formats depends on backend and codecs available on the target system. See, the list of QtMultimedia plugins and some info about backends.

1
votes

You might want to take a look at QAudioDeviceInfo.

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