From owner-freebsd-questions@FreeBSD.ORG Wed Mar 29 15:48:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FCE416A400 for ; Wed, 29 Mar 2006 15:48:24 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 634A443D4C for ; Wed, 29 Mar 2006 15:48:23 +0000 (GMT) (envelope-from usleepless@gmail.com) Received: by zproxy.gmail.com with SMTP id s18so186887nze for ; Wed, 29 Mar 2006 07:48:22 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=um3PpLsTJ3ZxF4p3KZhcTEowAP5U4hI+nx7UJpvf1OmMbN1/EUdv8n6G9ajQSVEmmVZG+9NsEQCaEuOHnr/WncawdrlhPqpwl+cT2otfC3v7FPHAXyoWGQEc3rmfRwiCw5LELL69/iooGzgXdwXwPaDH9uN6UqjJp9r9PxVRF88= Received: by 10.36.250.32 with SMTP id x32mr1127745nzh; Wed, 29 Mar 2006 07:48:22 -0800 (PST) Received: by 10.36.154.20 with HTTP; Wed, 29 Mar 2006 07:48:22 -0800 (PST) Message-ID: Date: Wed, 29 Mar 2006 17:48:22 +0200 From: usleepless@gmail.com To: "Chris Maness" In-Reply-To: <442A98A6.6010300@chrismaness.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <442742AB.8070105@chrismaness.com> <20060328095540.Q35270@ns1.internetinsite.com> <442A9060.8050107@chrismaness.com> <442A92B7.3000706@chrismaness.com> <442A98A6.6010300@chrismaness.com> Cc: freebsd-questions@freebsd.org Subject: Re: DVD-Slideshow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Mar 2006 15:48:24 -0000 Hi Chris, > That sounds good to me. I will still like to continue to try to get > the crossfades working too. If you send yours in, and the port > maintaner adds the diffs, then it will be called _4 on the ports tree, > even though it has been "downgraded." > > p.s. Please, don't take anything I say personal. It is not personal, I > am just a zealot when it comes to trying to get things to work on > Linux/UNIX (because I hate having to rely on windows for multimedia apps)= . > > The latest (1.7.5) works absolutely PERFECT (crossfades and all) on my > slackware install. altough i was already tired of this, you tempted my curiousity and i downloaded 1.7.5 of sourceforge, patched the wc --chars and ran it with the parameters as you specified. it created a Test.vob without crossfades. i just read the code, and i suspect it is still seq not doing what it is supposed to do. seq2 is not parameter compatible with seq. so, i have to finish what i started: write to /usr/bin/seq, chmod +x etc -------------------------------- #!/bin/csh if ( $#argv =3D=3D 2) then if( $1 =3D=3D $2) then echo $1 else seq2 -s $1 -e $2 endif else if($2 =3D=3D $3) then echo $2 else seq2 -s $2 -e $3 endif endif ---------------------------- i tested with a smaller script than this ( lots of errors ) but the slideshow finished WITH crossfades. i am now do a rerun to see if it still generates a decent slideshow. regards, usleep