Tags groups of audio files using CDDB.

TagLookup is a utility for tagging MP3s and other taggable audio file formats.
It inspects a set of audio files and uses their lengths to look up an
appropriate disc from a CDDB-compatible service. TagLookup can be used in two
modes:

* ID -- Given a CDDB ID and a number of files, look up the details of the CDDB
  disc from a CDDB service. Tag files using the CDDB disc. Match each file with
  each CDDB track using the closest track length.
* Sequence -- Given a number of files, generate a CDDB ID and query a CDDB
  service. CDDB IDs are generated based on the sequence of tracks. Choose the
  closest matching CDDB disc to tag the files.

As well as this, taglookup can:
* Rename -- Rename files based on their tags.

WWW: http://www.kamaz.org.uk/taglookup

PR:		ports/117644
Submitted by:	Alex Allan <alex@kamaz.org.uk>
This commit is contained in:
Pav Lucistnik 2007-12-15 19:00:59 +00:00
parent 0650f5cb0f
commit d4dcb23443
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=203772
4 changed files with 45 additions and 0 deletions

View File

@ -616,6 +616,7 @@
SUBDIR += swhplugins
SUBDIR += tagger
SUBDIR += taglib
SUBDIR += taglookup
SUBDIR += tagtool
SUBDIR += tap-plugins
SUBDIR += tclmidi

23
audio/taglookup/Makefile Normal file
View File

@ -0,0 +1,23 @@
# New ports collection makefile for: taglookup
# Date created: 21 Oct 2007
# Whom: Alex Allan <alex@kamaz.org.uk>
#
# $FreeBSD$
#
PORTNAME= taglookup
PORTVERSION= 0.2
CATEGORIES= audio
MASTER_SITES= http://www.kamaz.org.uk/taglookup/
EXTRACT_SUFX= .tgz
MAINTAINER= alex@kamaz.org.uk
COMMENT= Utility for tagging groups of audio files using CDDB
LIB_DEPENDS= cddb.4:${PORTSDIR}/audio/libcddb \
tag.5:${PORTSDIR}/audio/taglib
MAN1= taglookup.1
PLIST_FILES= bin/taglookup
.include <bsd.port.mk>

3
audio/taglookup/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (taglookup-0.2.tgz) = a77d0ea7714c338be53485db94269640
SHA256 (taglookup-0.2.tgz) = 78463a754a85c438ffdffda4326ac83723616ba5f941a44dcd2d6b2dcfbfb0be
SIZE (taglookup-0.2.tgz) = 16869

18
audio/taglookup/pkg-descr Normal file
View File

@ -0,0 +1,18 @@
Tags groups of audio files using CDDB.
TagLookup is a utility for tagging MP3s and other taggable audio file formats.
It inspects a set of audio files and uses their lengths to look up an
appropriate disc from a CDDB-compatible service. TagLookup can be used in two
modes:
* ID -- Given a CDDB ID and a number of files, look up the details of the CDDB
disc from a CDDB service. Tag files using the CDDB disc. Match each file with
each CDDB track using the closest track length.
* Sequence -- Given a number of files, generate a CDDB ID and query a CDDB
service. CDDB IDs are generated based on the sequence of tracks. Choose the
closest matching CDDB disc to tag the files.
As well as this, taglookup can:
* Rename -- Rename files based on their tags.
WWW: http://www.kamaz.org.uk/taglookup