From owner-freebsd-questions@FreeBSD.ORG Wed Feb 25 02:06:43 2004 Return-Path: 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 CF8A216A4D0 for ; Wed, 25 Feb 2004 02:06:43 -0800 (PST) Received: from lysander.inspired.net.au (lysander.inspired.net.au [203.132.226.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F92443D1D for ; Wed, 25 Feb 2004 02:06:43 -0800 (PST) (envelope-from gautam@inspired.net.au) Received: from localhost (localhost [127.0.0.1]) by lysander.inspired.net.au (Postfix) with ESMTP id C70A42380FC; Wed, 25 Feb 2004 21:06:41 +1100 (EST) Received: from lysander.inspired.net.au ([127.0.0.1]) by localhost (lysander [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 02319-06; Wed, 25 Feb 2004 21:06:41 +1100 (EST) Received: from madras.dyndns.org (dsl-137.241.240.220.dsl.comindico.com.au [220.240.241.137]) by lysander.inspired.net.au (Postfix) with SMTP id CD1B2238019; Wed, 25 Feb 2004 21:06:35 +1100 (EST) Date: Wed, 25 Feb 2004 21:03:50 +1100 From: Gautam Gopalakrishnan To: Tsu-Fan Cheng Message-Id: <20040225210350.2ad0cbed.gautam@inspired.net.au> In-Reply-To: References: X-Mailer: Sylpheed version 0.9.9 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p5 (Debian) at inspired.net.au cc: freebsd-questions@freebsd.org Subject: Re: mp4 spliter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Feb 2004 10:06:43 -0000 On Tue, 24 Feb 2004 23:00:20 -0500 (EST), Tsu-Fan Cheng wrote: > Hi freebsders, I have a movie file ended with mp4 and it's bigger than > 700mb, does anybody know how I can split the file into 2 so I can make > a CD out of it? thanks a lot! If you can play it with mplayer, then you can (assuming your movie file is a.mp4 and length is 1000 secs) $ mencoder -oac copy -ovc copy -ss 0 -endpos 500 -o first.mp4 a.mp4 $ mencoder -oac copy -ovc copy -ss 500 -endpos 1000 -o second.mp4 a.mp4 Or you could take the easy way out and run this to get split files. $ split -b 700m a.mp4 Gautam