|
musicmpdscrobblemusicmpdscrobble - Perl script to submit tracks to Last.FM from mpdSYNOPSISmusicmpdscrobble --monitor --logfile=STDERR This runs musicmpdscrobble in the foreground and prints a nifty little monitor summery. OPTIONS
CONFIGURATION FILEThe configuration file is a perl program. It is evaluated after the script runs, so it is a good idea to run perl -c /etc/musicmpdscrobble.conf after editing it. Here is an example config file:#!/usr/bin/perl # Example musicmpdscrobble.conf file # # This is a perl file. It must be a hash reference. This means a comma between # key / value pairs. # # To check syntax run perl -c musicmpdscrobble.conf # { # LastFM Username and Password lastfm_username => "riemann42", #lastfm_password => "secret", lastfm_md5password => "md5 hash of password here", # Specify mpd_server info. Default is MPD_HOST or localhost # mpd_server => 'localhost', # Specify mpd_port. Default is MPD_PORT or 6600 # mpd_port => 6600, # If you have installed the Music::Tag module, set to 1. musictag => 0, # If you want information from musictag to overwrite info from mpd (not recommended) set to 1 musictag_overwrite => 0, # Specify the music_directory path for MPD. music_directory => "/mnt/media/music/MP3s", # Set the verbosity level. 1 through 4. 3 is a good medium verbose => 3, #Specify the logfile path logfile => "/var/log/musicmpdscrobble.log", #Specify the file to write the pid to. pidfile => "/var/run/musicmpdscrobble.pid", #Specify the file to store pending scrobbles in. scrobble_queue => "/var/lib/musicmpdscrobble.queue", #Automatically get missing mbid info: # get_mbid_from_mb => 1, # list of programs to run when a song start. Accepts the following variables: # # %f filename # %a Artist # %b Album # %t Title # %l Length of track in seconds # %n Track number # %m mbid of track # # runonstart => [], # list of programs to run after song submit. # runonsubmit => [], }; About Music::Tag ModuleThe music tag module is framework for reading tag files. It requires several modules be installed to work correctly.The major reason to install this is that it will read info from the filename and not just from the MPD database. You can, therefore, submit the MusicBrainz ID, if it is available via Music::Tag. You want to submit the MusicBrainz Track ID because at it (currently) makes you immune from last.fm spam protection and helps improve the last.fm database. CLIENT IDThis is BETA code. It does, however, have an official last.fm client id of "MAM." It is not developed by the last.fm folks, and is not guaranteed to even work.SEE ALSOMusic::Audioscrobbler::MPD, Music::TagCOPYRIGHTCopyright (c) 2007 Edward J. Allen IIISome code and inspiration from Audio::MPD Copyright (c) 2005 Tue Abrahamsen, Copyright (c) 2006 Nicholas J. Humfrey, Copyright (c) 2007 Jerome Quelin LICENSEThis program is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either:a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" which comes with Perl. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the Artistic License for more details. You should have received a copy of the Artistic License with this Kit, in the file named "Artistic". If not, I'll be glad to provide one. You should also have received a copy of the GNU General Public License along with this program in the file named "Copying". If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA or visit their web page on the Internet at http://www.gnu.org/copyleft/gpl.html.
Visit the GSP FreeBSD Man Page Interface. |