Deleted Added
full compact
25c25
< .\" $FreeBSD: head/usr.sbin/fwcontrol/fwcontrol.8 140442 2005-01-18 20:02:45Z ru $
---
> .\" $FreeBSD: head/usr.sbin/fwcontrol/fwcontrol.8 163712 2006-10-26 22:33:38Z imp $
27c27
< .Dd December 14, 2004
---
> .Dd October 24, 2006
43a44
> .Op Fl M Ar mode
86a88,97
> .It Fl M Ar mode
> Explicitly specify either
> .Ar dv
> or
> .Ar mpeg
> mode for the incoming stream.
> Only meaningful in case of and must preceed the
> .Fl R
> option. If not specified, the program will try to guess. If you get
> an error complaining about "format 0x20", try to force the "mpeg" mode.
88c99
< Receive DV stream and dump it to a file.
---
> Receive DV or MPEG TS stream and dump it to a file.
103c114,121
< Ports Collection.
---
> Ports Collection. Resulting MPEG TS stream can be played and sent over a
> network using the VideoLAN
> .Nm vlc
> tool in the
> .Fx
> Ports Collection. The stream can be piped directly to
> .Nm vlc,
> see EXAMPLES.
120c138
< Receive stream.
---
> Receive a DV stream with DV camera attached.
137a156,183
> .Pp
> .Dl "fwcontrol -R file.m2t
> .Pp
> Receive an MPEG TS stream from a camera producing MPEG transport stream. This
> has been tested with SONY HDR-FX1E camera that produces HD MPEG-2 stream at
> 25 Mbps bandwidth.
> .Pp
> To send the stream from the camera over the network using TCP (which supprisingly works better with vlc), you can use
> .Dl "fwcontrol -R - | nc 192.168.10.11 9000
> with
> .Nm netcat
> from ports and to receive the stream, use
> .Dl nc -l -p 9000 | vlc -
> .Pp
> To netcast via UDP, you need to use
> .Nm buffer
> program from ports, since vlc is not fast enough to read UDP packets from
> buffers and thus it experiences dropouts when run directly. The sending side
> can use
> .Dl "fwcontrol -R - | nc 192.168.10.11 9000
> and to receive the stream, use
> .Dl nc -l -u -p 9000 | buffer -s 10k -b 1000 -m 20m -p 5 | vlc -
> .Pp
>
> .Pp
> For more information on how to work with
> .Nm vlc
> see its docs.
143c189,191
< .Xr sbp 4
---
> .Xr sbp 4 ,
> .Xr mplayer 1 ,
> .Xr vlc 1
150a199,200
> .An Petr Holub Aq hopet@ics.muni.cz
> - MPEG TS mode.
152a203,204
> Especially MPEG TS reception support is very rudimental and supports only
> high-bandwidth MPEG-2 streams (fn field in CIP header equals 3).