<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Apr 18, 2013 at 6:35 AM, Ioannis Vranos <span dir="ltr"><<a href="mailto:ioannis.vranos@gmail.com" target="_blank">ioannis.vranos@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><br>
Do you know any video editor program that can remove parts of a .ogv<br>
video </blockquote><div><br></div><div>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:<div><br></div><div><p style="margin:0px">ffmpeg -i video_original.mp4 -ss 00:00:10 -t 00:00:30 -sameq video_excerpt.mp4</p>
<p style="margin:0px"><br></p><p style="margin:0px">I've done this on .mp4 videos but I see no reason why it won't work for .ogv. </p><p style="margin:0px"><br></p><p style="margin:0px">From my notes:</p><p style="margin:0px">
</p><p style="margin:0px">"-ss" is the start point in "hh:mm:ss" from the beginning of the video file</p><p style="margin:0px">"-t" is the length of time in "hh:mm:ss" of the segment.</p>
<p style="margin:0px">In other words, a thirty second segment is being processed.</p><p style="margin:0px">"-sameq" makes sure quality is preserved. </p><p></p><p style="margin:0px">All the best.</p></div><div class="gmail_extra">
<br></div></div><div> </div></div></div></div>