Results 1 to 4 of 4

Thread: What's the fastest and easiest way to crop out a section of an AVI file?

  1. #1
    Join Date
    Oct 2010
    Beans
    79

    What's the fastest and easiest way to crop out a section of an AVI file?

    I want to create a gif of a video using gifninja.com

    Rather than going through the trouble of downloading and installing a graphical video editor, I was wondering if there's a tool that lets you do this with a simple command. Thus no need to download the graphical end; just the lib and the wrapper.

    Thanks,
    Dave

  2. #2
    Join Date
    Feb 2006
    Location
    uk
    Beans
    Hidden!

    Re: What's the fastest and easiest way to crop out a section of an AVI file?

    well this is one of those things where its actually easier with a graphical editor. id use avidemux. its pretty quick. for best results, crop on keyframes.

    for cli, use mencoder to play the section you want and output it to a new file

    Code:
    mencoder source.avi -ss 01:01:01 -endpos 33 -ovc copy -nosound -o output.avi
    this starts recording at 01:01:01 and saves 33 seconds
    Last edited by aeiah; March 1st, 2011 at 10:20 AM.

  3. #3
    Join Date
    Mar 2009
    Location
    Belgium - Ghent
    Beans
    94
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: What's the fastest and easiest way to crop out a section of an AVI file?

    This might be what you're searching for:
    http://blog.ahfr.org/2008/03/making-...-software.html
    Hope it helps

  4. #4
    Join Date
    Oct 2010
    Beans
    79

    Re: What's the fastest and easiest way to crop out a section of an AVI file?

    Quote Originally Posted by aeiah View Post
    well this is one of those things where its actually easier with a graphical editor. id use avidemux. its pretty quick. for best results, crop on keyframes.

    for cli, use mencoder to play the section you want and output it to a new file

    Code:
    mencoder source.avi -ss 01:01:01 -endpos 33 -ovc copy -nosound -o output.avi
    this starts recording at 01:01:01 and saves 33 seconds
    I got tired of waiting for replies so I went ahead and used OpenShot, took forever to figure it out. Honestly sometimes I use programs and I'm just appalled at the kind of obvious features the developers don't include.

    Anyway, thank you for the reply. That is exactly what I was looking for. I anticipate I will make gifs more often so I'll try that right now.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •