Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

audio::musepack(3pm) [debian man page]

Audio::Musepack(3pm)					User Contributed Perl Documentation				      Audio::Musepack(3pm)

NAME
Audio::Musepack - An object-oriented interface to Musepack file information and APE tag fields. SYNOPSIS
use Audio::Musepack; my $mpc = Audio::Musepack->new("song.mpc"); my $mpcInfo = $mpc->info(); foreach (keys %$mpcInfo) { print "$_: $mpcInfo->{$_} "; } my $mpcTags = $mpc->tags(); foreach (keys %$mpcTags) { print "$_: $mpcTags->{$_} "; } DESCRIPTION
This module returns a hash containing basic information about a Musepack file, as well as tag information contained in the Musepack file's APE tags. CONSTRUCTORS
o new( $filename ) Opens a Musepack file, ensuring that it exists and is actually an Musepack stream, then loads the information and comment fields. INSTANCE METHODS
o info( [$key] ) Returns a hashref containing information about the Musepack file from the file's information header. The optional parameter, key, allows you to retrieve a single value from the info hash. Returns "undef" if the key is not found. o tags( [$key] ) Returns a hashref containing tag keys and values of the Musepack file from the file's APE tags. The optional parameter, key, allows you to retrieve a single value from the tag hash. Returns "undef" if the key is not found. NOTE
This module is now a wrapper around Audio::Scan. SEE ALSO
<http://www.personal.uni-jena.de/~pfk/mpp/index2.html>, Audio::Scan AUTHOR
Dan Sully, <daniel@cpan.org> Original Author: Erik Reckase, <cerebusjam at hotmail dot com> COPYRIGHT
Copyright (c) 2003-2006, Erik Reckase. Copyright (c) 2003-2007, Dan Sully & Slim Devices. Copyright (c) 2003-2010, Dan Sully. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.2 or, at your option, any later version of Perl 5 you may have available. perl v5.10.1 2010-12-26 Audio::Musepack(3pm)

Check Out this Related Man Page

mpc123(1)						      General Commands Manual							 mpc123(1)

NAME
mpc123 - your handy Musepack audio player SYNOPSIS
mpc123 [options] file(s) DESCRIPTION
mpc123 is a command-line player for the Musepack audio compression format. mpc123 reads mpc audio files and decodes them to the devices specified on the command line. During playback, you can pass to the next playlist element (or a random one if one of the -z and -Z options were used, see below) by send- ing SIGINT to the process, thus usually pressing ^C will act as a "next-button" for the player. OPTIONS
--gain N, -g N Set gain (audio volume) to N (0-100 inclusive, default 100, 0 mutes sound) -o driver Set output devicetype to driver; possible drivers include: oss Linux Open Sound System alsa Advanced Linux Sound Architecture alsa09 ALSA version 0.9 and newer (you should really be using this) esd Enlightenment sound daemon arts Analog Real Time System (kde sound daemon) null Debugging output target --audiodevice dev, -a dev Use dev for audio-out; If not specified, the program tries to pick some sane defaults, based on the used audio output driver. Common devices include: /dev/dsp or /dev/dsp1 for oss output default or hw:0 for alsa09 output --au filename.au, -u filename.au Use au file filename.au for output --cdr filename.cdr, -c filename.cdr Use raw file filename.cdr for output (this can be used directly with cdrecord's -audio option) --wav filename.wav, -w filename.wav Use wave file filename.wav for output --list file, -@ file Use playlist file as list of Musepack files; The playlist format is simple: one file per line. You can easily generate a playlist for mpc123 with the find(1) command: find /path/to/musicroot -iname *.mpc -fprint file --random, -Z Play files randomly until interrupted --shuffle, -z Shuffle list of files before playing --verbose, -v Increase verbosity (default verbosity is 0), the more -v, the more verbose mpc123 becomes --quiet, -q Reset verbosity to 0 (no title or boilerplate); this is the default --help, -h Print the help screen, with some brief usage information AUTHOR
This manual page was written by Daniele Sempione <scrows at oziosi.org>; Fernando Vezzosi <fvezzosi at masobit.net> made some edits January 2006 mpc123(1)
Man Page