The application causing this issue is a CDripper called freeaccmd
(the command line version)
When I run this command
freeaccmd.exe -e LAME -d rip -cd 0 -track 1 -p <title> -cddb >out.txt 2>&1
options:
-e <encoder type>
-d <directory to write ripped files>
-cd <cd drive instance number to use for multiple optical drives>
-track <track number to rip>
-p <format of the ripped file name>
-cddb <look for cd info in cddb>
This is it. No other options, input or output filenames to specify
it doesn't output anything to the file but spits out everything to the screen I tried to force and error by putting a non existing track number like 17 (this CD has only 16 songs in it) and it still is sending the error output to the screen. I tried
1>out.txt 2>&1
1>out.txt 2>err.txt
but every time it creates the file but won't write anything into it, instead send the output directly to the screen (cmd window that is) I also tried
freeaccmd.exe -e LAME -d rip -cd 0 -track 1 -p <title> -cddb >out.txt | clip
it ends up clearing the clipboard buffer. Is there any way to capture this output to a file ? I am okay if I can run some external app to scrape the characters on the cmd window and put them in a file, if the redirection is hopeless at this point.
Is there a way to capture the whole screen contents in ascii (not image) into clipboard or into a file even if it is with an external program ?