diff options
author | Anton Platov <anton@platov.net> | 2018-10-29 15:57:31 +0300 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2018-11-01 18:46:05 +0100 |
commit | 295fd12d17f339bdde0940d1f1885cf6db67e5d5 (patch) | |
tree | 0e13400c200a28efaf0e14128813588c1668f0ff /doc | |
parent | cb74c33106d08b09ff0a2e395fe0b69828031d63 (diff) | |
download | ffmpeg-295fd12d17f339bdde0940d1f1885cf6db67e5d5.tar.gz |
avdevice/libndi_newtek_dec: add extra_ips option to libndi_newtek allowing use remote network sources
Signed-off-by: Anton Platov <anton@platov.net>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/indevs.texi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/indevs.texi b/doc/indevs.texi index 9a9cb697d3..e1301ccf97 100644 --- a/doc/indevs.texi +++ b/doc/indevs.texi @@ -1078,6 +1078,10 @@ Defaults to @option{0.5}. When this flag is @option{false}, all video that you receive will be progressive. Defaults to @option{true}. +@item extra_ips +If is set to list of comma separated ip addresses, scan for sources not only +using mDNS but also use unicast ip addresses specified by this list. + @end table @subsection Examples @@ -1091,11 +1095,24 @@ ffmpeg -f libndi_newtek -find_sources 1 -i dummy @end example @item +List local and remote input devices: +@example +ffmpeg -f libndi_newtek -extra_ips "192.168.10.10" -find_sources 1 -i dummy +@end example + +@item Restream to NDI: @example ffmpeg -f libndi_newtek -i "DEV-5.INTERNAL.M1STEREO.TV (NDI_SOURCE_NAME_1)" -f libndi_newtek -y NDI_SOURCE_NAME_2 @end example +@item +Restream remote NDI to local NDI: +@example +ffmpeg -f libndi_newtek -extra_ips "192.168.10.10" -i "DEV-5.REMOTE.M1STEREO.TV (NDI_SOURCE_NAME_1)" -f libndi_newtek -y NDI_SOURCE_NAME_2 +@end example + + @end itemize @section openal |