Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

musicbrainz::discid(3pm) [debian man page]

MusicBrainz::DiscID(3pm)				User Contributed Perl Documentation				  MusicBrainz::DiscID(3pm)

NAME
MusicBrainz::DiscID - Perl interface for the MusicBrainz libdiscid library SYNOPSIS
use MusicBrainz::DiscID; my $discid = MusicBrainz::DiscID->new(); if ( $disc->read() == 0 ) { print STDERR "Error: " . $discid->error_msg() . " "; exit(1); } print "DiscID: " . $discid->id() . " "; DESCRIPTION
MusicBrainz::DiscID is a class to calculate a MusicBrainz DiscID from an audio CD in the drive. The coding style is slightly different to the C interface to libdiscid, because it makes use of perl's Object Oriented functionality. MusicBrainz::DiscID::default_device() Returns a device string for the default device for this platform. MusicBrainz::DiscID::new( [$device] ) Construct a new DiscID object. As an optional argument the name of the device to read the ID from may be given. If you donOt specify a device here you can later read the ID with the read method. $discid->error_msg() Return a human-readable error message of the last error that occured. $discid->first_track_num() Return the number of the first track on this disc (usually 1). Returns undef if no ID was yet read. $discid->last_track_num() Return the number of the last track on this disc. $discid->id() Returns the DiscID as a string. Returns undef if no ID was yet read. $discid->last_track_num() Return the number of the last track on this disc. Returns undef if no ID was yet read. $discid->put( $first_track, $sectors, $offset1, $offset2, ... ) This function may be used if the TOC has been read earlier and you want to calculate the disc ID afterwards, without accessing the disc drive. $discid->read( [$device] ) Read the disc ID from the given device. If no device is given the default device of the platform will be used. On error, this function returns false and sets the error message which you can access $discid->error_msg(). $discid->sectors() Return the length of the disc in sectors. Returns undef if no ID was yet read. $discid->submission_url() Returns a submission URL for the DiscID as a string. Returns undef if no ID was yet read. $discid->track_length( $track_num ) Return the length of a track in sectors. $discid->track_offset( $track_num ) Return the sector offset of a track. $discid->webservice_url() Returns a Webservice URL for the DiscID as a string. Returns undef if no ID was yet read. SEE ALSO
<http://musicbrainz.org/doc/libdiscid> AUTHOR
Nicholas J. Humfrey <njh@aelius.com> COPYRIGHT AND LICENSE
Copyright (C) 2009 Nicholas J. Humfrey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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 the GNU General Public License for more details. perl v5.14.2 2011-11-15 MusicBrainz::DiscID(3pm)

Check Out this Related Man Page

NEWFS_UDF(8)						    BSD System Manager's Manual 					      NEWFS_UDF(8)

NAME
newfs_udf -- construct a new UDF file system SYNOPSIS
newfs_udf [-cFM] [-L loglabel] [-P discid] [-p percentage] [-S setlabel] [-s size] [-t gmtoff] [-V max_udf] [-v min_udf] special DESCRIPTION
The newfs_udf utility creates an UDF file system on device special suitable for the media currently inserted. The options are as follow: -c Perform a crude surface check first to weed out disc faults on rewritable media. -F Force file system construction on non-empty recordable media. -L loglabel Set the disc logical label to the specified loglabel. -M Disable metadata partition creation when selected UDF version or media dictates this. For strict conformance and interchange, don't disable this unless its causing problems. -P discid Set the physical disc label to the specified discid. For strict conformance and interchange, don't set this manually. -p percentage Percentage of partition to be initially reserved for metadata on the Metadata partition. It defaults to 20 %. -S setlabel Set the disc set label to the specified setlabel. For strict conformance and interchange, don't set this manually. -s size Ignored for now. -t gmtoff Use the specified gmtoff as gmt time offset for recording times on the disc. -V max_udf Select max_udf as the maximum UDF version to be supported. For UDF version 2.50, use ``0x250'' or ``2.50''. -v min_udf Select min_udf as the minimum UDF version to be supported. For UDF version 2.01, use ``0x201'' or ``2.01''. NOTES
The UDF file system is defined for the entire optical medium. It can only function on the entire CD/DVD/BD so the raw partition has to be specified for read/write actions. For newfs_udf this means specifying the raw device with the raw partition, i.e. /dev/rcd0d or /dev/rcd0c. Some rewritable optical media needs to be formatted first before it can be used by UDF. This can be done using mmcformat(8). The default UDF version is version 2.01. EXAMPLES
newfs_udf -S "Encyclopedia" -L "volume 2" -P "copy-nr-1" /dev/rcd0d Create a file system, using the specified names on the device /dev/rcd0d with the default UDF version. dd if=/dev/zero of=bigdisk.2048.udf seek=9999999 count=1 vnconfig -c vnd0 bigdisk.2048.udf 2048/1/1/1 newfs_udf -L bigdisk /dev/rvnd0d Create a 4.8 GiB sparse file and configure it using vnconfig(8) to be a 2048 sector size disc and create a new UDF file system on /dev/rvnd0d. newfs_udf -L "My USB stick" /dev/rsd0d Create a new UDF file system on the inserted USB stick using its ``native'' sectorsize of 512. SEE ALSO
disktab(5), disklabel(8), mmcformat(8), newfs(8) HISTORY
The newfs_udf command first appeared in NetBSD 5.0. AUTHORS
Reinoud Zandijk <reinoud@NetBSD.org> BSD
December 23, 2009 BSD
Man Page