var fpath="C:\\TVT_"+cur_date+"_"+cur_time+".avi";
Components.utils.import("resource://gre/modules/FileUtils.jsm");
var env = Components.classes["@mozilla.org/process/environment;1"]
.getService(Components.interfaces.nsIEnvironment);
var shell = new FileUtils.File(env.get("COMSPEC"));
var args = ["/c", "cd.. & cd.. & C: & cd C:/ffmpeg/bin & record.bat "+fpath];
var process = Components.classes["@mozilla.org/process/util;1"]
.createInstance(Components.interfaces.nsIProcess);
process.init(shell);
process.runAsync(args, args.length);
- 我不想使用 taskkill.exe、/MIN、/C、/B,而是想退出这个 ffmpeg 进程
- 我阅读了有关 CMDOW 的信息,但没有在 system32 目录中找到 cmdow.exe。
- 那么如何在运行 ffmpeg 进程的同一窗口中发送退出命令?
将 Windows XP Service Pack 2 与 Firefox 12 一起使用
谢谢..