change examples for options
parent
f62afdb8cc
commit
a81b9b8ce2
|
@ -125,11 +125,11 @@ int FfmpegCamera::PrimeCapture()
|
|||
|
||||
// Set transport method as specified by method field, rtpUni is default
|
||||
if ( Method() == "rtpMulti" )
|
||||
opVect.add("rtsp_transport=udp_multicast");
|
||||
opVect.push_back("rtsp_transport=udp_multicast");
|
||||
else if ( Method() == "rtpRtsp" )
|
||||
opVect.add("rtsp_transport=tcp");
|
||||
opVect.push_back("rtsp_transport=tcp");
|
||||
else if ( Method() == "rtpRtspHttp" )
|
||||
opVect.add("rtsp_transport=http");
|
||||
opVect.push_back("rtsp_transport=http");
|
||||
|
||||
Debug(2, "Number of Options: %d",opVect.size());
|
||||
for (size_t i=0; i<opVect.size(); i++)
|
||||
|
|
|
@ -148,11 +148,11 @@ int LibvlcCamera::PrimeCapture()
|
|||
|
||||
// Set transport method as specified by method field, rtpUni is default
|
||||
if ( Method() == "rtpMulti" )
|
||||
opVect.add("--rtsp-mcast");
|
||||
opVect.push_back("--rtsp-mcast");
|
||||
else if ( Method() == "rtpRtsp" )
|
||||
opVect.add("--rtsp-tcp");
|
||||
opVect.push_back("--rtsp-tcp");
|
||||
else if ( Method() == "rtpRtspHttp" )
|
||||
opVect.add("--rtsp-http");
|
||||
opVect.push_back("--rtsp-http");
|
||||
|
||||
if (opVect.size() > 0)
|
||||
{
|
||||
|
|
|
@ -867,14 +867,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -862,14 +862,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -863,14 +863,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -861,17 +861,17 @@ function zmVlang( $langVarArray, $count )
|
|||
// So for example, to override the help text for ZM_LANG_DEFAULT do
|
||||
$OLANG = array(
|
||||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Im Feld Optionen können Parameter angegeben werden, die direkt an FFmpeg weitergegeben werden. Mehrere Parameter können mit , getrennt werden. ".
|
||||
"Einige Bespiele: (Anführungszeichen nicht eingeben)~~~~".
|
||||
"\"rtsp_transport=tcp\" Verwenden von TCP statt UDP für die Übermittlung des Datenstroms von der Kamera~~~~".
|
||||
"\"rtsp_transport=http\" Verwenden von http tunneling für die Übermittlung des Datenstroms von der Kamera~~~~".
|
||||
"\"loglevel=debug\" Gibt an wie viele Status/Debug Meldungen angezeigt werden sollen (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Im Feld Optionen können Parameter angegeben werden, die direkt an Libvlc weitergegeben werden. Mehrere Parameter können mit , getrennt werden. ".
|
||||
"Einige Bespiele: (Anführungszeichen nicht eingeben)~~~~".
|
||||
"\"--rtsp-tcp\" Verwenden von TCP statt UDP für die Übermittlung des Datenstroms von der Kamera~~~~".
|
||||
"\"--verbose=2\" Gibt an wie viele Status/Debug Meldungen angezeigt werden sollen"
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
// 'LANG_DEFAULT' => array(
|
||||
|
|
|
@ -864,14 +864,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -863,14 +863,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -720,14 +720,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -764,14 +764,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -856,14 +856,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -863,14 +863,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -863,14 +863,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -901,14 +901,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -868,17 +868,18 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
||||
// 'LANG_DEFAULT' => array(
|
||||
// 'Prompt' => "This is a new prompt for this option",
|
||||
// 'Help' => "This is some new help for this option which will be displayed in the popup window when the ? is clicked"
|
||||
|
|
|
@ -863,14 +863,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -857,14 +857,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -842,14 +842,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -803,14 +803,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -1302,17 +1302,18 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
||||
// End of Phone Bandwidth tab
|
||||
//
|
||||
);
|
||||
|
|
|
@ -862,14 +862,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
|
@ -867,14 +867,14 @@ $OLANG = array(
|
|||
'OPTIONS_FFMPEG' => array(
|
||||
'Help' => "Parameters in this field are passwd on to FFmpeg. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"rtsp_transport=tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"rtsp_transport=http\" Use http tunneling for the data stream from the camera~~~~".
|
||||
"\"allowed_media_types=video\" Set datatype to request fromcam (audio, video, data)~~~~".
|
||||
"\"reorder_queue_size=nnn\" Set number of packets to buffer for handling of reordered packets~~~~".
|
||||
"\"loglevel=debug\" Set verbosiy of FFmpeg (quiet, panic, fatal, error, warning, info, verbose, debug)"
|
||||
),
|
||||
'OPTIONS_LIBVLC' => array(
|
||||
'Help' => "Parameters in this field are passwd on to libVLC. Multiple parameters can be separated by ,~~ ".
|
||||
"Examples (do not enter quotes)~~~~".
|
||||
"\"--rtsp-tcp\" Use TCP instead of UDP for the data stream from the camera~~~~".
|
||||
"\"--rtp-client-port=nnn\" Set local port to use for rtp data~~~~".
|
||||
"\"--verbose=2\" Set verbosity of libVLC"
|
||||
),
|
||||
|
||||
|
|
Loading…
Reference in New Issue