videohubctrl can be used to control Blackmagic Design Videohub SDI router device over the network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

videohubctrl.1 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. .TH VIDEOHUBCTRL "1" "November 2014" "videohubctrl" "User Commands"
  2. .SH NAME
  3. videohubctrl - Blackmagic Design Videohub SDI router control
  4. .SH SYNOPSIS
  5. .B videohubctrl --host <host> \fI..other options..\fR
  6. .SH DESCRIPTION
  7. videohubctrl implements the simple text based network protocol for
  8. controlling Blackmagic Design Videohub SDI router devices. The
  9. program is tested with Blackmagic Design Micro Videohub 16x16
  10. router and probably will work with other Videohub models.
  11. videohubctrl currently displays and can configure:
  12. - Video input port names
  13. - Video output port names
  14. - Video output routing
  15. - Video output locking
  16. .SH MAIN OPTIONS
  17. .PP
  18. .TP
  19. \fB\-h\fR, \fB\-\-host\fR <host>
  20. Set the device host name. It can be an IP address or host name. You
  21. can set \fBVIDEOHUB_HOST\fR environment variable instead of using
  22. this option.
  23. .TP
  24. \fB\-p\fR, \fB\-\-port\fR <port>
  25. Set the device port. You can set \fBVIDEOHUB_PORT\fR environment
  26. variable instead of using this option. The default port is \fB9990\fR.
  27. .SH COMMANDS
  28. .PP
  29. .TP
  30. \fB\-i\fR, \fB\-\-info\fR
  31. Show full device info. This is the default command if none is set.
  32. The command shows the equivalent of running all \-\-list-XXX commands.
  33. .TP
  34. \fB\-m\fR, \fB\-\-monitor\fR
  35. Display the Videohub configuration and updates it in real-time as it
  36. is changed. The monitor shows config changes immediately as they happen.
  37. The device is not being polled, instead the videohub protocol is designed
  38. in such way that every client receives changes on the fly.
  39. .TP
  40. \fB\-b\fR, \fB\-\-backup\fR
  41. Show the command line that will restore the device to it's configuration.
  42. .TP
  43. \fB\-\-list\-device\fR
  44. Display main device info including model, number of ports, etc.
  45. .TP
  46. \fB\-\-list\-vinputs\fR
  47. Display device video inputs, port numbers, names, how many outputs an
  48. input is being routed to, the list of the outputs and the port status
  49. (type).
  50. The port statuses (type) are reported by Universal Videohub and can be
  51. these:
  52. .nf
  53. - Empty means that the device do not support port status.
  54. x - The port type is "None". This means that the port is not
  55. installed in the device.
  56. B - The port type is "BNC".
  57. o - The port type is "Optical".
  58. .fi
  59. .TP
  60. \fB\-\-list\-voutputs\fR
  61. Display device video outputs, port numbers, names, locking status, which
  62. input is routed to a given output and the port status (type).
  63. There are two locking statuses:
  64. .nf
  65. L - The port is locked by another IP address (user)
  66. O - The port is locked by me (from my IP address)
  67. .fi
  68. The port status field (s) have the same format as input ports (described
  69. in \fB\-\-list\-vinputs\fR option).
  70. .SH CONFIGURATION COMMANDS
  71. .PP
  72. Everywhere where port needs to be set, you can use the port number or the
  73. port name. You can use only port names that were already configured in
  74. previous session. Trying to set a name and then reference it in the next
  75. command will fail. Using port numbers always works.
  76. .SH VIDEO INPUTS CONFIGURATION
  77. .PP
  78. .TP
  79. \fB\-\-vi\-name\fR <in_X> <name>
  80. Set video input port X name.
  81. .SH VIDEO OUTPUTS CONFIGURATION
  82. .PP
  83. .TP
  84. \fB\-\-vo\-name\fR <out_X> <name>
  85. Set video output port X name.
  86. .TP
  87. \fB\-\-vo\-input\fR <out_X> <in_Y>
  88. Connect video output X to video input Y.
  89. .TP
  90. \fB\-\-vo\-lock\fR <out_X>
  91. Lock output port X.
  92. .TP
  93. \fB\-\-vo\-unlock\fR <out_X>
  94. Unlock output port X. If the port is locked by somebody else the
  95. port would be forcefully unlocked.
  96. .SH MISC OPTIONS
  97. .PP
  98. .TP
  99. \fB\-T\fR, \fB\-\-test\fR <file>
  100. Read commands from the <file> instead of connecting to a real
  101. device. This allows testing the program without having access
  102. to a device.
  103. .TP
  104. \fB\-d\fR, \fB\-\-debug\fR
  105. Enable debugging output. Use this option more times to increase
  106. the verbosity.
  107. .TP
  108. \fB\-q\fR, \fB\-\-quiet\fR
  109. Suppress warnings about unsupported commands.
  110. .TP
  111. \fB\-V\fR, \fB\-\-version\fR
  112. Show program name and version.
  113. .TP
  114. \fB\-H\fR, \fB\-\-help\fR
  115. Show program usage text.
  116. .SH ENVIRONMENT VARIABLES
  117. .PP
  118. .TP
  119. \fBVIDEOHUB_HOST\fR
  120. Set the device host name.
  121. .TP
  122. \fBVIDEOHUB_PORT\fR
  123. Set the device port.
  124. .SH EXAMPLES
  125. .PP
  126. To get a quick start here are some example command lines.
  127. .nf
  128. # Rename video output
  129. videohubctrl -h sdi --vo-name 8 "Output 8 - test"
  130. videohubctrl -h sdi --vo-name "Output 8 - test" "Output 8"
  131. # Rename video input
  132. videohubctrl -h sdi --vi-name 4 "Windows 4 HD"
  133. videohubctrl -h sdi --vi-name "Windows 4 HD" "CPlay4"
  134. # Lock and then unlock output 16 (unlock assumes that the port is
  135. # named Output 16). The host name is set via env variable.
  136. export VIDEOHUB_HOST=sdi
  137. videohubctrl --vo-lock 16
  138. videohubctrl --vo-unlock "Output 16"
  139. # Set two outputs to receive from the same input using port names
  140. videohubctrl -h sdi --vo-input "Output 8" "Windows 4 HD"
  141. videohubctrl -h sdi --vo-input "Output 7" "Windows 4 HD"
  142. # Run several commands at once
  143. # Rename video input 11 and 12
  144. # Rename video output 5,
  145. # Set output 5 to receive from input 12
  146. # Lock output 5
  147. videohubctrl --host sdi \\
  148. --vi-name 11 "Test input" \\
  149. --vi-name 12 "Playout input" \\
  150. --vo-name 5 "Encoder h264" \\
  151. --vo-input 5 12 \\
  152. --vo-lock 5
  153. # This fails. It tries to use name that is not previously configured.
  154. videohubctrl -h sdi --vo-name 1 "Test output" \\
  155. --vo-name "Test output" "Other name"
  156. .fi
  157. .SH SEE ALSO
  158. See the README file for more information. If you have questions,
  159. remarks, problems or you just want to contact the developer, write
  160. to:
  161. \fIgeorgi@unixsol.org\fP
  162. .TP
  163. For more info, see the website at
  164. .I http://georgi.unixsol.org/programs/videohubctrl/
  165. .SH AUTHORS
  166. Written by Georgi Chorbadzhiyski <\fBgeorgi@unixsol.org\fR>
  167. .SH LICENSE
  168. videohubctrl is released under MIT license.