Difference between revisions of "WebCam with Free Pascal"

From Lazarus wiki
Jump to navigationJump to search
(SysRec added.)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
===Webcam with Freepascal on Windows===
+
==Freepascal VideoTest==
 +
Freepascal VideoTest is a simple application that demonstrates how to use a web cam from Free Pascal.
 +
It is available from https://sourceforge.net/projects/freepascalvideo/ for Windows and Linux.
  
unit TFMainForm;
+
==SysRec==
 +
[[SysRec]] is a versatile Lazarus application that supports Windows computers. It is available as source code.
  
{$mode objfpc}{$H+}
+
[[Category: Hardware]]
 
+
[[Category:Devices]]
interface
+
[[Category:Multimedia]]
 
+
[[Category:Video]]
uses
 
  Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, TFCamera,
 
  ComCtrls, Buttons, StdCtrls, ExtCtrls, VFW;
 
 
 
type RVideoCapDevice= record
 
  szDeviceName: array[0..79] of Char;
 
  szDeviceVersion: array[0..79] of Char;
 
end;
 

Latest revision as of 16:30, 26 August 2015

Freepascal VideoTest

Freepascal VideoTest is a simple application that demonstrates how to use a web cam from Free Pascal. It is available from https://sourceforge.net/projects/freepascalvideo/ for Windows and Linux.

SysRec

SysRec is a versatile Lazarus application that supports Windows computers. It is available as source code.