From owner-freebsd-multimedia@FreeBSD.ORG Sun Oct 1 17:22:10 2006 Return-Path: X-Original-To: multimedia@freebsd.org Delivered-To: freebsd-multimedia@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A21C16A403; Sun, 1 Oct 2006 17:22:10 +0000 (UTC) (envelope-from mi+kde@aldan.algebra.com) Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57CBB43D5E; Sun, 1 Oct 2006 17:22:08 +0000 (GMT) (envelope-from mi+kde@aldan.algebra.com) Received: from aldan.algebra.com (aldan [127.0.0.1]) by aldan.algebra.com (8.13.8/8.13.7) with ESMTP id k91HM7eg071768 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 1 Oct 2006 13:22:07 -0400 (EDT) (envelope-from mi+kde@aldan.algebra.com) Received: from localhost (localhost [[UNIX: localhost]]) by aldan.algebra.com (8.13.8/8.13.7/Submit) id k91HM7u4071767; Sun, 1 Oct 2006 13:22:07 -0400 (EDT) (envelope-from mi+kde@aldan.algebra.com) From: Mikhail Teterin To: Anders Nordby Date: Sun, 1 Oct 2006 13:22:06 -0400 User-Agent: KMail/1.9.1 References: <200609271445.32223.mi+mx@aldan.algebra.com> <20060927203427.GA36786@totem.fix.no> In-Reply-To: <20060927203427.GA36786@totem.fix.no> X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7whJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" Cc: multimedia@freebsd.org Subject: Re: Video-editing on FreeBSD? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Oct 2006 17:22:10 -0000 On Wednesday 27 September 2006 16:34, Anders Nordby wrote: = For grabbing DV through FireWire, use the FreeBSD built-in program = fwcontrol(8). Does not work -- same symptomps as described in: http://lists.freebsd.org/pipermail/freebsd-firewire/2005-September/000384.html (except the format is 0x20 in my case, whereas Erik's Canon was giving 0x1e). Considering that his posting is unanswered for over a year now and the problem remains unsolved, the fwcontrol must be an unmaintained piece of software, whose author(s) no longer have interest in it. Indeed, the error comes from a file last edited in 2003... Is there any other way? Thanks! -mi P.S. Having patched fwcontrol as below, I'm able to get the data, but mplayer plays it as garbage and file(1) identifies it as merely "data". It is supposed to be Sony's HDV (16:9)... --- fwdv.c 17 Apr 2003 03:38:03 -0000 1.5 +++ fwdv.c 1 Oct 2006 17:19:48 -0000 @@ -167,5 +167,5 @@ ciph = (struct ciphdr *)(ptr + 1); /* skip iso header */ if (ciph->fmt != CIP_FMT_DVCR) - errx(1, "unknown format 0x%x", ciph->fmt); + warnx("unknown format 0x%x", ciph->fmt); ptr = (u_int32_t *) (ciph + 1); /* skip cip header */ #if DEBUG