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 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
[rtpengine-recording]
table = 0
### number of worker threads (default 8)
# num-threads = 16
### where to forward to (unix socket)
# forward-to = /run/rtpengine/sock
### where to store recordings: file (default), db, memory, s3, gcs
# output-storage = db;memory;s3
### format of stored recordings: wav (default), mp3
# output-format = mp3
### directory containing rtpengine metadata files
# spool-dir = /var/spool/rtpengine
### where to store media files to
# output-dir = /var/lib/rtpengine-recording
### file name pattern for output files
# output-pattern = %c-%t
### resample all output audio
# resample-to = 8000
### bits per second for MP3 encoding
# mp3-bitrate = 24000
### mix participating sources into a single output
# output-mixed = true
### maximum number of inputs for mixed output
# mix-num-inputs = 4
### create one output file for each source
# output-single = true
### flush output to disk after each packet
# flush-packets = true
### TCP/TLS output of PCM audio
# tcp-send-to = 10.4.1.7:15413
# tcp-resample = 16000
### OR
# tls-send-to = 10.4.1.7:15413
# tls-resample = 16000
### mysql configuration for db storage
# mysql-host = localhost
# mysql-port = 3306
# mysql-user = rtpengine
# mysql-pass = secret
# mysql-db = rtpengine
### ownership/permission control for output files
# output-chmod = 0640
# output-chmod-dir = 0750
# output-chown = rtpengine
# output-chgrp = rtpengine
### HTTP notifications for finished recordings
# notify-uri = https://example.com/rec/finished
# notify-post = false
# notify-no-verify = false
# notify-purge = false
# notify-concurrency = 5
# notify-retries = 10
### S3 storage options
# s3-host = examplebucket.s3.amazonaws.com
# s3-port = 0
# s3-path =
# s3-access-key = AKIAIOSFODNN7EXAMPLE
# s3-secret-key = wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
# s3-region = us-east-1
# s3-no-verify = false
### GCS storage options
# gcs-uri = https://storage.googleapis.com/upload/storage/v1/b/examplebucket/o
# gcs-key =
# gcs-service-account = /etc/rtpengine/secret-service-account.json
# gcs-scope = https://www.googleapis.com/auth/cloud-platform
# gcs-no-verify = false
|