in reply to running status
system("c:\oggenc.exe c:test.wav");
This will output directly to the screen as your program runs.
As an aside, if you were under UNIX you could have done the following and it does work. It also works under Cygwin.
`program > /dev/tty`;
I would have thought that you could have done the same thing under Windows using CON, like this:
`c:\oggenc.exe c:test.wav > CON:`;But it DOES NOT work. I believe this is a flaw in the way that the ActiveState Perl handles command execution.
metadoktor
"The doktor is in."
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: running status
by marauder (Novice) on Jan 12, 2002 at 23:27 UTC | |
by metadoktor (Hermit) on Jan 13, 2002 at 00:24 UTC |