Try these questions to test your knowledge from this chapter:
- Using QSoundEffect, you've written a utility for a call center that allows them to review recorded phone calls. They're moving to a new phone system that stores the audio calls as MP3 files. Do you need to make any changes to your utility?
- cool_songs is a Python list containing path strings to your favorite songs. What do you need to do to play these songs back in a random order?
- You have installed the audio/mpeg codec on your system, but the following code isn't working. Find out what's wrong with it:
recorder = qtmm.QAudioRecorder()
recorder.setCodec('audio/mpeg')
recorder.record()
- Run audio_test.py and video_test.py on several different Windows, macOS, and Linux systems. How is the output different? Are there any items supported across all systems?
- The properties...