$Date: 2005/10/22 13:22:42 $
$Revision: 1.19 $
-- Make playlist from a_path searching for file with
-- extensions in an_extension_list.
--
-- If you want to search files also in subfolders, set
-- do_recursive_search to True.
--
-- This player may initialize the audio subsystem for you.
-- Use do_initialize_subsystem to have it enabled by this player.
-- Make playlist from a_list.
--
-- This player may initialize the audio subsystem for you.
-- Use do_initialize_subsystem to have it enabled by this player.
-- Make playlist with a_filename.
--
-- This player may initialize the audio subsystem for you.
-- Use do_initialize_subsystem to have it enabled by this player.
-- Make with an empty playlist.
--
-- This player may initialize the audio subsystem for you.
-- Use do_initialize_subsystem to have it enabled by this player.
-- Did this player initialize the audio subsystem?
-- Is this player in paused mode?
-- Is this Player playing a file?
-- Actually playing music
-- Note: File may already be deallocated!
-- Playlist of this music player
-- Does playlist repeats playback?
-- Does playlist plays shuffled?
-- Returns current volume.
-- Disable audio subsystem if initialized before.
-- (From DISPOSABLE)
-- Event is fired when music finishes playing.
-- Go to previous playlist entry and play it.
-- Go to next playlist entry and play it.
-- Pause playback.
-- Play current playlist entry.
-- Play track at position an_index in playlist.
-- Resume playback.
Implements a simple music player.
This player can play either WAVE, MOD, MIDI, OGG or MP3.
Use this player if you don't want to handle all sound stuff
by your own. This player let's you play music files in a very
very easy way.
This class was designed for having music support in a hurry.
We recommend to use it whenever you need just to play music.
Note: You need to have special compiled version of SDL_mixer
to be able to play MP3-files. Please check documentation
for further details.