-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.dfm
More file actions
156 lines (156 loc) · 3.3 KB
/
MainForm.dfm
File metadata and controls
156 lines (156 loc) · 3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
object FormMain: TFormMain
Left = 0
Top = 0
Caption = 'FFmpeg RTSP Player - Low Latency'
ClientHeight = 600
ClientWidth = 1024
Color = clBtnFace
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
TextHeight = 13
object Image1: TImage
Left = 0
Top = 121
Width = 1024
Height = 279
Align = alClient
Center = True
Proportional = True
Stretch = True
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 1024
Height = 121
Align = alTop
TabOrder = 0
object Label1: TLabel
Left = 16
Top = 16
Width = 57
Height = 13
Caption = 'URL RTSP:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label2: TLabel
Left = 16
Top = 48
Width = 43
Height = 13
Caption = 'Protocol:'
end
object LabelStatus: TLabel
Left = 16
Top = 96
Width = 119
Height = 13
Caption = 'Status: Disconnected'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object EditURL: TEdit
Left = 96
Top = 13
Width = 529
Height = 21
TabOrder = 0
Text = 'rtsp://192.168.1.100:554/stream'
end
object BtnConnect: TButton
Left = 640
Top = 11
Width = 97
Height = 25
Caption = 'Connect'
TabOrder = 1
OnClick = BtnConnectClick
end
object BtnDisconnect: TButton
Left = 752
Top = 11
Width = 97
Height = 25
Caption = 'Disconnect'
TabOrder = 2
OnClick = BtnDisconnectClick
end
object BtnScreenshot: TButton
Left = 864
Top = 11
Width = 97
Height = 25
Caption = 'Screenshot'
TabOrder = 3
OnClick = BtnScreenshotClick
end
object ComboProtocol: TComboBox
Left = 96
Top = 45
Width = 145
Height = 21
Style = csDropDownList
ItemIndex = 0
TabOrder = 4
Text = 'TCP'
Items.Strings = (
'TCP'
'UDP')
end
object CheckLowLatency: TCheckBox
Left = 256
Top = 47
Width = 129
Height = 17
Caption = 'Low Latency'
Checked = True
State = cbChecked
TabOrder = 5
end
end
object Panel2: TPanel
Left = 0
Top = 400
Width = 1024
Height = 200
Align = alBottom
Caption = 'Panel2'
TabOrder = 1
object MemoLog: TMemo
Left = 1
Top = 1
Width = 1022
Height = 198
Align = alClient
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Consolas'
Font.Style = []
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
end
end
object SaveDialog1: TSaveDialog
Left = 888
Top = 152
end
end