Note on Osprey 150: If you get the message no video capture device found, do the following:
ln -s /dev/o1c0 /dev/rtvc0
sw opisw o1c opio1c
A pre-compiled version of vic can be found at ftp://ftp.cs.columbia.edu/pub/schulzrinne/.
The use of the Osprey 1500 video card requires compiling vic with the grabber-o1k-xil.cc file from MMAC.
-XtransmitOnStartup=true -Xframerate=30
The "-u script" option allows you to specify a Tcl script that will be evaluated when vic starts up. A sample script to start transmission and set frame rate/bandwidth is given below.
# set bandwidth to 40 (the '50' is a Tcl priority number) option add Vic.bandwidth 40 50 # set framerate to 10 option add Vic.framerate 10 50 # The procedure named 'user_hook' is called when vic starts up, # so I'm using this procedure to start transmission. proc user_hook {} { global transmitButton transmitButtonState if { ![winfo exists .menu] } { build.menu } if { [$transmitButton cget -state] != "disabled" } { set transmitButtonState 1 transmit } destroy .menu }This script can be in any directory, but give the full pathname on the vic command line.