> On Jan 10, 2015, at 20:38, lee <l...@yagibdah.de> wrote:
> 
> Hi,
> 
> since dvbcut isn't available in Gentoo and doesn't compile either,
> what's the alternative?

Well I would use ffmpeg. Dvbcut is just a frontend for ffmpeg. Ffmpeg is a true 
swiss army knife for any video manipulation... You can do almost anything with 
it.

Stream selection cutting is really easy with ffmpeg:

ffmpeg -i stream.ts -acodec copy -scodec copy -vcodec copy -ss 60 -t 120 
output.mkv

You can use -map to select desired stream.

This kind of multiplexing is really fast!

-- 
-Matti

Reply via email to