$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.
-- Has the subsystem been initialized by the player?
-- Is file with an_index playing?
-- Playlist of the player.
-- Volume of player
-- Disable audio subsystem if initialized before.
-- (From DISPOSABLE)
-- Play file at location a_filename for a_loop_count times.
-- Play item at position an_index in playlist for a_loop_count times.
-- Stop all playing sound files.
-- Stop playing file at location a_filename.
Implements a simple sound player.
This player can play either WAVE, AIFF, RIFF, OGG or VOC.
Use this player if you don't want to handle all sound stuff
by your own. This player let's you play sound files in a very
very easy way.
This class was designed for having sound support in a hurry.
We recommend to use it whenever you need just to play sound.