MP3DirectCut like Video Editor?

Discuss anything related to portable freeware here.
Post Reply
Message
Author
ChipsNHotSauce
Posts: 16
Joined: Mon Jun 06, 2011 9:35 am
Location: Growls Garden

MP3DirectCut like Video Editor?

#1 Post by ChipsNHotSauce »

Hey,

I need to cut out part of an .ASF video file without re-encoding it.

I tried Virtualdub but it only re-encodes to .AVI...

Original: ASF - 13.2 MB
Output: AVI - 320 MB

wtf? the output is over 20x bigger :shock:

Anything else?

User avatar
joby_toss
Posts: 2971
Joined: Sat Feb 09, 2008 9:57 am
Location: Romania
Contact:

Re: MP3DirectCut like Video Editor?

#2 Post by joby_toss »

Did you use "Direct stream copy" under "Video" options?

User avatar
m^(2)
Posts: 890
Joined: Sat Mar 31, 2007 2:38 am
Location: Kce,PL
Contact:

Re: MP3DirectCut like Video Editor?

#3 Post by m^(2) »

AVIdemux is the only one that I know that has a smart reencode, that is - lets you cut in any place you want and reencodes whatever it has to and what it doesn't - leaves untouched.
And is portable. ;)

Ruby
Posts: 324
Joined: Sat Sep 05, 2009 6:35 pm

Re: MP3DirectCut like Video Editor?

#4 Post by Ruby »

If your proficient (and not against) using a command line tool, FFmpeg can do this:

Code: Select all

ffmpeg  -i source -vcodec copy -acodec copy -ss 00:01:30 -t 00:00:20 outfile
This will copy a 20 sec clip starting at 1min30sec of the video.

-ss will be your starting point and -t is the duration - hh:mm:ss

Since you already have VirtualDub you can use it to get the exact timestamps.

FFmpeg Documentation (-ss -t)

Post Reply