-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNvidiaBroadcastConfig.cs
More file actions
36 lines (32 loc) · 888 Bytes
/
NvidiaBroadcastConfig.cs
File metadata and controls
36 lines (32 loc) · 888 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace com.zaphop.nvidiabroadcast
{
public class Effect
{
public string Name { get; set; }
public bool PerfModeEnabled { get; set; }
}
public class NvidiaBroadcastConfig
{
public RTXCamera RTXCamera { get; set; }
}
public class RTXCamera
{
public List<Stream> Streams { get; set; }
}
public class Stream
{
public List<Effect> Effect { get; set; }
public string Input { get; set; }
public int InputFpsDenominator { get; set; }
public int InputFpsNumerator { get; set; }
public int InputHeight { get; set; }
public string InputType { get; set; }
public int InputWidth { get; set; }
public string Layer { get; set; }
}
}