public
Description: Converter for FLAC to MP3
Homepage:
Clone URL: git://github.com/ymendel/flac2mp3.git
name age message
file .gitignore Sun Mar 30 09:04:25 -0700 2008 Starting .gitignore with pkg dir [ymendel]
file History.txt Loading commit data...
file License.txt Thu Dec 06 20:27:19 -0800 2007 Initial creation. [ymendel]
file Manifest.txt Tue Sep 22 20:47:17 -0700 2009 Removing rspec Rakefile. [ymendel]
file README.txt Sat Nov 29 11:06:22 -0800 2008 Setting version (0.3.2), updating History, fill... [ymendel]
file Rakefile Thu Dec 06 20:27:19 -0800 2007 Initial creation. [ymendel]
directory bin/ Sat Nov 29 11:05:13 -0800 2008 Cleaning up commands a bit, requiring version o... [ymendel]
directory config/
directory lib/ Tue Sep 22 20:47:17 -0700 2009 Setting version (0.4.0), updating History. [ymendel]
directory log/ Thu Dec 06 20:27:19 -0800 2007 Initial creation. [ymendel]
directory script/ Thu Dec 06 20:27:19 -0800 2007 Initial creation. [ymendel]
file setup.rb Thu Dec 06 20:27:19 -0800 2007 Initial creation. [ymendel]
directory spec/ Tue Sep 22 20:47:17 -0700 2009 Removing no-longer-needed spec.opts [ymendel]
directory tasks/ Tue Sep 22 20:47:17 -0700 2009 Removing rspec Rakefile. [ymendel]
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