Results 1 to 2 of 2
Hi All,
I am ripping CD's to WAV and then converting to FLAC. I would like to know how to generate a log file for the FLAC conversion, can anyone ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-22-2012 #1Just Joined!
- Join Date
- Jun 2005
- Posts
- 15
Flac log
Hi All,
I am ripping CD's to WAV and then converting to FLAC. I would like to know how to generate a log file for the FLAC conversion, can anyone provide me with advice on how to go about doing this?
Many thanks,
Max
- 07-26-2012 #2Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,746
what tool are you using for flac conversion? if it is a graphical tool, then maybe there is logging supported within the app. if it is a command-line tool, then (assuming you are using bash), you can redirect STOUT and STDERR to file(s).
e.g.:
to redirect STDOUT
to redirect STDERRCode:flac_convert file.in file.out 1 > /tmp/flac.log
to do the above redirections simultaneouslyCode:flac_convert file.in file.out 2 > /tmp/flac.err
to redirect STOUT and STDERR to the same logCode:flac_convert file.in file.out 1 > /tmp/flac.log 2 > /tmp/flac.err
to append to a file instead of overwriting it, use >>Code:flac_convert file.in file.out > /tmp/flac-output.log 2>&1
Code:flac_convert file.in file.out >> /tmp/flac.log 2>&1


Reply With Quote

