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: Code: split -b 100m movie.ogm testMovie.ogm.split cat testMovie.ogm.split* > testMovie.ogm 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 ). The second line combines them into testMovie.ogm.
split -b 100m movie.ogm testMovie.ogm.split cat testMovie.ogm.split* > testMovie.ogm