[gentoo-user] Splitting .mov files

2008-04-26 Thread Mick
Hi All, I have a rather large .mov file which I want to split into two separate files. What options are available to me? -- Regards, Mick signature.asc Description: This is a digitally signed message part.

Re: [gentoo-user] Splitting .mov files

2008-04-26 Thread Hal Martin
I assume you want each piece of this file to be play-able? If you don't care about that, just use split to chop them up into your desired size and then use cat to reassemble them at the destination. *$ split –bytes=1m /path/to/large/file /path/to/output/file/prefix* 'man split' will also contain

Re: [gentoo-user] Splitting .mov files

2008-04-26 Thread Mick
On Saturday 26 April 2008, Hal Martin wrote: I assume you want each piece of this file to be play-able? If you don't care about that, just use split to chop them up into your desired size and then use cat to reassemble them at the destination. *$ split –bytes=1m /path/to/large/file

Re: [gentoo-user] Splitting .mov files

2008-04-26 Thread Florian Philipp
On Sat, 2008-04-26 at 19:56 +0100, Mick wrote: On Saturday 26 April 2008, Hal Martin wrote: I assume you want each piece of this file to be play-able? If you don't care about that, just use split to chop them up into your desired size and then use cat to reassemble them at the destination.

Re: [gentoo-user] Splitting .mov files

2008-04-26 Thread luis jure
El Sat, 26 Apr 2008 22:06:52 +0200 Florian Philipp [EMAIL PROTECTED] escribió: mencoder -vf harddup -ovc copy -oac copy -of lavf -lavfopts format=mov -ss 1:30 -endpos 3:00 -o output.mov input.mov explanation: [...] -ss 1:30 - skip the first 1 min + 30 sec -endpos 3:00 - end input at

Re: [gentoo-user] Splitting .mov files

2008-04-26 Thread Florian Philipp
On Sat, 2008-04-26 at 18:43 -0300, luis jure wrote: El Sat, 26 Apr 2008 22:06:52 +0200 Florian Philipp [EMAIL PROTECTED] escribió: mencoder -vf harddup -ovc copy -oac copy -of lavf -lavfopts format=mov -ss 1:30 -endpos 3:00 -o output.mov input.mov explanation: [...] -ss 1:30 -