main.dfm
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:3k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. object MainForm: TMainForm
  2.   Left = 387
  3.   Top = 211
  4.   Width = 704
  5.   Height = 530
  6.   Caption = 'Video Cap'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object OutPutFileName: TLabel
  19.     Left = 88
  20.     Top = 296
  21.     Width = 67
  22.     Height = 13
  23.     Caption = 'c:capture.avi'
  24.   end
  25.   object Label1: TLabel
  26.     Left = 8
  27.     Top = 8
  28.     Width = 27
  29.     Height = 13
  30.     Caption = 'Video'
  31.   end
  32.   object Label2: TLabel
  33.     Left = 8
  34.     Top = 128
  35.     Width = 27
  36.     Height = 13
  37.     Caption = 'Audio'
  38.   end
  39.   object Label3: TLabel
  40.     Left = 168
  41.     Top = 8
  42.     Width = 70
  43.     Height = 13
  44.     Caption = 'Select Formats'
  45.   end
  46.   object Label4: TLabel
  47.     Left = 168
  48.     Top = 128
  49.     Width = 70
  50.     Height = 13
  51.     Caption = 'Select Formats'
  52.   end
  53.   object VideoWindow: TVideoWindow
  54.     Left = 224
  55.     Top = 248
  56.     Width = 273
  57.     Height = 217
  58.     FilterGraph = CaptureGraph
  59.     VMROptions.UseVideoControler = False
  60.     VMROptions.Mode = vmrWindowed
  61.     VMROptions.Streams = 1
  62.     VMROptions.Preferences = []
  63.     Color = clBlack
  64.     Visible = True
  65.   end
  66.   object VideoCapFilters: TListBox
  67.     Left = 8
  68.     Top = 24
  69.     Width = 153
  70.     Height = 97
  71.     ItemHeight = 13
  72.     TabOrder = 1
  73.     OnClick = VideoCapFiltersClick
  74.   end
  75.   object StartButton: TButton
  76.     Left = 8
  77.     Top = 328
  78.     Width = 75
  79.     Height = 25
  80.     Caption = 'Start'
  81.     Enabled = False
  82.     TabOrder = 2
  83.     OnClick = StartButtonClick
  84.   end
  85.   object CapFileButton: TButton
  86.     Left = 8
  87.     Top = 296
  88.     Width = 75
  89.     Height = 25
  90.     Caption = 'Capture file'
  91.     TabOrder = 3
  92.     OnClick = CapFileButtonClick
  93.   end
  94.   object StatusBar: TStatusBar
  95.     Left = 0
  96.     Top = 480
  97.     Width = 696
  98.     Height = 19
  99.     Panels = <>
  100.     SimplePanel = True
  101.   end
  102.   object StopButton: TButton
  103.     Left = 8
  104.     Top = 360
  105.     Width = 75
  106.     Height = 25
  107.     Caption = 'Stop'
  108.     Enabled = False
  109.     TabOrder = 5
  110.     OnClick = StopButtonClick
  111.   end
  112.   object AudioCapFilters: TListBox
  113.     Left = 8
  114.     Top = 144
  115.     Width = 153
  116.     Height = 97
  117.     ItemHeight = 13
  118.     TabOrder = 6
  119.     OnClick = AudioCapFiltersClick
  120.   end
  121.   object VideoFormats: TListBox
  122.     Left = 168
  123.     Top = 24
  124.     Width = 521
  125.     Height = 97
  126.     ItemHeight = 13
  127.     TabOrder = 7
  128.   end
  129.   object AudioFormats: TListBox
  130.     Left = 168
  131.     Top = 144
  132.     Width = 521
  133.     Height = 97
  134.     ItemHeight = 13
  135.     TabOrder = 8
  136.   end
  137.   object InputLines: TComboBox
  138.     Left = 8
  139.     Top = 248
  140.     Width = 153
  141.     Height = 21
  142.     Style = csDropDownList
  143.     ItemHeight = 13
  144.     TabOrder = 9
  145.   end
  146.   object CaptureGraph: TFilterGraph
  147.     Mode = gmCapture
  148.     GraphEdit = True
  149.     WMFRegister = False
  150.     Left = 232
  151.     Top = 256
  152.   end
  153.   object VideoSourceFilter: TFilter
  154.     BaseFilter.data = {00000000}
  155.     Left = 16
  156.     Top = 32
  157.   end
  158.   object SaveDialog: TSaveDialog
  159.     Left = 168
  160.     Top = 296
  161.   end
  162.   object Timer: TTimer
  163.     Enabled = False
  164.     Interval = 1
  165.     OnTimer = TimerTimer
  166.     Left = 264
  167.     Top = 256
  168.   end
  169.   object AudioSourceFilter: TFilter
  170.     BaseFilter.data = {00000000}
  171.     Left = 16
  172.     Top = 152
  173.   end
  174. end