Ad-Flow Configuration Guide
This guide covers all available configuration options for the Ad-Flow container. For AWS, configuration is done by modifying the ECS CloudFormation templates.
Core Configuration Parameters
Stream Settings
Parameter | Description | Example | Notes |
---|---|---|---|
INPUT_IP | IP address for receiving video input | "127.0.0.1" | For RTP, use 127.0.0.1 . For SRT, use source IP |
INPUT_PORT | Port number for video input | "5004" | Must match source stream port |
OUTPUT_IP | Destination IP for processed stream | "10.0.1.15" | For SRT, use "0.0.0.0" |
OUTPUT_PORT | Port number for output stream | "5005" | Must match receiver's input port |
STREAM_PROTOCOL | Streaming protocol selection | "rtp" or "srt" | Determines protocol for both input and output |
DELAY_SECONDS | Buffer duration for ad detection | "120" | Must exceed longest expected ad break |
SCTE-35 Configuration
Parameter | Description | Example | Notes |
---|---|---|---|
SCTE35_FILLER_REPEAT_SECONDS | Interval for repeating markers | "5" | Default: 5 seconds |
SCTE35_TIME_AHEAD_SECONDS | Pre-roll time for markers | "5" | Time before ad break starts |
Monitoring Settings
Parameter | Description | Example | Notes |
---|---|---|---|
METRICS_PUSH_GATEWAY | Prometheus metrics endpoint | "http://localhost:9091/metrics" | For monitoring integration |
CHANNEL_NAME | Instance identifier for metrics | "channel1" | Used in Prometheus/Grafana |
SRT-Specific Configuration
Parameter | Description | Example | Notes |
---|---|---|---|
INPUT_SRT_STREAMID | Stream identifier for input | "stream1" | Optional |
INPUT_SRT_PASSPHRASE | Input stream encryption key | "secretkey" | Optional |
OUTPUT_SRT_STREAMID | Stream identifier for output | "stream1_out" | Optional |
OUTPUT_SRT_PASSPHRASE | Output stream encryption key | "secretkey" | Optional |
Advanced Settings
Scheduling
Parameter | Description | Example | Notes |
---|---|---|---|
SHUTDOWN_SCHEDULE | Automatic shutdown timing | "02:30 1,2,3,4,5" | Format: "HH:mm [days]" (UTC) |
Debug Options
Parameter | Description | Default | Notes |
---|---|---|---|
EXTRA_LOG | Enhanced logging | "0" | Set to "1" to enable |
About Input/Output port modification
When modifying INPUT_PORT or OUTPUT_PORT, you must also modify the inbound rules in your Security Group. This is done for example in the CloudFormation templates.
For RTP, the security group must allow the INPUT_PORT as an inbound rule.
For SRT, the security group must allow the OUTPUT_PORT as an inbound rule.
Example Configuration
Basic RTP Setup
Parameter | Value |
---|---|
INPUT_IP | 127.0.0.1 |
INPUT_PORT | 5004 |
OUTPUT_IP | 10.0.1.15 (IP of video encoder's RTP input) |
OUTPUT_PORT | 5005 (port number of video encoder's RTP input) |
STREAM_PROTOCOL | rtp |
DELAY_SECONDS | 120 |
METRICS_PUSH_GATEWAY | http://localhost:9091/metrics |
CHANNEL_NAME | channel1 |
SRT with Security
Parameter | Value |
---|---|
INPUT_IP | 11.22.33.44 (IP of SRT source) |
INPUT_PORT | 5004 |
OUTPUT_IP | 0.0.0.0 |
OUTPUT_PORT | 5005 |
STREAM_PROTOCOL | srt |
DELAY_SECONDS | 120 |
INPUT_SRT_STREAMID | stream1 |
INPUT_SRT_PASSPHRASE | secretkey |
OUTPUT_SRT_STREAMID | stream1_out |
OUTPUT_SRT_PASSPHRASE | secretkey |
METRICS_PUSH_GATEWAY | http://localhost:9091/metrics |
CHANNEL_NAME | channel1_srt |
Configuration Best Practices
-
Stream Delay
- Set
DELAY_SECONDS
to accommodate your longest expected ad break - Consider adding a buffer of 15-30 seconds to the expected maximum
- Set
-
Security
- For RTP, use appropriate firewall rules
- For SRT, always use passphrases in production
- Restrict access using security groups
-
Monitoring
- Always set a unique
CHANNEL_NAME
- Enable
EXTRA_LOG
during initial setup - Monitor Grafana dashboards regularly
- Always set a unique
-
Network Configuration
- Use elastic IPs where possible
- Configure appropriate network security groups
- Test connectivity before deployment