To split video file into two files, where infile.mpg is large original video file and outfile.mpg will be 5 minutes long chunk beginning from the 19th minute of the original file.

$ ffmpeg -vcodec copy -ss 00:19:00 -t 00:05:00 -i infile.mpg outfile.mpg