Gentoo Archives: gentoo-user

From: Matti Nykyri <matti.nykyri@×××.fi>
To: "gentoo-user@l.g.o" <gentoo-user@l.g.o>
Subject: Re: [gentoo-user] alternative to dvbcut
Date: Sun, 11 Jan 2015 09:30:58
Message-Id: EB01B738-9BC1-42D4-AB1C-CF8400FB450F@iki.fi
In Reply to: [gentoo-user] alternative to dvbcut by lee
1 > On Jan 10, 2015, at 20:38, lee <lee@××××××××.de> wrote:
2 >
3 > Hi,
4 >
5 > since dvbcut isn't available in Gentoo and doesn't compile either,
6 > what's the alternative?
7
8 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.
9
10 Stream selection cutting is really easy with ffmpeg:
11
12 ffmpeg -i stream.ts -acodec copy -scodec copy -vcodec copy -ss 60 -t 120 output.mkv
13
14 You can use -map to select desired stream.
15
16 This kind of multiplexing is really fast!
17
18 --
19 -Matti