GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Lean video editing software? (https://gfy.com/showthread.php?t=1052223)

MyDogHasFleas 01-03-2012 03:44 PM

Lean video editing software?
 
I'm looking for simple lean video editing software. I just need to delete chunks of video from the file. To make the video shorter. I don't need to add anything to the video. Does anyone have any suggestions on what I can use? I don't have a super computer to run some of that other stuff on.

Helix 01-03-2012 04:04 PM

http://en.wikipedia.org/wiki/Compari...iting_software

Caligari 01-03-2012 04:07 PM

Windows movie maker, it can do that precisely and quickly and its free.

.

Operator 01-03-2012 04:29 PM

http://virtualdub.org

raymor 01-03-2012 04:44 PM

mencoder is about as lean as you're going to get. It's about a 7MB download for Windows, smaller for POSIX systems like Linux.
That's what I use. Look up "edit decision lists", or EDL. They mark chunks you want to take out.

To make the edl, play under video with:
mplayer -edlout somefile.edl thevideo.mpeg

Use your spacebar to mark sections to cut.
Edit the edl in a text editor if you want, thrn run the final edit something like:
mplayer -edl.somefile.edl thevideo.mpeg newcopy.mpeg

The script I actually use is:
#!/bin/sh

edl=/tmp/edl.$$

echo "playing video, please press 'i' to start and end skips"
sleep 2
mplayer -ao sdl -quiet -edlout $edl $2 $3 "$1"
echo -e "\n\nPreviewing video...\n"
sleep 2
mplayer -ao sdl -edl $edl "$1"
echo -e "\n\nTo change timing, edit $edl\n\n"
echo -e "New name?: "
read newname
mencoder "$1" -edl $edl -oac copy -o "$newname" -ovc copy

On Windows you can run it by hand, adjust the above to be a bat file, or use cygwin.

INever 01-03-2012 04:47 PM

FOr VERY SIMPLE stuff like this I'd use IMovie for the edit/chops and MPEG Streamclip if I wanted to interlace/deinterlace to reduce digital artifacts.

chaze 01-03-2012 04:56 PM

Quote:

Originally Posted by MyDogHasFleas (Post 18669128)
I'm looking for simple lean video editing software. I just need to delete chunks of video from the file. To make the video shorter. I don't need to add anything to the video. Does anyone have any suggestions on what I can use? I don't have a super computer to run some of that other stuff on.

Sony vegas or even leaner is sony movie studio. Both are awesome, especially with sony cams.


All times are GMT -7. The time now is 09:44 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123