On Thu, Apr 18, 2013 at 6:35 AM, Ioannis Vranos <[email protected]>wrote:

>
> Do you know any video editor program that can remove parts of a .ogv
> video


Hi, I use ffmpeg from the repo and it works for me on Lubuntu 12.10. Here's
the command I use from the relevant folder:

ffmpeg -i video_original.mp4 -ss 00:00:10 -t 00:00:30 -sameq
video_excerpt.mp4


I've done this on .mp4 videos but I see no reason why it won't work for
.ogv.


>From my notes:

"-ss" is the start point in "hh:mm:ss" from the beginning of the video file

"-t" is the length of time in "hh:mm:ss" of the segment.

In other words, a thirty second segment is being processed.

"-sameq" makes sure quality is preserved.

All the best.
-- 
Lubuntu-users mailing list
[email protected]
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/lubuntu-users

Reply via email to