-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.yml
43 lines (32 loc) · 1.06 KB
/
example.yml
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
# Example showing all config options
# Remove everything not needed before using.
# Set to true to enable debugging
debug: false
# Specify a single receiver
receiver:
# Run a TCP server for NESTrisOCR.
# Expects to receive frames from https://github.com/alex-ong/NESTrisOCR
ocr_server:
port: 3338
# Replay a file containing saved frames
local_file:
filename: example.bframes
# Extract frames from a packet capture. This option was most likely only useful for development.
packet_capture:
filename: fceux_connector_capture.pcap
dst: 192.168.100.100
length: 71
# Specify 1 or more senders
senders:
websockets:
# # Remote server, secure
- uri: wss://nestrischamps.io/ws/room/producer/<get from your settings page>
# # Local setup, unsecure
- uri: ws://192.168.100.100:5000/ws/room/producer/PLAYER1
# Local setup using self signed cert
- uri: wss://192.168.100.100:5000/ws/room/producer/PLAYER1
no_verify: true
# Specify optional local_file
local_file:
filename: example.bframes
overwrite: true