On Tue, 24 Feb 2004 23:00:20 -0500 (EST), Tsu-Fan Cheng
<[EMAIL PROTECTED]> 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
_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to