Showing posts with label flac. Show all posts
Showing posts with label flac. Show all posts

Sunday, February 7, 2010

Mass-(re)naming files from .flac tags

The story is usually the other way around: you have a bunch of correctly named audio files and you want to automatically mass-tag them. Most players and tag editors already allow you to do that.

My problem was the exact reverse of this situation: I had neatly tagged .flac-s and I wanted to rename the files, which were bleakly called split-track01.flac, split-track02.flac etc.

Saturday, February 6, 2010

Splitting and converting large .ape files


In a previous post I talked about how a large .flac file can be split into the original CD tracks (provided you have a correct .cue file).
Here is how to do the same for a large .ape file.

Wednesday, February 3, 2010

Splitting large .flac files

Suppose you have a large .flac file and a .cue one (which provides the correct and complete ripping information). The large .flac stands for the whole CD. How to split it into the tracks that should make it up?

Wednesday, April 9, 2008

Convert .flac files into .mp3

In order to convert .flac to .mp3, you'd need to do the following: first cd into the directory with the .flac files, then
for x in *.flac ; do OUTF=`echo "$x" | sed s/\.flac$/.mp3/g` ; flac -c -d "$x" | lame -m j -q 0 -V 0 -s 44.1 - "$OUTF" ; done