This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
flac2mp3 /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sun Mar 30 09:04:25 -0700 2008 | |
| |
History.txt | ||
| |
License.txt | Thu Dec 06 20:27:19 -0800 2007 | |
| |
Manifest.txt | Tue Sep 22 20:47:17 -0700 2009 | |
| |
README.txt | Sat Nov 29 11:06:22 -0800 2008 | |
| |
Rakefile | Thu Dec 06 20:27:19 -0800 2007 | |
| |
bin/ | Sat Nov 29 11:05:13 -0800 2008 | |
| |
config/ | ||
| |
lib/ | Tue Sep 22 20:47:17 -0700 2009 | |
| |
log/ | Thu Dec 06 20:27:19 -0800 2007 | |
| |
script/ | Thu Dec 06 20:27:19 -0800 2007 | |
| |
setup.rb | Thu Dec 06 20:27:19 -0800 2007 | |
| |
spec/ | Tue Sep 22 20:47:17 -0700 2009 | |
| |
tasks/ | Tue Sep 22 20:47:17 -0700 2009 |
README.txt
= flac2mp3
== DESCRIPTION:
flac2mp3 is meant to, as the name implies, convert FLAC files to MP3 files
== FEATURES/PROBLEMS:
* Will convert a file from FLAC to MP3 format, natch.
* Not *only* is the song data converted, but so is the metadata!
* Options:
* silent running
* delete the FLAC after conversion
* MP3 encoding (defaults to --preset standard)
* Reads options from YAML config file, ~/.flac2mp3
Currently operates on one file at a time. To convert more, try something like
for f in *.flac; do flac2mp3 "$f"; done
or
find . -name '*.flac' -exec flac2mp3 {} \;
If neither of those commands will work for you, try using a different OS.
== SYNOPSIS:
$ flac2mp3 flac_filename
$ flac2mp3 flac_filename --silent
$ flac2mp3 --meta flac_filename mp3_filename
(or)
$ metaflac2mp3 flac_filename mp3_filename
or, if you insist
require 'flac2mp3'
Flac2mp3.convert(flac_filename)
Flac2mp3.convert(flac_filename, :silent => true)
Flac2mp3.convert_metadata(flac_filename, mp3_filename)
== REQUIREMENTS:
* flac, the binary
* lame, the binary
* flacinfo-rb, the gem
* ruby-mp3info, the gem
* ruby, the interpreter
== INSTALL:
* gem install flac2mp3
== THANKS:
* Rich Lafferty, for turning me on to the wonderful idea of keeping everything in FLAC format
* Apple, for having a bunch of little-i, capital-letter products that don't like FLAC format
* Robin Bowes, for flac2mp3.pl, which annoyed me enough to get me to write this








