In this iteration, we will code the features marked in the following screenshot:
This includes the play/stop, pause/unpause, next track, previous track, fast forward, rewind, volume change, and mute/unmute features.
In this iteration, we will code the features marked in the following screenshot:
This includes the play/stop, pause/unpause, next track, previous track, fast forward, rewind, volume change, and mute/unmute features.
Now that we have a playlist and a Player class that can play audio, playing audio is simply about updating the current track index and calling the play method.
Accordingly, let's add an attribute, as follows (see code 5.04—view.py):
current_track_index = 0
Furthermore, the Play button should act as a toggle between the play and stop functions. The Python itertools module provides the cycle method, which is a very convenient way...