|
2009-12-29
, 20:27
|
Posts: 118 |
Thanked: 45 times |
Joined on Dec 2009
@ Germany
|
#2
|
split -b 100m movie.ogm testMovie.ogm.split cat testMovie.ogm.split* > testMovie.ogm
The Following User Says Thank You to emesem For This Useful Post: | ||
|
2009-12-29
, 21:52
|
Posts: 30 |
Thanked: 10 times |
Joined on Sep 2009
@ Texas
|
#3
|
|
2009-12-30
, 16:43
|
Posts: 30 |
Thanked: 10 times |
Joined on Sep 2009
@ Texas
|
#4
|
|
2009-12-31
, 00:08
|
Posts: 22 |
Thanked: 3 times |
Joined on Dec 2009
|
#5
|
The Following User Says Thank You to reycat For This Useful Post: | ||
|
2009-12-31
, 00:09
|
|
Posts: 780 |
Thanked: 855 times |
Joined on Sep 2009
@ Helsinki, Finland
|
#6
|
You could use the command line and "split" and "cat". Google for them . Or do a "man split" or "man cat" on your linux machine (or google).
Simple example:
The first line creates files named testMovie.ogmaa testMovie.ogmab testMovie.ogmac etc... which will have a maximum of 100MB each (the last is expected to be smaller ).Code:split -b 100m movie.ogm testMovie.ogm.split cat testMovie.ogm.split* > testMovie.ogm
The second line combines them into testMovie.ogm.
Thanks in advance.