Video.SettingsGroup.json 2.33 KB
Newer Older
1 2 3 4
[
{
    "name":             "VideoSource",
    "shortDescription": "Video source",
5
    "longDescription":  "Source for video. UDP, RTSP and UVC Cameras may be supported depending on Vehicle and ground station version.",
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    "type":             "string",
    "defaultValue":     ""
},
{
    "name":             "VideoUDPPort",
    "shortDescription": "Video UDP Port",
    "longDescription":  "UDP port to bind to for video stream.",
    "type":             "uint16",
    "min":              1025,
    "defaultValue":     5600
},
{
    "name":             "VideoRTSPUrl",
    "shortDescription": "Video RTSP Url",
    "longDescription":  "RTSP url address and port to bind to for video stream. Example: rtsp://192.168.42.1:554/live",
    "type":             "string",
    "defaultValue":     ""
},
{
    "name":             "VideoSavePath",
    "shortDescription": "Video save directory",
    "longDescription":  "Directory to save videos to.",
    "type":             "string",
    "defaultValue":     ""
30 31 32 33 34 35 36 37
},
{
    "name":             "VideoAspectRatio",
    "shortDescription": "Video Aspect Ratio",
    "longDescription":  "Video Aspect Ratio (width / height). Use 0.0 to ignore it.",
    "type":             "float",
    "decimalPlaces":    6,
    "defaultValue":     1.777777
38 39 40 41
},
{
    "name":             "VideoGridLines",
    "shortDescription": "Video Grid Lines",
Patrick José Pereira's avatar
Patrick José Pereira committed
42
    "longDescription":  "Displays a grid overlaid over the video view.",
43 44 45 46
    "type":             "uint32",
    "enumStrings":      "Hide,Show",
    "enumValues":       "1,0",
    "defaultValue":     0
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
},
{
    "name":             "ShowRecControl",
    "shortDescription": "Show Video Record Control",
    "longDescription":  "Show recording control in the UI.",
    "type":             "bool",
    "defaultValue":     true
},
{
    "name":             "RecordingFormat",
    "shortDescription": "Video Recording Format",
    "longDescription":  "Video recording file format.",
    "type":             "uint32",
    "enumStrings":      "mkv,mov,mp4",
    "enumValues":       "0,1,2",
    "defaultValue":     0
},
{
    "name":             "MaxVideoSize",
    "shortDescription": "Max Video Storage Usage",
    "longDescription":  "Maximum amount of disk space used by video recording.",
    "type":             "uint32",
    "min":              100,
    "units":            "MB",
    "defaultValue":     2024
72 73
}
]