You can use
mencoder for this. You can extract pieces from the file, eg:
Code:
mencoder input.mp4 -oac copy -ovc copy -ss 0 -endpos 169 -o piece1.mp4
mencoder input.mp4 -oac copy -ovc copy -ss 200 -endpos 1200 -o piece2.mp4
(-ss is the skip time, -endpos is the end point)
You can then use
mencoder to join the result pieces together, eg:
Code:
mencoder piece1.mp4 piece2.mp4 -oac copy -ovc copy -o output.mp4
You can do the same thing with
ffmpeg.
You could also consider using
mpgtx.
_______________
the problem with google isn't the lack of useful
results, it is just finding them amid all the flotsam.