Audio::MPD::Common::Status - class representing MPD status
print $status->bitrate;
The MPD server maintains some information on its current state. Those
information can be queried with mpd modules. Some of those information
are served to you as an Audio::MPD::Common::Status object.
Note that an Audio::MPD::Common::Status object does not update
itself regularly, and thus should be used immediately.
The new() method is the constructor for the Audio::MPD::Common::Status
class.
Note: one should never ever instantiate an Audio::MPD::Common::Status
object directly - use the mpd modules instead.
Once created, one can access to the following members of the object:
audio()
A string with the sample rate of the song currently playing, number of bits of the output and number of channels (2 for stereo) - separated by a colon.
bitrate()
The instantaneous bitrate in kbps.
error()
May appear in special error cases, such as when disabling output.
playlist()
The playlist version number, that changes every time the playlist is updated.
playlistlength()
The number of songs in the playlist.
random()
Whether the playlist is read randomly or not.
repeat()
Whether the song is repeated or not.
song()
The offset of the song currently played in the playlist.
songid()
The song id (MPD id) of the song currently played.
state()
The state of MPD server. Either play, stop or pause.
time()
An Audio::MPD::Common::Time object, representing the time elapsed /
remainging and total. See the associated pod for more details.
updating_db()
An integer, representing the current update job.
volume()
The current MPD volume - an integer between 0 and 100.
xfade()
The crossfade in seconds.
Please note that those accessors are read-only: changing a value will not change the current settings of MPD server. Use the mpd modules to alter the settings.
Jerome Quelin, <jquelin at cpan.org>
Copyright (c) 2007 Jerome Quelin, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.