Date: Tue, 7 Jan 2014 05:23:53 -0800 (PST) From: Bill Tillman <btillman99@yahoo.com> To: "freebsd-questions@freebsd.org" <freebsd-questions@freebsd.org> Subject: Re: Converting .vob to .mp4 Message-ID: <1389101033.63659.YahooMailNeo@web125303.mail.ne1.yahoo.com> In-Reply-To: <20131227145527.30213817@gumby.homeunix.com> References: <52BD6FFB.8030205@gmail.com> <20131227145527.30213817@gumby.homeunix.com>
next in thread | previous in thread | raw e-mail | index | archive | help
I think mplayer will do this for you. I know you can do lots with it from the command line. On Friday, December 27, 2013 9:55 AM, RW <rwmaillists@googlemail.com> wrote: On Fri, 27 Dec 2013 12:18:03 +0000 James Griffin wrote: > Hi > > I ripped some DVD's the other day, I the .vob files on my hard drive > and I used vobcopy to rip the data. > > Now i'd like to convert these files to mp4. I've seen a number of > examples online about how to do this using either ffmpeg or mencoder. The last time I tried this sort of thing I used Handbrake and it produced better results than I've ever had from following online examples. Unfortunately I haven't been able to build it from ports for quite a long time. If you have easy access to linux I'd suggest using that. _______________________________________________ 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" From owner-freebsd-questions@FreeBSD.ORG Tue Jan 7 14:20:07 2014 Return-Path: <owner-freebsd-questions@FreeBSD.ORG> Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F860274 for <freebsd-questions@freebsd.org>; Tue, 7 Jan 2014 14:20:07 +0000 (UTC) Received: from mail-bk0-x22e.google.com (mail-bk0-x22e.google.com [IPv6:2a00:1450:4008:c01::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12B441B47 for <freebsd-questions@freebsd.org>; Tue, 7 Jan 2014 14:20:06 +0000 (UTC) Received: by mail-bk0-f46.google.com with SMTP id u15so250863bkz.19 for <freebsd-questions@freebsd.org>; Tue, 07 Jan 2014 06:20:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=/+pNC0MDfTynxLBgoRqw6wUXQqzYblnrGc1rSmPYjrg=; b=LIRkmCgvjnQ+zrMIzXEWjJvo4hkGLyCysVJN5lzKoaojidw+dlbC48Pv5JgrTvj7Ll vyXKTmFEM6KptJNjF9TOx+1b/cbCDM25yRnkEzlOuhcvXkPnxPkoQAvXzFu1vExgmdfw fVC5pL/VoawdFek46NJB/zCv+fLxjblNIOD3ty3kl/SyHD7k2LOl6y55SfD0IhFN2asP 33eGxUyeMZMYnLq44Ve9G/upjdsc33FwvgWtYiJrhQD1SpBk7entXr2/JaYTvArdv89X LH2JB+2FhozxAjtpY8E2usazrd9m1ybmz78bc/WF6+agLrRDXZNNTurQhug1O5bR5dj1 EP/Q== MIME-Version: 1.0 X-Received: by 10.204.69.203 with SMTP id a11mr456742bkj.111.1389104405189; Tue, 07 Jan 2014 06:20:05 -0800 (PST) Received: by 10.204.123.193 with HTTP; Tue, 7 Jan 2014 06:20:05 -0800 (PST) In-Reply-To: <52BD6FFB.8030205@gmail.com> References: <52BD6FFB.8030205@gmail.com> Date: Tue, 7 Jan 2014 06:20:05 -0800 Message-ID: <CAFuo_fxok=ERd0gx80qEJgquwtSSZJ6RgEBqOnK-Po_5OvVoPw@mail.gmail.com> Subject: Re: Converting .vob to .mp4 From: Waitman Gobble <gobble.wa@gmail.com> To: James Griffin <jmzgriffin@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: "freebsd-questions@freebsd.org" <freebsd-questions@freebsd.org> X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions <freebsd-questions.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/options/freebsd-questions>, <mailto:freebsd-questions-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/freebsd-questions/> List-Post: <mailto:freebsd-questions@freebsd.org> List-Help: <mailto:freebsd-questions-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-questions>, <mailto:freebsd-questions-request@freebsd.org?subject=subscribe> X-List-Received-Date: Tue, 07 Jan 2014 14:20:07 -0000 Hi, I usually cat the vob files together then use ffmpeg to convert like this: cat video_ts.vob vts_01_1.vob vts_02_1.vob vts_03_1.vob vts_04_1.vob vts_05_1.vob vts_06_1.vob | ffmpeg -i - /path/to/out.mp4 note, the '-' after '-i' is necessary to get the data from the pipe. Waitman Gobble San Jose California USA On Fri, Dec 27, 2013 at 4:18 AM, James Griffin <jmzgriffin@gmail.com> wrote: > Hi > > I ripped some DVD's the other day, I the .vob files on my hard drive and I > used vobcopy to rip the data. > > Now i'd like to convert these files to mp4. I've seen a number of examples > online about how to do this using either ffmpeg or mencoder. > > I'm using FreeBSD 9.2-p2, and i'm just wondering if anyone can recommend > which program to use for best results. I haven't done this before so advice > would be really helpful. > > Cheers, Jamie. > _______________________________________________ > 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" > -- Waitman Gobble San Jose California USA 510-830-7975
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1389101033.63659.YahooMailNeo>