Module Name: src
Committed By: wiz
Date: Mon May 18 11:57:30 UTC 2009
Modified Files:
src/usr.sbin/fwctl: fwctl.8
Log Message:
New sentence, new line.
Adapt wording from FreeBSD to apply to pkgsrc. Bump date.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/fwctl/fwctl.8
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/fwctl/fwctl.8
diff -u src/usr.sbin/fwctl/fwctl.8:1.7 src/usr.sbin/fwctl/fwctl.8:1.8
--- src/usr.sbin/fwctl/fwctl.8:1.7 Wed Apr 8 14:33:12 2009
+++ src/usr.sbin/fwctl/fwctl.8 Mon May 18 11:57:30 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: fwctl.8,v 1.7 2009/04/08 14:33:12 joerg Exp $
+.\" $NetBSD: fwctl.8,v 1.8 2009/05/18 11:57:30 wiz Exp $
.\"
.\" Copyright (c) 2005 KIYOHARA Takashi
.\" All rights reserved.
@@ -29,7 +29,7 @@
.\"
.\" $FreeBSD: src/usr.sbin/fwcontrol/fwcontrol.8,v 1.21 2007/10/31 05:59:17 brueffer Exp $
.\"
-.Dd November 6, 2007
+.Dd May 18, 2009
.Dt FWCTL 8
.Os
.Sh NAME
@@ -84,8 +84,13 @@
mode for the incoming stream.
Only meaningful in case of and must precede 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.
+option.
+If not specified, the program will try to guess.
+If you get an error complaining about
+.Dq format 0x20 ,
+try to force the
+.Ar mpeg
+mode.
.It Fl m Ar EUI64 | hostname
Set default fwmem target.
Hostname will be converted to EUI64.
@@ -95,7 +100,7 @@
Dump PHY registers.
.It Fl R Ar filename
Receive DV or MPEG TS stream and dump it to a file.
-Use Ctrl-C to stop the receiving.
+Use Ctrl-C to stop receiving.
Some DV cameras seem not to send the stream if a bus manager exits.
If you cannot get the stream, try the following commands:
.Bd -literal -offset indent
@@ -108,14 +113,13 @@
It can be handled by the
.Pa pkgsrc/multimedia/libdv
package.
-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.
+The resulting MPEG TS stream can be played and sent over a network using
+the VideoLAN tool
+.Pa ( pkgsrc/multimedia/vlc ) .
+The stream can be piped directly to
+.Nm vlc ,
+see
+.Sx EXAMPLES .
.It Fl r
Initiate bus reset.
.It Fl S Ar filename
@@ -159,31 +163,30 @@
.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.
+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
+.Pa pkgsrc/net/netcat
+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
+.Pa pkgsrc/misc/buffer ,
+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.
+see its documentation.
.Sh SEE ALSO
.Xr mplayer 1 ,
.Xr vlc 1 ,