1 .\" Copyright (c) 2002 Hidetoshi Shimokawa
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 .\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
17 .\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 .\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19 .\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
22 .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 .\" POSSIBILITY OF SUCH DAMAGE.
27 .Dd September 12, 2008
32 .Nd FireWire control utility
48 .Op Fl m Ar EUI64 | hostname
52 utility is designed to provide a way for users to access and control the
57 will output a list of devices that are/were connected to the bus.
59 The following options are available:
60 .Bl -tag -width indent
62 Specify the FireWire bus number to be operated on.
67 Show the topology map.
71 Show the configuration ROM on the node.
73 Hex dump of the configuration ROM.
75 Send a link-on PHY packet to the node.
81 Load hex dump file of the configuration ROM and parse it.
85 to be the root node on the next bus reset by sending a PHY config packet.
86 Valid values are 0 - 63.
90 by sending a PHY_config packet.
91 By default this value is 63 on all nodes.
92 Valid values are 0 - 63.
96 register on all supported nodes.
98 Explicitly specify either
102 mode for the incoming stream.
103 Only meaningful in case of and must precede the
106 If not specified, the program will try to guess.
109 error, try to force the
113 Receive DV or MPEG TS stream and dump it to a file.
114 Use ^C to stop the receiving.
115 Some DV cameras seem not to send the stream if a bus manager exists.
116 If it is impossible to get the stream, try the following commands:
117 .Bd -literal -offset indent
118 sysctl hw.firewire.try_bmr=0
122 The resulting file contains raw DV data excluding isochronous header
129 Resulting MPEG TS stream can be played and sent over a
130 network using the VideoLAN
135 The stream can be piped directly to
140 Send a DV file as isochronous stream.
141 .It Fl m Ar EUI64 | hostname
142 Set default fwmem target.
143 Hostname will be converted to EUI64 using
147 .Bl -tag -width "Pa /dev/fw0.0"
151 Each DV frame has a fixed size and it is easy to edit the frame order.
153 .Dl "fwcontrol -R original.dv"
155 Receive a DV stream with DV camera attached.
157 .Dl "dd if=original.dv of=first.dv bs=120000 count=30"
159 Get first 30 frames(NTSC).
161 .Dl "dd if=original.dv of=second.dv bs=120000 skip=30 count=30"
163 Get second 30 frames(NTSC).
165 .Dl "cat second.dv first.dv | fwcontrol -S /dev/stdin"
167 Swap first and second 30 frames and send them to DV recorder.
174 .Dl "fwcontrol -R file.m2t"
176 Receive an MPEG TS stream from a camera producing MPEG transport stream.
177 This has been tested with SONY HDR-FX1E camera that produces HD MPEG-2
178 stream at 25 Mbps bandwidth.
180 To send the stream from the camera over the network using TCP (which
181 surprisingly works better with vlc), you can use
182 .Dl "fwcontrol -R - | nc 192.168.10.11 9000"
185 from ports and to receive the stream, use
186 .Dl nc -l -p 9000 | vlc -
188 To netcast via UDP, you need to use
190 program from ports, since vlc is not fast enough to read UDP packets from
191 buffers and thus it experiences dropouts when run directly.
192 The sending side can use
193 .Dl "fwcontrol -R - | nc 192.168.10.11 9000"
194 and to receive the stream, use
195 .Dl nc -l -u -p 9000 | buffer -s 10k -b 1000 -m 20m -p 5 | vlc -
197 For more information on how to work with
211 utility first appeared in
214 .An Hidetoshi Shimokawa Aq simokawa@FreeBSD.org
215 .An Petr Holub Aq hopet@ics.muni.cz
218 This utility is still under development and provided for debugging purposes.
219 Especially MPEG TS reception support is very rudimental and supports only
220 high-bandwidth MPEG-2 streams (fn field in CIP header equals 3).