VIDEO ABSTRACTIONS


Home

Example:

# video_hello: Create a video decoder and viewer,
# map the viewer and enter an activation loop.
proc video_hello {} {
 video_decoder vd -in hello.mpg
 video_viewer .vw -in vd
 pack .vw
 while { [vd decode] == 0 } { .vw display; update }
}