Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mp3diags(1) [debian man page]

MP3DIAGS(1)						      General Commands Manual						       MP3DIAGS(1)

NAME
mp3diags - find issues in MP3 files SYNOPSIS
mp3diags DESCRIPTION
MP3 Diags is a simple graphical application that allows end-users to identify issues with their MP3 files, fix some of them and make other changes, like adding track information. It looks at both the audio part (VBR info, quality, normalization) and the tags containing track information (ID3). MP3 Diags provides a tag editor, which can download album information (including cover art) from MusicBrainz and Discogs, as well as paste data from the clipboard, and a file renamer, which can rename groups of file automatically, based on their ID3 fields (artist, track num- ber, album, genre, etc). MP3 Diags has been written with QT4 libraries, and after the installation the application is available from the Applications menu. AUTHOR
mp3diags was written by Marian Ciobanu <ciobi@inbox.com>. This manual page was written by Alessio Treglia <quadrispro@ubuntu.com>, for the Ubuntu project (and may be used by others). June 29, 2009 MP3DIAGS(1)

Check Out this Related Man Page

MP3::Tag::Cue(3pm)					User Contributed Perl Documentation					MP3::Tag::Cue(3pm)

NAME
MP3::Tag::Cue - Module for parsing .cue files. SYNOPSIS
my $db = MP3::Tag::Cue->new($filename, $track); # Name of audio file my $db = MP3::Tag::Cue->new_from($record, $track); # Contents of .cue file ($title, $artist, $album, $year, $comment, $track) = $db->parse(); see MP3::Tag DESCRIPTION
MP3::Tag::Cue is designed to be called from the MP3::Tag module. It parses the content of a .cue file. The .cue file is looked for in the same directory as audio file; one of the following conditions must be satisfied: o The "audio" file is specified is actually a .cue file; o There is exactly one .cue file in the directory of audio file; o There is exactly one .cue file in the directory of audio file with basename which is a beginning of the name of audio file. o There is exactly one .cue file in the directory of audio file with basename which matches (case-insensitive) a beginning of the name of audio file. If no .cue file is found in the directory of audio file, the same process is repeated once one directory uplevel, with the name of the file's directory used instead of the file name. E.g., with the files like this Foo/bar.cue Foo/bar/04.wav audio file Foo/bar/04.wav will be associated with Foo/bar.cue. parse() ($title, $artist, $album, $year, $comment, $track) = $db->parse($what); parse_filename() extracts information about artist, title, track number, album and year from the .cue file. $what is optional; it maybe title, track, artist, album, year, genre or comment. If $what is defined parse() will return only this element. Additionally, $what can take values "artist_collection" (returns the value of artist in the whole-disk-info field "PERFORMER", "songwriter". title() $title = $db->title(); Returns the title, obtained from the 'Tracktitle' entry of the file. artist() $artist = $db->artist(); Returns the artist name, obtained from the 'Performer' or 'Albumperformer' entries (the first which is present) of the file. track() $track = $db->track(); Returns the track number, stored during object creation, or queried from the parent. year() $year = $db->year(); Returns the year, obtained from the 'Year' entry of the file. (Often not present.) album() $album = $db->album(); Returns the album name, obtained from the 'Albumtitle' entry of the file. comment() $comment = $db->comment(); Returns the 'REM COMMENT' entry of the file. (Often not present.) genre() $genre = $db->genre($filename); perl v5.14.2 2009-11-28 MP3::Tag::Cue(3pm)
Man Page