search for: russofri

Displaying 8 results from an estimated 8 matches for "russofri".

Did you mean: russofris
2007 Sep 27
4
re-encode tool win32
Under linux/bash, it would be something like.... cd /MusicDirectory find . -type f -name "*.flac" -exec sh -c 'flac -t {} && flac -8V {}' \; Or to simplify and not test each file before re-encode.... find . -type f -name "*.flac" -exec flac -8 {} \; -print Can someone translate this into NTBatch? Basically, recursive "dir" *.flac files as a
2006 Jun 01
4
Batch Process for wav->flac?
I have a hard disk full of live shows. Each show is in an individual folder (titled by name and date of show), and contains the individual wav files of the show, labeled "disc1track1, disc1track2, etc." It's the same naming scheme in each of the 200 or so folders for each show. I want to convert each audio file to flac - is there a way to do this all at once? I can't just
2007 Sep 28
4
re-encode tool win32
2007/9/28, Aaron Whitehouse <lists@whitehouse.org.nz>: > > > Under linux/bash, it would be something like.... > > cd /MusicDirectory > > find . -type f -name "*.flac" -exec sh -c 'flac -t {} && flac -8V {}' > \; > > Wouldn't it be nice if it was something closer to: > flac --reencode --recursive -8 *.flac I think this would
2007 Sep 27
1
re-encode tool win32
...py and paste it into flac-reencode.sh, replace the "8" with a @1 var and you are all set. No need for "--reencode" as it is redundant. Ping me if you want a hand with that (sarcasm). Frank > Date: Fri, 28 Sep 2007 16:55:47 +1200 > From: lists@whitehouse.org.nz > To: russofris@hotmail.com > Subject: Re: [flac] re-encode tool win32 > CC: tranzedude@gmail.com; flac@xiph.org > > > Under linux/bash, it would be something like.... > > cd /MusicDirectory > > find . -type f -name "*.flac" -exec sh -c 'flac -t {} && flac -8V {...
2007 Sep 28
0
re-encode tool win32
...e" or some BS like that. I do not endorse MS products and have not worked for them since 2003 (the reason for the attrition of my command line abilities). Date: Fri, 28 Sep 2007 13:48:42 +0200 From: tranzedude@gmail.com To: lists@whitehouse.org.nz Subject: Re: [flac] re-encode tool win32 CC: russofris@hotmail.com; flac@xiph.org 2007/9/28, Aaron Whitehouse <lists@whitehouse.org.nz>: > Under linux/bash, it would be something like.... > cd /MusicDirectory > find . -type f -name "*.flac" -exec sh -c 'flac -t {} && flac -8V {}' \; Wouldn't it be nic...
2006 Dec 05
2
Converting collection to 1.1.3
So, if I have a 50,000 flac files with perfect metadata encoded with <=1.1.2, I should... find . -type f -name "*.flac" -exec flac -8 {} \; -print And come back to my computer in about 24-48 hours? I've tested it on a small dir tree and it seemed to be fine. I just wanted to make sure though, before having to re-tag a couple terabytes of data. This is actually a serious
2007 Sep 28
0
re-encode tool win32
...flacGUI from the core flac project, and we'll all do our best to extend the tools to make common tasks easier for the users. Frank > Date: Sat, 29 Sep 2007 01:06:03 +0200 > From: tranzedude@gmail.com > To: lists@whitehouse.org.nz > Subject: Re: [flac] re-encode tool win32 > CC: russofris@hotmail.com; flac@xiph.org > > but to return to my original question: is there a graphical tool to > re-encode directories (and subdir's inside of them) for win32? > > because otherwise windows are still 'stuck' when they want to do that. > I agree entering such lon...
2006 Jun 01
0
Batch Process for wav->flac?
In linux..... Something like ----------------------------------------------------------------- for FOO in `ls -R | grep wav` ; do flac -5 ${FOO} ; done ---------------------------------------------------------------- or -------------------------------------------------------------- find . -name "*.wav" | while read FOO do flac -5 "${FOO}" done