I'm looking for a tool for Linux which can segment a video file into multiple small .ts files.
I know one for Mac OS X called Media File Segmenter which is a simple command line tool - I'm looking for an equivalent tool for Linux.
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
Try ffmpeg. It's powerful & cross-platform. It may already exist in your linux distro. To copy 2 minutes of video after the first and convert from mpg to ts:
It's a good choice if you have lots of videos in essentially random formats. It's a 'swiss army knife' for video. If you are starting with mpeg, you could also try mpegtx, which includes a variety of mpeg tools including a splitter. Easier IMHO than ffmpeg to split. To split a file into 10 chunks each with a basename of 'chunk':
You may also be able to use VLC as a splitter, but I never have. There are topics discussing it, however. | |||
|
feedback
|
|
if you want to cut video from h264 you should use:
| |||
|
feedback
|
|
| |||
|
feedback
|