-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathequipment_dict.py
46 lines (38 loc) · 958 Bytes
/
equipment_dict.py
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
#!/usr/bin/env python3
def equipment_dict():
"""
VTRs
"""
panasonic_ag1980 = {
"Coding Algorithm": "A=ANALOG",
"Output is one of": ["Composite", "S-Video"],
}
"""
TBCs
"""
dps_295 = {
"Coding Algorithm": "A=ANALOG",
"Hardware Type": "TBC",
"Output is one of": ["Composite", "S-Video", "Component"],
}
fa_510 = {
"Coding Algorithm": "A=ANALOG",
"Hardware Type": "TBC",
"Output is one of": ["Composite", "S-Video", "Component"],
}
"""
ADCs
"""
hd10ava = {"Coding Algorithm": "A=SDI", "Hardware Type": "A/D"}
"""
Capture Cards
"""
kona1 = {"Coding Algorithm": "A=v210", "Hardware Type": "DIO"}
equipment_dict = {
"Panasonic AG-1980P": panasonic_ag1980,
"DPS-295": dps_295,
"FA-510": fa_510,
"HD10AVA": hd10ava,
"Kona-1-T-R0": kona1,
}
return equipment_dict