RTPENGINE module
Admin Guide
Section titled “Admin Guide”Overview
Section titled “Overview”This is a module that enables media streams to be proxied via an RTP proxy. The only RTP proxy currently known to work with this module is the Sipwise rtpengine https://github.com/sipwise/rtpengine. The rtpengine module is a modified version of the original rtpproxy module using a new control protocol. The module is designed to be a drop-in replacement for the old module from a configuration file point of view, however due to the incompatible control protocol, it only works with RTP proxies which specifically support it.
Multiple RTP proxy usage
Section titled “Multiple RTP proxy usage”The rtpengine module can support multiple RTP proxies for balancing/distribution and control/selection purposes.
The module allows definition of several sets of rtpengines. Load-balancing will be performed over a set and the admin has the ability to choose what set should be used. The set is selected via its id - the id being defined with the set. Refer to the “rtpengine sock” module parameter definition for syntax description.
The balancing inside a set is done automatically by the module based on the weight of each RTP proxy from the set.
The selection of the set is done from script prior using rtpengine_delete(), rtpengine_offer() or rtpengine_answer() functions - see the rtpengine_use_set() function.
Another way to select the set is to define setid_avp module parameter and assign setid to the defined avp before calling rtpengine_offer() or rtpengine_manage() function. If forwarding of the requests fails and there is another branch to try, remember to unset the avp after calling rtpengine_delete() function.
For backward compatibility reasons, a set with no id take by default the id 0. Also if no set is explicitly set before rtpengine_delete(), rtpengine_offer() or rtpengine_answer() the 0 id set will be used.
The module is able to failover to a new node within a set, if a chosen one has communication issues. Moreover, it will also failover if the node returns one of the following errors:
- Parallel session limit reached
- Ran out of ports
- CPU usage limit exceeded
- Load limit exceeded
- Bandwidth limit exceeded
You can use the extra failover error parameter to extend the above list.
Many rtpengine_* functions accept a “sock_var” parameter that will be populated with the socket of the RTPEngine chosen for the particular operation. The format of the data stored in “sock_var” is: “proto:ip:port”. If the “sock_var” has been specified and it is non-NULL then it will be used to determine the specific RTPEngine to use. Note that the socket specified by “sock_var” must be a member of the current RTPEngine Set context.
Dependencies
Section titled “Dependencies”OpenSIPS Modules
Section titled “OpenSIPS Modules”The following modules must be loaded before this module:
- tm module - (optional) if you want to have rtpengine_manage() fully functional
External Libraries or Applications
Section titled “External Libraries or Applications”The following libraries or applications must be installed before running OpenSIPS with this module loaded:
- None.
Exported Parameters
Section titled “Exported Parameters”rtpengine_sock (string)
Section titled “rtpengine_sock (string)”Definition of socket(s) used to connect to (a set) RTP proxy. It may specify a UNIX socket or an IPv4/IPv6 UDP socket. If the protocol part (i.e. “udp:”) is missing, the socket is treated as a UNIX socket.
Default value is “NONE” (disabled).
...# single rtproxymodparam("rtpengine", "rtpengine_sock", "udp:localhost:12221")# multiple rtproxies for LBmodparam("rtpengine", "rtpengine_sock", "udp:localhost:12221 udp:localhost:12222")# multiple sets of multiple rtproxiesmodparam("rtpengine", "rtpengine_sock", "1 == udp:localhost:12221 udp:localhost:12222")modparam("rtpengine", "rtpengine_sock", "2 == udp:localhost:12225")...rtpengine_disable_tout (integer)
Section titled “rtpengine_disable_tout (integer)”Once an RTP proxy was found unreachable and marked as disabled, the rtpengine module will not attempt to establish communication to that RTP proxy for rtpengine_disable_tout seconds.
Default value is “60”.
...modparam("rtpengine", "rtpengine_disable_tout", 20)...rtpengine_tout (integer)
Section titled “rtpengine_tout (integer)”Timeout value in waiting for reply from RTP proxy.
Default value is “1”.
...modparam("rtpengine", "rtpengine_tout", 2)...rtpengine_retr (integer)
Section titled “rtpengine_retr (integer)”How many times the module should retry to send and receive after timeout was generated.
Default value is “5”.
...modparam("rtpengine", "rtpengine_retr", 2)...rtpengine_timer_interval (integer)
Section titled “rtpengine_timer_interval (integer)”Frequency to scan rtpengine sets for disabled node probing. Probing is done outside the SIP processing context and in a separate timer routine. Disabled nodes are probed for re-enablement after rtpengine_disable_tout seconds. Setting this value too high can lead to unexpectedly large disabled interval as the max interval before probing is (rtpengine_timer_interval + rtpengine_disable_tout) seconds.
Default value is “5”.
...modparam("rtpengine", "rtpengine_timer_interval", 1)...notification_sock (string)
Section titled “notification_sock (string)”An UDP socket formatted as IP:port that indicates the listening IP and port OpenSIPS will bind for to receive notifications (such as DTMF events) from RTPengine.
Every notification received from RTPengine will trigger an E_RTPENGINE_NOTIFICATION event.
Default value is “none” - notifications are ignored.
...modparam("rtpengine", "notification_sock", "127.0.0.1:9999")...extra_id_pv (string)
Section titled “extra_id_pv (string)”The parameter sets the PV definition to use when the “via-branch=extra” option is used on the rtpengine_delete(), rtpengine_offer(), rtpengine_answer() or rtpengine_manage() commands.
Default is empty, the “via-branch=extra” option may not be used then.
...modparam("rtpengine", "extra_id_pv", "$avp(extra_id)")...setid_avp (string)
Section titled “setid_avp (string)”The parameter defines an AVP that, if set, determines which RTP proxy set rtpengine_offer(), rtpengine_answer(), rtpengine_delete(), and rtpengine_manage() functions use.
There is no default value.
...modparam("rtpengine", "setid_avp", "$avp(setid)")...error_pv (string)
Section titled “error_pv (string)”The parameter defines a variable that shall be populated by RTP when one of the rtpengine_* functions fail.
There is no default value.
...modparam("rtpengine", "error_pv", "$var(rtpengine_error)")...db_url (string)
Section titled “db_url (string)”Database URL, used to load RTPEngines sockets from db, instead of specifying them in the script (rtpengine sock module parameter).
Default value is “NULL”, no database is used.
...modparam("rtpengine", "db_url", "mysql://opensips:opensipsrw@localhost/opensips")...db_table (string)
Section titled “db_table (string)”The table where the RTPEngines sockets are stored. Used when Database URL is provisioned.
Default value is “rtpengine”.
...modparam("rtpengine", "db_table", "rtpengine_new")...socket_column (string)
Section titled “socket_column (string)”The name of the rtpengine socket column in the database table.
Default value is “socket”.
...modparam("rtpengine", "socket_column", "sock")...set_column (string)
Section titled “set_column (string)”The name of the rtpengine set column in the database table.
Default value is “set_id”.
...modparam("rtpengine", "set_column", "set_new")...ping_enabled (integer)
Section titled “ping_enabled (integer)”This parameter indicates whether probing should be done for enabled nodes as well.
If this parameter is set, each enabled node is pinged every rtpengine timer interval seconds, unless there was any communication with the node since the previous interval.
Default value is “0” (disabled).
...modparam("rtpengine", "ping_enabled", yes)...Exported Functions
Section titled “Exported Functions”rtpengine_use_set(setid)
Section titled “rtpengine_use_set(setid)”Sets the ID of the RTP proxy set to be used for the next rtpengine_delete(), rtpengine_offer(), rtpengine_answer() or rtpengine_manage() command. The parameter is an integer.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, BRANCH_ROUTE.
...rtpengine_use_set(2);rtpengine_offer();...rtpengine_offer([flags[, sock_var[, sdp_pvar[, body]]]])
Section titled “rtpengine_offer([flags[, sock_var[, sdp_pvar[, body]]]])”Rewrites SDP body to ensure that media is passed through an RTP proxy. To be invoked on INVITE for the cases the SDPs are in INVITE and 200 OK and on 200 OK when SDPs are in 200 OK and ACK.
Meaning of the parameters is as follows:
-
flags(string, optional) - flags to turn on some features. The “flags” string is a list of space-separated items. Each item is either an individual token, or a token in “key=value” format. The possible tokens are described below. When passing an option that OpenSIPS is not aware of, it will be blindly sent to the rtpengine daemon to be processed. Values can also use bracket syntax to pass structured data (lists and dictionaries) to the RTP daemon. This enables features of the rtpengine ng protocol that require nested parameters, such as sdp-media-remove, codec, and sdp-attr. A value enclosed in square brackets (”[…]”) is parsed as a list of space-separated items. If any item at the top level inside the brackets contains an equals sign (”=”), the entire value is parsed as a dictionary of key=value pairs instead. Brackets can be nested to build the multi-level structures that certain rtpengine parameters expect. The bracket syntax is parsed module-side and converted to native bencode list and dictionary structures before being sent to the RTP daemon. This works with all rtpengine daemon versions and does not require any special daemon configuration. The legacy prefix-style codec flags (transcode-CODEC, codec-strip-CODEC, codec-mask-CODEC) continue to work as before and are sent as flag strings. Do not mix prefix-style and bracket-style codec flags in the same call, as they are processed independently and may produce unexpected results. Values inside brackets that need to contain literal spaces or equals signs can use escape sequences: ”..” (double dot) is unescaped to a space character, and ”—” (double dash) is unescaped to an equals sign. Single dots and single dashes are passed through unchanged. This convention matches the rtpengine daemon’s own escape handling. Nesting is limited to 8 levels of depth and individual bracket values are limited to 4096 bytes. These limits are sufficient for all documented rtpengine use cases.
- via-branch=… - Include the “branch” value of one of the “Via” headers in the request to the RTP proxy. Possible values are: “1” - use the first “Via” header; “2” - use the second “Via” header; “auto” - use the first “Via” header if this is a request, or the second one if this is a reply; “extra” - don’t take the value from a header, but instead use the value of the “extra id pv” variable. This can be used to create one media session per branch on the RTP proxy. When sending a subsequent “delete” command to the RTP proxy, you can then stop just the session for a specific branch when passing the flag ‘1’ or ‘2’ in the “rtpengine_delete”, or stop all sessions for a call when not passing one of those two flags there. This is especially useful if you have serially forked call scenarios where the RTP proxy gets an “offer” command for a new branch, and then a “delete” command for the previous branch, which would otherwise delete the full call, breaking the subsequent “answer” for the new branch. This flag is only supported by the Sipwise rtpengine RTP proxy at the moment!
- via-branch-param=… - provide a custom value for the via-branch param.
- call-id - provide a custom Call-ID for the session. If missing, the Call-Id of the request/reply is used.
- from-tag - provide a custom from-tag for the session. If missing, the from-tag request is used.
- to-tag - provide a custom to-tag of the session. If missing, the to-tag of the request/reply is used, is present.
- asymmetric - flags that UA from which message is received doesn’t support symmetric RTP. (automatically sets the ‘r’ flag)
- force-answer - force “answer”, that is, only rewrite SDP when corresponding session already exists in the RTP proxy. By default is on when the session is to be completed.
- in-iface=…, out-iface=… - these flags specify the direction the SIP message. These flags only make sense when the RTP proxy is running in bridge mode. “in-iface” should indicate the proxy’s inbound interface, and “out-iface” corresponds to the RTP proxy’s outbound interface. You always have to specify two flags to define the incoming network and the outgoing network. For example, “in-iface=internal out-iface=external” should be used for SIP message received from the local interface and sent out on the external interface.
- internal, external - these the old flags used to specify the direction of call. They are now obsolate, being replaced by the “in-iface=internal out-iface=external” configuration.
- auto-bridge - this flag an alternative to the “internal” and “external” flags in order to do automatic bridging between IPv4 on the “internal network” and IPv6 on the “external network”. Instead of explicitly instructing the RTP proxy to select a particular address family, the distinction is done by the given IP in the SDP body by the RTP proxy itself. Not supported by Sipwise rtpengine.
- address-family=… - instructs the RTP proxy that the recipient of this SDP body expects to see addresses of a particular family. Possible values are “IP4” and “IP6”. For example, if the SDP body contains IPv4 addresses but the recipient only speaks IPv6, you would use “address-family=IP6” to bridge between the two address families. Sipwise rtpengine remembers the address family preference of each party after it has seen an SDP body from them. This means that normally it is only necessary to explicitly specify the address family in the “offer”, but not in the “answer”. Note: Please note, that this will only work properly with non-dual-stack user-agents or with dual-stack clients according to RFC6157 (which suggest ICE for Dual-Stack implementations). This short-cut will not work properly with RFC4091 (ANAT) compatible clients, which suggests having different m-lines with different IP-protocols grouped together.
- received-from=… - sets the address from which SIP packet with SDP received. This flag always set automatically, don’t use it until you have a reason for that.
- force - instructs the RTP proxy to ignore marks inserted by another RTP proxy in transit to indicate that the session is already goes through another proxy. Allows creating a chain of proxies. Not supported and ignored by Sipwise rtpengine.
- trust-address - flags that IP address in SDP should be trusted. Without this flag, the RTP proxy ignores address in the SDP and uses source address of the SIP message as media address which is passed to the RTP proxy. From rtpengine 3.8 this is the default behaviour.
- SIP-source-address - the opposite of trust-address. Restores the old default behaviour of ignoring endppoint of the addresses in the SDP body.
- replace-origin - flags that IP from the origin description (o=) should be also changed.
- replace-session-connection - flags to change the session-level SDP connection (c=) IP if media description also includes connection information.
- replace-zero-address - flags to replace zero address with real address. Using a zero endpoint address is an obsolete way to signal a muted or sendonly stream. Streams with zero addresses are normally flagged as sendonly and the zero address in the SDP is passed through.
- symmetric - flags that for the UA from which message is received, support symmetric RTP must be forced. You do not need to explicitly specify this value, as it is the default, and the behavior is only changed when the asymmetric is used.
- repacketize=NN - requests the RTP proxy to perform re-packetization of RTP traffic coming from the UA which has sent the current message to increase or decrease payload size per each RTP packet forwarded if possible. The NN is the target payload size in ms, for the most codecs its value should be in 10ms increments, however for some codecs the increment could differ (e.g. 30ms for GSM or 20ms for G.723). The RTP proxy would select the closest value supported by the codec. This feature could be used for significantly reducing bandwith overhead for low bitrate codecs, for example with G.729 going from 10ms to 100ms saves two thirds of the network bandwith. Not supported by Sipwise rtpengine.
- loop-protect - flag that instructs RTP to avoid rewriting the SDP when looping the same message.
- ICE=… - controls the RTP proxy’s behaviour regarding ICE attributes within the SDP body. Possible values are: “force” - discard any ICE attributes already present in the SDP body and then generate and insert new ICE data, leaving itself as the only ICE candidates; “remove” instructs the RTP proxy to discard any ICE attributes and not insert any new ones into the SDP. The default (if no “ICE=…” is given at all), new ICE data will only be generated if no ICE was present in the SDP originally; otherwise the RTP proxy will only insert itself as an additional ICE candidate. Other SDP substitutions (c=, m=, etc) are unaffected by this flag.
- RTP, SRTP, AVP, AVPF - These flags control the RTP transport protocol that should be used towards the recipient of the SDP. If none of them are specified, the protocol given in the SDP is left untouched. Otherwise, the “SRTP” flag indicates that SRTP should be used, while “RTP” indicates that SRTP should not be used. “AVPF” indicates that the advanced RTCP profile with feedback messages should be used, and “AVP” indicates that the regular RTCP profile should be used. See also the next set of flags below.
- RTP/AVP, RTP/SAVP, RTP/AVPF, RTP/SAVPF - these serve as an alternative, more explicit way to select between the different RTP protocols and profiles supported by the RTP proxy. For example, giving the flag “RTP/SAVPF” has the same effect as giving the two flags “SRTP AVPF”.
- to-tag - force inclusion of the “To” tag. Normally, the “To” tag is always included when present, except for “delete” messages. Including the “To” tag in a “delete” messages allows you to be more selective about which dialogues within a call are being torn down.
- to-tag=… - use the specified string as “To” tag instead of the actual “To” tag from the SIP message, and force inclusion of the tag in the message as per above.
- from-tag=… - use the specified string as “From” tag instead of the actual “From” tag from the SIP message.
- call-id=… - use the specified string as “Call-ID” instead of the actual “Call-ID” from the SIP message.
- rtcp-mux-demux - if rtcp-mux (RFC 5761) was offered, make the RTP proxy accept the offer, but not offer it to the recipient of this message.
- rtcp-mux-reject - if rtcp-mux was offered, make the RTP proxy reject the offer, but still offer it to the recipient. Can be combined with “rtcp-mux-offer” to always offer it.
- rtcp-mux-offer - make the RTP proxy offer rtcp-mux to the recipient of this message, regardless of whether it was offered originally or not.
- rtcp-mux-require - Similar to offer but pretends that the client has accepted rtcp-mux. This breaks RFC 5761 and will not advertise seperate RTCP ports. This option is necessary for WebRTC clients.
- rtcp-mux-accept - if rtcp-mux was offered, make the RTP proxy accept the offer and also offer it to the recipient of this message. Can be combined with “rtcp-mux-offer” to always offer it.
- media-address=… - force a particular media address to be used in the SDP body. Address family is detected automatically.
- record-call=yes/no - indicates whether rtpengine should record the call or not. When using this parameter, you may pass further information in the “metadata”.
- transcode-CODEC - used only for offer, indicates that rtpengine should transcode the CODEC towards the B-side. Example: transcode-PCMA will present to the B-side the PCMA codec.
- codec-strip-CODEC - used only for offer, indicates that the A-side of the call will not end up talking CODEC. Example: codec-strip-PCMA will prevent the A-side from receiving the PCMA codec.
- codec-mask-CODEC - used only for offer, indicates that the A-side will use the CODEC, but it will not be presented to the B-side. Example: codec-mask-PCMA will make the A-side receive the PCMA codec, but B-side will use something else.
-
sock_var(var, optional) - variable used to store the rtpengine socket chosen for this call.
-
sdp_var(var, optional) - variable used to store the full SDP received from rtpengine. You can perform any additional changes on this string. Important: when providing this variable, the message body is no longer changed, so you have to manually replace it!.
-
body(string, optional) - used to provide a specific body to the rtpengine_* function. If this parameter is missing the body of the current message is used.
This function can be used from ALL_ROUTES.
route {... if (is_method("INVITE")) { if (has_body("application/sdp")) { if (rtpengine_offer()) t_on_reply("1"); } else { t_on_reply("2"); } } if (is_method("ACK") && has_body("application/sdp")) rtpengine_answer();...}
onreply_route[1]{... if (has_body("application/sdp")) rtpengine_answer();...}
onreply_route[2]{... if (has_body("application/sdp")) rtpengine_offer();...}...if (rtpengine_offer(, $var(socket), $var(body), $rb)) { xlog("Used rtpengine $var(socket)\n"); # make all the changes on the resulted SDP in $var(body) ... remove_body_part(); add_body_part($var(body), "application/sdp");}......$var(rtpengine_flags) = $var(rtpengine_flags) + " record-call=yes";
$json(recording_keys) := "{}";$json(recording_keys/callId) = $ci;$json(recording_keys/fromUser) = $dlg_val(recording_from_user);$json(recording_keys/fromDomain) = $dlg_val(recording_from_domain);$json(recording_keys/fromTag) = $dlg_val(recording_from_tag);$json(recording_keys/toUser) = $dlg_val(recording_to_user);$json(recording_keys/toDomain) = $dlg_val(recording_to_domain);
$var(rtpengine_flags) = $var(rtpengine_flags) + " metadata=" + $(json(recording_keys){s.encode.hexa});rtpengine_offer($var(rtpengine_flags));......# Goal: make A-side talk PCMA and B-side talk opus# * do not present PCMA to B-side: codec-mask-PCMA, but use it on A-side# * do not use opus for A-side: codec-strip-opus# * offer opus to B-side: transcode-opusrtpengine_offer("... codec-mask-PCMA codec-strip-opus transcode-opus ...");......# Remove video and message media streams from the SDP# (sdp-media-remove expects a list of media types)rtpengine_offer("sdp-media-remove=[video message image]");
# Codec manipulation using bracket syntax# (codec expects a dictionary with sub-keys: transcode, strip, accept, etc.)rtpengine_offer("codec=[transcode=[PCMA PCMU] accept=[AMR-WB AMR] strip=[EVS]]");
# Bracket syntax can be mixed with regular flags in the same callrtpengine_offer("trust-address replace-origin ICE=remove codec=[transcode=[PCMA]]");
# SDP attribute manipulation with escape sequences# '..' becomes a space, '--' becomes an equals sign# This adds the SDP attribute "fmtp:96 useinbandfec=1" to audio streamsrtpengine_offer("sdp-attr=[audio=[add=[fmtp:96..useinbandfec--1]]]");...extra_failover_error (string)
Section titled “extra_failover_error (string)”Contains a (XDB) regular expression that can be used to match an error received from a RTPEngine node. If matched the module tries to use a new node to handle the affected command.
This parameter can be used to extend the list (see failover of errors the module implicitely fails over.
Default value is empty, no extra errors are being used.
...modparam("rtpengine", "extra_failover_error", "Parallel session limit reached")...rtpengine_answer([flags[, sock_pvar[, sdp_pvar[, body]]]])
Section titled “rtpengine_answer([flags[, sock_pvar[, sdp_pvar[, body]]]])”Rewrites SDP body to ensure that media is passed through an RTP proxy. To be invoked on 200 OK for the cases the SDPs are in INVITE and 200 OK and on ACK when SDPs are in 200 OK and ACK.
See rtpengine_offer() function description above for the meaning of the parameters.
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE, FAILURE_ROUTE, BRANCH_ROUTE.
See rtpengine_offer() function example above for examples.
rtpengine_delete([flags[, sock_var]])
Section titled “rtpengine_delete([flags[, sock_var]])”Tears down the RTPEngine session for the current call.
See rtpengine_offer() function description above for the meaning of the parameters. Note that not all flags make sense for a “delete”.
This function can be used from ALL_ROUTES.
...rtpengine_delete();...rtpengine_manage([flags[, sock_var[, sdp_var[, body]]]])
Section titled “rtpengine_manage([flags[, sock_var[, sdp_var[, body]]]])”Manage the RTPEngine session - it combines the functionality of rtpengine_offer(), rtpengine_answer() and rtpengine_delete(), detecting internally based on message type and method which one to execute.
It can take the same parameters as rtpengine_offer().
The flags parameter to rtpengine_manage() can be a configuration variable
containing the flags as a string.
Functionality:
- If INVITE with SDP, then do
rtpengine_offer() - If ACK with SDP, then do
rtpengine_answer() - If BYE or CANCEL, or called within a FAILURE_ROUTE[], then do
rtpengine_delete() - If reply to INVITE with code >= 300 do
rtpengine_delete() - If reply with SDP to INVITE having code 1xx and 2xx, then
do
rtpengine_answer()if the request had SDP or tm is not loaded, otherwise dortpengine_offer()
This function can be used from ALL_ROUTES.
...rtpengine_manage();...rtpengine_start_recording([flags [, sock_var]])
Section titled “rtpengine_start_recording([flags [, sock_var]])”This function will send a signal to the RTP proxy to record the RTP stream on the RTP proxy.
Meaning of the parameters is as follows:
- flags(string, optional) - flags used to change the behavior of the recorder. An importat value to set is the call-id value, which can be used to start recording a different call than the requested one.
- sock_var(var, optional) - variable used to store the rtpengine socket chosen for this call.
This function can be used from any route.
...rtpengine_start_recording();...rtpengine_stop_recording([flags [, sock_var]])
Section titled “rtpengine_stop_recording([flags [, sock_var]])”This function will send a signal to the RTP proxy to stop recording the RTP stream on the RTP proxy.
Meaning of the parameters is as follows:
- flags(string, optional) - flags used to change the behavior of the recorder. An importat value to set is the call-id value, which can be used to start recording a different call than the requested one.
- sock_var(var, optional) - variable used to store the rtpengine socket chosen for this call.
This function can be used from any route.
...rtpengine_stop_recording();...rtpengine_pause_recording([flags [, sock_var]])
Section titled “rtpengine_pause_recording([flags [, sock_var]])”This function will send a signal to the RTP proxy to pause recording the RTP stream on the RTP proxy. Identical to stop recording except that it instructs the recording daemon not to close the recording file, but instead leave it open so that recording can later be resumed via another start recording message.
Meaning of the parameters is as follows:
- flags(string, optional) - flags used to change the behavior of the recorder. An importat value to set is the call-id value, which can be used to start recording a different call than the requested one.
- sock_var(var, optional) - variable used to store the rtpengine socket chosen for this call.
This function can be used from any route.
...rtpengine_stop_recording();...rtpengine_play_media(flags, [duration_spec[, sock_var[, sockvar]]])
Section titled “rtpengine_play_media(flags, [duration_spec[, sock_var[, sockvar]]])”This function will start playing a media file to one of the endpoints.
Meaning of the parameters is as follows:
- flags(string) - a list of flags similar to the other functions. One of the file, blob or db-id parameters is mandatory to indicate the content of the media file to be played. file is a common choice for specifying rtpengine to get media from a file path, blob to take the content from an inline string and db-id to get the content from the database. The direction of the media stream is controlled by the from-tag parameter, address (media address from the SDP), or label, if the media stream contains a label. If all of them are missing, the media file is played to the initiator of the SIP request, and will work similar to a ringback tone.
- duration_spec(var, optional) - a pseudo variable that will contain the duration of the played file. It will be set to -1 if the duration could not be determined.
- sock_var(var, optional) - variable used to store the rtpengine socket chosen for this call.
This function can be used from any route.
...if (is_method("INVITE") && !has_totag()) rtpengine_play_media("file=/path/to/ringback_tone_file.wav");......if (is_method("INVITE") && has_totag()) { if (is_audio_on_hold()) { $dlg_val(on_hold) = "1"; rtpengine_play_media("from-tag=$tt file=/path/to/moh_file.wav"); } else if ($dlg_val(on_hold) == "1") { $dlg_val(on_hold) = "0"; rtpengine_stop_media("from-tag=$tt"); }}...rtpengine_stop_media(flags[, [sock_var[, sockvar]], [last_frame_pos]])
Section titled “rtpengine_stop_media(flags[, [sock_var[, sockvar]], [last_frame_pos]])”This function will stop playing a media file previously started
by a rtpengine_play_media() call. The meaning
of its parameters is similar to the previous functions. Note that this
function should be called with similar parameters as its matching
rtpengine_play_media() call, otherwise
RTPEngine will not be able to stop media playing.
Meaning of the parameters is as follows:
- flags(string) - a list of flags similar to the other functions.
- last_frame_pos(var, optional) - a pseudo variable that will contain the last frame played of the file.
This function can be used from any route.
...if (is_method("INVITE") && $rs == 200) rtpengine_stop_media();......if (is_method("INVITE") && has_totag()) { if (is_audio_on_hold()) { $dlg_val(on_hold = "1"; rtpengine_play_media("from-tag=$tt start-pos=$avp(last_frame_pos) file=/path/to/moh_file.wav"); } else if ($dlg_val(on_hold) == "1") { rtpengine_stop_media("from-tag=$tt", , $avp(last_frame_pos)); $dlg_val(on_hold = "0"); }} rtpengine_stop_media();...rtpengine_block_media([flags[, sockvar]])
Section titled “rtpengine_block_media([flags[, sockvar]])”This function will block the media sent from one of the endpoints. The direction to be blocked is controled by the flags parameter, the from-tag value.
This function can be used from any route.
...rtpengine_block_media();...rtpengine_unblock_media([flags[, sockvar]])
Section titled “rtpengine_unblock_media([flags[, sockvar]])”This function will resume/unblock the media sent from one of the endpoints. The direction to be blocked is controled by the flags parameter, the from-tag value.
This function can be used from any route.
...rtpengine_unblock_media();...rtpengine_block_dtmf([flags[, sockvar]])
Section titled “rtpengine_block_dtmf([flags[, sockvar]])”This function will block the DTMF media sent from one of the endpoints. The direction to be blocked is controled by the flags parameter, the from-tag value.
This function can be used from any route.
...rtpengine_block_dtmf();...rtpengine_unblock_dtmf([flags[, sockvar]])
Section titled “rtpengine_unblock_dtmf([flags[, sockvar]])”This function will resume/unblock the DTMF media sent from one of the endpoints. The direction to be blocked is controled by the flags parameter, the from-tag value.
This function can be used from any route.
...rtpengine_unblock_dtmf();...rtpengine_start_forwarding([flags[, sockvar]])
Section titled “rtpengine_start_forwarding([flags[, sockvar]])”This function will start forwarding the media to a TLS destination specified in the tls-send-to parmeter of RTPEngine. This function allows you to select the media stream to forward, by specifing the from-tag of the entity you want to forward the media. If missing, all media streams are forwarded.
This function can be used from any route.
...rtpengine_start_forwarding();...rtpengine_stop_forwarding([flags[, sockvar]])
Section titled “rtpengine_stop_forwarding([flags[, sockvar]])”This function will stop forwarding of the media previously started using the rtpengine_start_forwarding() function.
This function can be used from any route.
...rtpengine_stop_forwarding();...rtpengine_play_dtmf(code, [flags[, sockvar]])
Section titled “rtpengine_play_dtmf(code, [flags[, sockvar]])”This function instructs RTP to send the DTMF code to the participant of the call. The code can be a digit (“0-9”) or a special character (one of ”*,#,A,B,C,D”). Additional parameters can be configured using the flags parameter. For more information, please consult the RTP documentation.
This function can be used to convert SIP INFO DTMF keys to RTP DTMF.
This function can be used from any route.
...rtpengine_play_dtmf("0"); # send the 0 code upstream...Exported Asynchronous Functions
Section titled “Exported Asynchronous Functions”rtpengine_offer([flags[, sock_pvar[, sdp_pvar[, body]]]])
Section titled “rtpengine_offer([flags[, sock_pvar[, sdp_pvar[, body]]]])”The asynchronous flavor of the rtpengine offer function. It receives the same parameters, with the same meanings.
...if (is_method("ACK") && has_totag() && has_body_part("application/sdp")) { async(rtpengine_offer(), resume_invite);}...route[resume_invite] { t_relay();}...rtpengine_answer([flags[, sock_pvar[, sdp_pvar[, body]]]])
Section titled “rtpengine_answer([flags[, sock_pvar[, sdp_pvar[, body]]]])”The asynchronous flavor of the rtpengine answer function. It receives the same parameters, with the same meanings.
...if (is_method("ACK") && has_body_part("application/sdp")) { # late negotiation async(rtpengine_answer(), resume_ack);}...route[resume_ack] { t_relay();}...rtpengine_delete([flags[, sock_var]])
Section titled “rtpengine_delete([flags[, sock_var]])”The asynchronous flavor of the rtpengine delete function. It receives the same parameters, with the same meanings.
...if (is_method("BYE")) { launch(rtpengine_delete());}...Exported Pseudo-Variables
Section titled “Exported Pseudo-Variables”$rtpstat
Section titled “$rtpstat”Returns the RTP statistics from the RTP proxy. The RTP statistics from the RTP proxy are provided as a string and it does contain several packet counters.
... append_hf("X-RTP-Statistics: $rtpstat\r\n");...$rtpstat(STAT)[index]
Section titled “$rtpstat(STAT)[index]”Returnes one of the pre-fined statistics listed below:
- MOS-average - without an index, it returns the average MOS value, expressed in an integer between 0 and 50, of all the RTP streams involved in the call, both caller and callee. If index is specified, it has to be one of the from-tag or to-tag involved in the call. In this case, the variable will return the average MOS of all the streams generated by that endpoint with the associated tag value. If you need more granular statistics, check the $rtpquery variable.
- jitter-average - similar behavior with MOS-average, but returnes the average jitter.
- roundtrip-average - similar behavior with MOS-average, but returnes the average roundtrip.
- packetloss-average - similar behavior with MOS-average, but returnes the average packet loss.
- MOS-min - without an index, it returns the minimum MOS value (integer value between 0 and 50) of all RTP streams involved in the call, both caller and callee. If the index is specified, it has the same effect as for MOS-average.
- jitter-min - similar behavior with MOS-min, but returnes the minimum jitter of a leg/call.
- roundtrip-min - similar behavior with MOS-min, but returnes the minimum roundtrip of a leg/call.
- packetloss-min - similar behavior with MOS-min, but returnes the minimum packet loss of a leg/call.
- MOS-max - without an index, it returns the maximum MOS value (integer value between 0 and 50) of all RTP streams involved in the call, both caller and callee. If the index is specified, it has the same effect as for MOS-average.
- jitter-max - similar behavior with MOS-max, but returnes the maximum jitter of a leg/call.
- roundtrip-max - similar behavior with MOS-max, but returnes the maximum roundtrip of a leg/call.
- packetloss-max - similar behavior with MOS-max, but returnes the maximum packet loss of a leg/call.
- MOS-min-at - without an index, it returns the time in seconds elapsed from the start of the call when the MOS value is minimum. If the index is specified, it has the same effect as for MOS-average.
- jitter-min-at - similar behavior with MOS-min-at, but returnes the time when the minimum jitter was detected.
- roundtrip-min-at - similar behavior with MOS-min-at, but returnes the time when the minimum roundtrip was detected.
- packetloss-min-at - similar behavior with MOS-min-at, but returnes the time when the minimum packet loss of a leg/call was detected.
- MOS-max-at - without an index, it returns the time in seconds elapsed from the start of the call when the MOS value is maximum. If the index is specified, it has the same effect as for MOS-average.
- jitter-max-at - similar behavior with MOS-max-at, but returnes the time when the maximum value of jitter was detected.
- roundtrip-max-at - similar behavior with MOS-max-at, but returnes the time when the maximum value of roundtrip was detected.
- packetloss-min-at - similar behavior with MOS-max-at, but returnes the time when the maximum packet loss of a leg/call was detected.
... xlog("Average MOS of the entire call is $rtpstat(MOS-average)\r\n"); xlog("Average MOS of caller is $(rtpstat(MOS-average)[$ft])\r\n"); xlog("Average MOS of callee is $(rtpstat(MOS-average)[$tt])\r\n"); xlog("Min MOS of caller is $(rtpstat(MOS-min)[$ft]) reported at $(rtpstat(MOS-min-at)[$ft])\r\n");...$rtpquery
Section titled “$rtpquery”Does a Query command to the RTP proxy and returns the answer in a JSON format. You can use this variable to fetch arbitrary data from the RTP proxy such as raw statistics about the call, or other indicators.
You can use a $json() variable to parse its output and extract any information from the query, such as RTP statistics, or MOS values.
... $json(reply) := $rtpquery; xlog("Total RTP Stats: $json(reply/totals)\n");...Exported MI Functions
Section titled “Exported MI Functions”rtpengine:enable
Section titled “rtpengine:enable”Replaces obsolete MI command: rtpengine_enable.
Enables/disables a RTP proxy.
Parameters:
- url - the RTP proxy url (exactly as defined in the config file).
- rtpengine:enable - 1 - enable, 0 - disable the RTP proxy, 2 - put the RTP node in probing mode.
- setid (optional) the set ID of the nodes to be updated. If provided, only nodes in the provided set will be updated.
...## disable all rtpengines by URL$ opensips-cli -x mi rtpengine:enable udp:192.168.2.133:8081 0## enable rtpengine by URL and set ID (3)$ opensips-cli -x mi rtpengine:enable url=udp:192.168.2.133:8081 enable=1 setid=3...rtpengine:show
Section titled “rtpengine:show”Replaces obsolete MI command: rtpengine_show.
Displays all the RTP proxies and their information: set and status (disabled or not, weight and recheck_ticks).
No parameter.
...$ opensips-cli -x mi rtpengine:show...rtpengine:reload
Section titled “rtpengine:reload”Replaces obsolete MI command: rtpengine_reload.
Reloads all rtpengine sets from the database. Used only when the “db url” parameter is set.
Parameters:
- type (optional) soft - when reloading nodes from the database, reuse any existing sockets and keep existing node disabled state. If not provided, then all nodes and sockets will first be torndown and then nodes will be loaded from the database.
No parameter.
...$ opensips-cli -x mi rtpengine:reload$ opensips-cli -x mi rtpengine:reload type=soft...teardown
Section titled “teardown”Terminates the SIP dialog by the SIP Call-ID given as parameter.
Parameters:
- callid - SIP Call-ID.
Note this is a just a wrapper function over the “dlg_end_dlg” MI function provided by the “dialog” module. This wrapping is done just to make rtpengine happy when trying to terminate SIP calls based on RTP timeouts.
...$ opensips-cli -x mi teardown Y2IwYjQ2YmE2ZDg5MWVkNDNkZGIwZjAzNGM1ZDY0ZDQ...Exported Events
Section titled “Exported Events”E_RTPENGINE_NOTIFICATION
Section titled “E_RTPENGINE_NOTIFICATION”This event is raised when a notification is received from RTPengine.
Parameters represent the nodes within the Json request received from RTPengine. Common values are:
- type - identifies the type of notification (i.e. DTMF)
- callid - the callid of the call this event is triggered for
- source_tag - from tag of the call this event is triggered for
- timestamp - timestamp when the event was triggered
For a DTMF event received, you will also get the following nodes:
- source_ip - the IP that triggered the DTMF
- event - the event/digit pressed
- duration - how long the digit was pressed
- volume - volume of the tone
E_RTPENGINE_STATUS
Section titled “E_RTPENGINE_STATUS”This event is raised when a RTPEngine server changes it’s status to active/inactive.
Parameters:
- socket - the socket that identifies the RTPEngine instance.
- status - active if the RTPEngine instance responds to probing or inactive if the instance was deactivated.
- set - the numeric id of the set this RTPEngine instance is part of.
Frequently Asked Questions
Section titled “Frequently Asked Questions”Q: How do I migrate from “rtpproxy” or “rtpproxy-ng” to “rtpengine”?
For the most part, only the names of the functions have changed, with “rtpproxy” in each name replaced with “rtpengine”. For example, “rtpproxy_manage()” has become “rtpengine_manage()”. A few name duplications have also been resolved, for example there is now a single “rtpengine_delete()” instead of “unforce_rtp_proxy()” and the identical “rtpproxy_destroy()”.
The largest difference to the old module is how flags are passed to “rtpengine_offer()”, “rtpengine_answer()”, “rtpengine_manage()” and “rtpengine_delete()”. Instead of having a string of single-letter flags, they now take a string of space-separated items, with each item being either a single token (word) or a “key=value” pair.
For example, if you had a call “rtpproxy_offer(“FRWOC+PS”);”, this would then become:
Finally, if you were using the second parameter (explicit media address) to any of these functions, this has been replaced by the “media-address=…” option within the first string of flags.
Q: Where can I find more about OpenSIPS?
Take a look at https://opensips.org/.
Q: Where can I post a question about this module?
First at all check if your question was already answered on one of our mailing lists:
E-mails regarding any stable OpenSIPS release should be sent to users@lists.opensips.org and e-mails regarding development versions should be sent to devel@lists.opensips.org.
If you want to keep the mail private, send it to users@lists.opensips.org.
Q: How can I report a bug?
Please follow the guidelines provided at: https://github.com/OpenSIPS/opensips/issues.
Contributors
Section titled “Contributors”By Commit Statistics
Section titled “By Commit Statistics”Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
| # | Name | DevScore | Commits | Lines++ | Lines— |
|---|---|---|---|---|---|
| 1. | Razvan Crainea (@razvancrainea) | 260 | 147 | 6698 | 3365 |
| 2. | Richard Fuchs | 63 | 3 | 5502 | 736 |
| 3. | Bogdan-Andrei Iancu (@bogdan-iancu) | 37 | 21 | 483 | 643 |
| 4. | Stefan Darius | 32 | 5 | 2096 | 496 |
| 5. | John Burke (@john08burke) | 25 | 17 | 657 | 112 |
| 6. | Norman Brandinger (@NormB) | 21 | 13 | 752 | 32 |
| 7. | Liviu Chircu (@liviuchircu) | 20 | 16 | 90 | 172 |
| 8. | Vlad Patrascu (@rvlad-patrascu) | 15 | 7 | 221 | 333 |
| 9. | Peter Lemenkov (@lemenkov) | 11 | 8 | 29 | 64 |
| 10. | Vlad Paiu (@vladpaiu) | 8 | 1 | 566 | 94 |
All remaining contributors: Eric Tamme (@etamme), Nick Altmann (@nikbyte), Maksym Sobolyev (@sobomax), Ovidiu Sas (@ovidiusas), Eddie Fiorentine, Zero King (@l2dy), Rob Gagnon (@rgagnon24), hatee, Flavio E. Goncalves, Dan Pascu (@danpascu), Oliver Severin Mulelid-Tynes (@olivermt), rdondeti, Steven Ayre.
(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)
(2) including any documentation-related commits, excluding merge commits
(3) ignoring whitespace edits, renamed files and auto-generated files
By Commit Activity
Section titled “By Commit Activity”| # | Name | Commit Activity |
|---|---|---|
| 1. | Stefan Darius | Jun 2026 - Jul 2026 |
| 2. | Razvan Crainea (@razvancrainea) | Jun 2014 - Jun 2026 |
| 3. | Bogdan-Andrei Iancu (@bogdan-iancu) | Jun 2014 - Apr 2026 |
| 4. | Norman Brandinger (@NormB) | Jun 2024 - Apr 2026 |
| 5. | rdondeti | Mar 2026 - Mar 2026 |
| 6. | Steven Ayre | Jul 2025 - Jul 2025 |
| 7. | Peter Lemenkov (@lemenkov) | Jun 2018 - Feb 2025 |
| 8. | Vlad Paiu (@vladpaiu) | Jan 2025 - Jan 2025 |
| 9. | hatee | Dec 2024 - Dec 2024 |
| 10. | Eddie Fiorentine | Nov 2024 - Nov 2024 |
All remaining contributors: Maksym Sobolyev (@sobomax), Liviu Chircu (@liviuchircu), John Burke (@john08burke), Nick Altmann (@nikbyte), Flavio E. Goncalves, Zero King (@l2dy), Ovidiu Sas (@ovidiusas), Vlad Patrascu (@rvlad-patrascu), Dan Pascu (@danpascu), Oliver Severin Mulelid-Tynes (@olivermt), Rob Gagnon (@rgagnon24), Eric Tamme (@etamme), Richard Fuchs.
(1) including any documentation-related commits, excluding merge commits
Documentation
Section titled “Documentation”Contributors
Section titled “Contributors”Last edited by: Razvan Crainea (@razvancrainea), Norman Brandinger (@NormB), Eddie Fiorentine, Liviu Chircu (@liviuchircu), John Burke (@john08burke), Nick Altmann (@nikbyte), Flavio E. Goncalves, Peter Lemenkov (@lemenkov), Vlad Patrascu (@rvlad-patrascu), Bogdan-Andrei Iancu (@bogdan-iancu), Richard Fuchs.
License
Section titled “License”All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0