-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.vb
More file actions
40 lines (30 loc) · 1.5 KB
/
Data.vb
File metadata and controls
40 lines (30 loc) · 1.5 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
Module Data
'' =========================================
'' || @Kike 'Puma' Fontán & Óscar Moldes ||
'' =========================================
'' ## STYLE VARIABLES ##
Public DarkTheme As Boolean = True
Public CurrentTheme As Integer = MetroFramework.MetroThemeStyle.Dark
Public MetroBackColor As Color = MetroFramework.MetroColors.Black
Public MetroTextColor As Color = Color.White
'' ## PROGRAM PATH ##
Public NullPath As String = "\dev"
Public MyPath As String = My.Application.Info.DirectoryPath.ToString
Public PraatPath As String = MyPath + "\xtern_\praat.exe"
Public EEGWriterPath As String = MyPath + "\xtern_\eegwriter\eegwriter.exe"
Public ElanPath As String = NullPath
'' ### MESSAGES ###
Public Msg As String = "\dev"
'' ### WEBCAM VARIABLES ###
Public camera As AForge.Video.DirectShow.VideoCaptureDevice = Nothing
Public cameraSet As Boolean = False
'' ### FILE VARIABLES ###
Public defaultOutputPath As String = MyPath + "\output_\"
Public xternPath As String = MyPath + "\xtern_\"
Public videoExtension As String = ".avi"
Public videoName As String = "errorSettingName"
Public videoDefaultCodec As AForge.Video.FFMPEG.VideoCodec = AForge.Video.FFMPEG.VideoCodec.Default
'Public fps As Integer = WebcamForm.fpsNum.Value 'Default: 30
' Public videoBitRate As Integer = WebcamForm.bitrateNum.Value 'Default: 24915
'' ## SYNCHRO VARIABLES ##
End Module