I create a Process class from QProcess to run MEncoder.
Everything's fine and I can abort the process with kill() method.
However in Win32 CLI, running MENcoder and typing Ctrl-C make MEncoder to stop smoothly.
Therefore I try to stop smoothly writing Ctrl-C (0x03) with:
Qt Code:
class Process : QProcess { ... char ctrlC = 0x03; write( &ctrlC ); ...To copy to clipboard, switch view to plain text mode
And it just does nothing![]()
Bookmarks