summaryrefslogtreecommitdiff
path: root/audio/flac2mp3
AgeCommit message (Collapse)AuthorFilesLines
2006-04-22Fix typo or mispelling.reed1-1/+1
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2006-01-21Update package Makefile now that bsd.pkg.extract.mk is using thejlam1-3/+1
"extract" script for extraction. Many cases where a custom EXTRACT_CMD simply copied the distfile into the work directory are no longer needed. The extract script also hides differences between pax and tar behind a common command-line interface, so we no longer need code that's conditional on whether EXTRACT_USING is tar or pax.
2005-07-15Drop support for TOOLS_DEPMETHOD.<tool>. The new way to specify ajlam1-3/+2
run-time dependency (DEPENDS) on a tool is to append a ":run" modifier to the tool name, e.g., USE_TOOLS+= perl:run Tools without modifiers or with an explicit ":build" modifier will cause build dependencies (BUILD_DEPENDS) on those tools to be added. This makes the notation a bit more compact.
2005-06-16Create directories before installing files into them.jlam1-1/+3
2005-05-25Changed USE_PERL5 to USE_TOOLS. Replaced #defined with "yes" in NO_BUILD.rillig1-3/+4
2005-05-23Removed trailing white-space.rillig1-2/+2
2005-02-23Add RMD160 digests to the SHA1 ones.agc1-1/+2
2004-12-23Initial import of flac2mp3, a small perl script to convert from flacagc4-0/+53
(lossless) encoding into mp3. With the cost of hard drive storage falling under $1 USD per GB, storing audio in a lossless format is now inexpensive and practical. The FLAC codec is an OpenSource and Free software of very high quality. The FLAC format supports meta-info as ID3v1 tags or OGG comments. FLAC even has plugins for popular audio players such as XMMS and WinAMP. This script also helps with the generation of MP3 files from FLAC, whilst preserving the tags. This way you can easily convert an album from FLAC to MP3 for playing on a mobile audio device. You will need LAME installed and in your $PATH. Using the script is simple: * cd /path/to/directory/with/FLACS * flac2mp3 *flac After transcoding, you will have matching, tagged MP3 files in the same directory. Note: Only use this script on flac files that you trust to have non-malicous tags (ie, ones that you've created yourself).