wilson / flac2mp3 forked from ymendel/flac2mp3
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (10)
- Wiki (1)
- Graphs
-
Branch:
master
commit fe60f0564c7df03ae1f81ff6c46fe6b85cd55e5e
tree cd495056af7cccad358660e54785f48ef1230478
parent c9bd95febfeaa9abdca6df925e8a25fa0e761687
tree cd495056af7cccad358660e54785f48ef1230478
parent c9bd95febfeaa9abdca6df925e8a25fa0e761687
flac2mp3 /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Aug 25 11:52:21 -0700 2008 | |
| |
History.txt | Tue Jul 29 20:13:02 -0700 2008 | |
| |
Manifest.txt | Mon Aug 25 11:27:20 -0700 2008 | |
| |
README.txt | Mon Aug 25 11:27:20 -0700 2008 | |
| |
Rakefile | Mon Aug 25 11:52:21 -0700 2008 | |
| |
bin/ | Mon Aug 25 12:06:45 -0700 2008 | |
| |
lib/ | Mon Aug 25 11:52:21 -0700 2008 | |
| |
spec/ | Tue Jul 29 20:07:06 -0700 2008 |
README.txt
= flac2mp3 * http://github.com/ymendel/flac2mp3 == DESCRIPTION: flac2mp3 is a command-line program for converting FLAC files into MP3 files. == FEATURES/PROBLEMS: flac2mp3 is meant to, as the name implies, convert FLAC files to MP3 files. It presently requires the `flac` and `lame` binaries to execute, as those are used for the actual conversion. It moves tags using the flacinfo-rb and ruby-mp3info gems. flac2mp3 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 {} \; == REQUIREMENTS: * flacinfo gem * ruby-mp3info gem == INSTALL: * rake install_gem == LICENSE: Copyright (c) 2007 Yossef Mendelssohn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
