From owner-freebsd-multimedia@FreeBSD.ORG Sat Jan 7 23:10:05 2006 Return-Path: X-Original-To: freebsd-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 7587916A41F; Sat, 7 Jan 2006 23:10:05 +0000 (GMT) (envelope-from Gabor@Zahemszky.HU) Received: from graveyard.mail.t-online.hu (graveyard1.mail.t-online.hu [195.228.240.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 075A643D55; Sat, 7 Jan 2006 23:10:04 +0000 (GMT) (envelope-from Gabor@Zahemszky.HU) Received: from mail.t-online.hu (karoly.axelero.hu [195.228.240.245]) by graveyard.mail.t-online.hu (Postfix) with ESMTP id C4A363E489E; Sun, 8 Jan 2006 00:10:00 +0100 (CET) Received: from [192.168.1.2] (dsl51B68277.pool.t-online.hu [81.182.130.119]) by mail.t-online.hu (Postfix) with ESMTP; Sun, 8 Jan 2006 00:10:00 +0100 (CET) Message-ID: <43C04BCE.2000806@Zahemszky.HU> Date: Sun, 08 Jan 2006 00:16:30 +0100 From: =?ISO-8859-2?Q?Zahemszky_G=E1bor?= User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051219) X-Accept-Language: en-us, en MIME-Version: 1.0 To: lioux@FreeBSD.org, freebsd-multimedia@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: errors is multimedia/qvamps ports 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: Sat, 07 Jan 2006 23:10:05 -0000 Hi! In a little test of multimedia/qvamps, I've found the next few bugs: a) in the configuration option Settings/Menu preferences/Command to create NTSC video there is an incorrect parameter to the ppmtoy4m command: the default is ... -S 420_mpeg2 ... - but the correct form (at least in FreeBSD6) is -S 420mpeg - without the underscore b) the same error is in the Command to create PAL video, and of course is the same correction: s/420_mpeg2/420mpeg2/ c) in the configuration option Settings/DVD Authoring/Burn command the burning is with the cdrecord-ProDVD command, in this way: s=`mkisofs -dvd-video -quiet -print-size %i`; mkisofs -dvd-video -V "%v" %i | cdrecord dev=%d speed=%s driveropts=burnfree fs=16M tsize=${s}s -dao -v - but the "default" (from ports or packages) DVD-recording program in FreeBSD - as you know it - is the growisofs command from sysutils/dvd+rw-tools. So it would be better to use it as the default burner command, like this: s=`mkisofs -dvd-video -quiet -print-size %i`; mkisofs -dvd-video -V "%v" %i | growisofs -Z %d=/dev/fd/0 -speed=%s -use-the-force-luke=tracksize:${s} -use-the-force-luke=notray -use-the-force-luke=tty -dvd-video -dvd-compat So change cdrecord to the corresponding growisofs command (and options). Bye, Gabor -- #!/bin/ksh Z='21N16I25C25E30, 40M30E33E25T15U!';IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ ';set -- $Z;for i;{ [[ $i = ? ]]&&print $i&&break;[[ $i = ??? ]]&&j=$i&&i=${i%?};typeset -i40 i=8#$i;print -n ${i#???};[[ "$j" = ??? ]]&&print -n "${j#??} "&&j=;typeset +i i;};IFS=' 0123456789 ';set -- $Z;for i;{ [[ $i = , ]]&&i=2;[[ $i = ?? ]]||typeset -l i;j="$j $i";typeset +l i;};print "$j"