我正在开展我的学术项目,我将从网络摄像头录制视频。
在我的谷歌搜索中,我发现 FFmpeg 使用var functionOne = function(){
var a = 1,
b = 2,
c = 3;
function functionTwo(){
console.log("b = " + b); //put debug point here
console.log("c = " + c);
}
functionTwo();
}
functionOne();
来记录来自相机的视频,而 OpenCV , AVbin 使用success: function (result) {
var newRowElement = workArea.find("#trNewRowDocType");
newRowElement.show();
newRowElement.before(result);
docTypeWorkArea.remove();
console.log("typeId: " + typeId);
}
。
我不知道这两种方法的优点和缺点,并想知道你是否可以帮我决定在Linux中选择哪一种程序来编写这种程序。
我需要录制1024x768 30hz视频,而不会遇到延迟/延迟问题。绩效是重中之重。