From owner-freebsd-questions@FreeBSD.ORG Wed Dec 5 03:23:52 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 986B416A418 for ; Wed, 5 Dec 2007 03:23:52 +0000 (UTC) (envelope-from jeremy.gransden@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6887613C468 for ; Wed, 5 Dec 2007 03:23:52 +0000 (UTC) (envelope-from jeremy.gransden@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so7103097waf for ; Tue, 04 Dec 2007 19:23:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=hY8VWE4DTfmAz2mjednms/yErN56tpu7bHKfBMQT/5U=; b=vCtPnWWk/B/RhquGTT76xhFrsFt7lf2pcf47zCA48AmcXOv/TGGwsE/LceXBoxZ1L927NTtL/JT5sXyvJnKdlgfNadjr2MG7GgWCnJ6gLQsCpkmlOmtT0McE4JCATIQQiWylrhK3awhqFGziTpKKybe2r40HPFnjXm+PjjFvZbk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=L1IgrQimtt5gD39y4Sa5arz1NbgDqFlMepaExCWxkiTBMKWFUgHQbQWGYducLgOS7ZVl+nQy7n6GYbdF4FeKjmSYE0Yf2CRKgSY8C91eHTZk5UtxKIX+86Ud+2jPbrkcV14zMWTnjmrJ92yNcE2hxgTinbfXbuS2+jXFgR5pGn0= Received: by 10.115.55.1 with SMTP id h1mr1615000wak.1196825030996; Tue, 04 Dec 2007 19:23:50 -0800 (PST) Received: by 10.115.91.9 with HTTP; Tue, 4 Dec 2007 19:23:50 -0800 (PST) Message-ID: <87f7f4170712041923v41b01421he4ebd978f7e3b94b@mail.gmail.com> Date: Tue, 4 Dec 2007 22:23:50 -0500 From: "Jeremy Gransden" To: girishvenkatachalam@gmail.com, freebsd-questions@freebsd.org In-Reply-To: <20071203050129.GC578@saraswathy.susmita.org> MIME-Version: 1.0 References: <87f7f4170712021842r4336f596x7ce599e6f6a22740@mail.gmail.com> <20071203050129.GC578@saraswathy.susmita.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Problem with mkisofs -dvd-video 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, 05 Dec 2007 03:23:52 -0000 On Dec 3, 2007 12:01 AM, Girish Venkatachalam wrote: > On 21:42:47 Dec 02, Jeremy Gransden wrote: > > HI List, > > > > What is the correct procedure to create a dvd-video iso. I have tried > the > > following and receive an error: > > > > [jeremy@icipher ~]$ mkisofs -dvd-video -o ~/develip.iso -R > ~/develop_spin/ > > Using PSA07000.VOB;1 for /PSA074781-2.VOB (PSA074781-1.VOB) > > mkisofs: Unable to make a DVD-Video image. > > [jeremy@icipher ~]$ > > > > I searched google and did not find much of information. I read several > > articles about the case of the file names, but my files are uppercase as > > they suggested. I can create iso's without the -dvd-video switch, but > not > > with. > > > > Check the mencoder documentation. Install mplayer, dvdauthor and > growisofs (dvd+rw-tools). > > And set cranking. :) > > If you already have DVD compliant VOB, my stuff will not apply. If you > don't then this is what you have to do. > > mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf \ > -vf scale=720:576,harddup -srate 48000 -af lavcresample=48000 \ > -lavcopts > vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:\ > keyint=15:vstrict=0:acodec=ac3:abitrate=192:aspect=16/9 -ofps 25 \ > -o movie.mpg movie.avi > > Now movie.mpg contains MPEG-2 video befitting the DVD profile. > > Now just use a simple config file with dvdauthor and write it with > growisofs. > > Something like this perhaps? > > $ cat foo.xml > > > > > > > > > > > > > > $ dvdauthor -x foo.xml -o myvideo > > dvdauthor will create a directory "myvideo" with dvd structure that can be > directly given to growisofs or you could create an ISO with mkisofs with > the -dvd-video switch. > > Hope this helps. > > -Girish > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > Hi Girish, Thank you for you suggestion, It worked almost flawlessly!!! I say almost because the dvd will not play in my standalone dvd player, but will play on both my macbook, and freebsd machine. I will look into the dvdauthor, and mencoder docs to see if i can figure out why. thank you again for your help. jeremy