rtpOverRtsp static method

String rtpOverRtsp(
  1. bool enable
)

Use RTP over RTSP (TCP)

Implementation

static String rtpOverRtsp(bool enable) {
  return enable ? '--rtsp-tcp' : '--no-rtsp-tcp';
}