Audio::MPD::Common::Stats - class representing MPD stats
print $stats->artists;
The MPD server maintains some general information. Those information can be
queried with the mpd modules. Some of those information are served to you as
an Audio::MPD::Common::Status object.
Note that an Audio::MPD::Common::Stats object does not update itself
regularly, and thus should be used immediately.
The new() method is the constructor for the Audio::MPD::Common::Stats
class.
Note: one should never ever instantiate an Audio::MPD::Common::Stats
object directly - use the mpd modules instead.
Once created, one can access to the following members of the object:
artists()
Number of artists in the music database.
albums()
Number of albums in the music database.
songs()
Number of songs in the music database.
uptime()
Daemon uptime (time since last startup) in seconds.
playtime()
Time length of music played.
db_playtime()
Sum of all song times in the music database.
db_update()
Last database update in UNIX time.
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.