In this chapter, we will be using the multimedia module again, which we covered previously in Chapter 9, The Camera Module. However, this time we will be using some other parts of the module, so I thought it would be a good idea to dissect the module and see what's inside it.
Revisiting the multimedia module
Dissecting the module
The multimedia module is a really large module that consists of many different parts, that provide very different features and functionality. The main categories are as follows:
- Audio
- Video
- Camera
- Radio
Do note that classes that handle image formats, such as QImage, QPixmap, and so on, are not a part of the multimedia module but rather the GUI module. This is because they are an important part...