Recommendation for video editing ?
Page 1 of 1
VGAdeadcafe




Posts: 22230
Location: ★ ಠ_ಠ ★
PostPosted: Tue, 2nd Feb 2010 22:49    Post subject: Recommendation for video editing ?
What's a good user-friendly program for editing video ? I wanna cut off a section from a movie and upload to YouTube.

Also, it should be able to cut off music only etc.
Back to top
nouseforaname
Über-VIP Member



Posts: 21306
Location: Toronto, Canada
PostPosted: Tue, 2nd Feb 2010 22:53    Post subject:
Back to top
LeoNatan
☢ NFOHump Despot ☢



Posts: 73284
Location: Ramat HaSharon, Israel 🇮🇱
PostPosted: Tue, 2nd Feb 2010 23:05    Post subject:
VirtualDubMod is old as shit, and doesn't really support anything anymore. I mean, seriously, who the hell uses VideoForWindows (VFW) anymore? Laughing
You could use AviDemux, which wants you to believe it is a modern VirtualDub, but it still has bugs.

My suggestion is AviSynth + MeGUI. Very simple, and will give great results. Can post a tutorial if needed. Smile
Back to top
nouseforaname
Über-VIP Member



Posts: 21306
Location: Toronto, Canada
PostPosted: Tue, 2nd Feb 2010 23:12    Post subject:
haha well it works good at least for converting ac3 into mp3 without touching video quickly with almost 1-click (which I have to do since core mobile player doesn't support ac3 :/)

is there an easy way to do this with megui? it's usually only xvid and should leave video untouched... (and all in one step, no converting audio first and then re-muxing)

for what he wants to do (cut a section and convert to something that can be posted on youtube) it probably would do the trick and he can figure it out on his own pretty easy Smile


asus z170-A || core i5-6600K || geforce gtx 970 4gb || 16gb ddr4 ram || win10 || 1080p led samsung 27"
Back to top
VGAdeadcafe




Posts: 22230
Location: ★ ಠ_ಠ ★
PostPosted: Tue, 2nd Feb 2010 23:24    Post subject:
Holy shit, MeGui updating takes a long time, 39 files.
Back to top
LeoNatan
☢ NFOHump Despot ☢



Posts: 73284
Location: Ramat HaSharon, Israel 🇮🇱
PostPosted: Tue, 2nd Feb 2010 23:28    Post subject:
MeGUI also has an AviSynth script creator, so you can just open your video, select where to set start, where you want end, and it will make script for you. Not perfect, but will do if you don't want to make one yourself. Smile


My IMDb Ratings | Fix NFOHump Cookies | Hide Users / Threads | Embedded Content (Videos/GIFs/Twitter/Reddit) | The Derps Collection

Death smiles at us all; all we can do is smile back.


Last edited by LeoNatan on Tue, 2nd Feb 2010 23:28; edited 1 time in total
Back to top
VGAdeadcafe




Posts: 22230
Location: ★ ಠ_ಠ ★
PostPosted: Tue, 2nd Feb 2010 23:28    Post subject:
Leo, I will track you down and destroy you, what is this elitist app ? Very Happy
A lot of edit boxes !

Post tut to cut section off dvdrip video !!!

EDIT: Just saw your last post, I'll try that.
Back to top
LeoNatan
☢ NFOHump Despot ☢



Posts: 73284
Location: Ramat HaSharon, Israel 🇮🇱
PostPosted: Tue, 2nd Feb 2010 23:29    Post subject:


You nubcake Laughing OK, will make one.
Back to top
FastMemFirst




Posts: 613
Location: Chipmem
PostPosted: Tue, 2nd Feb 2010 23:33    Post subject:
TMPGENC 4 Express for basic stuff like converting and extracting. Sonic Foundry Vegas 4 for advanced stuff like titles, a/v-mixing and other effects.

Do not listen to ppl who tell you to not use things because its old. If it does what you want, use it Wink
Back to top
VGAdeadcafe




Posts: 22230
Location: ★ ಠ_ಠ ★
PostPosted: Tue, 2nd Feb 2010 23:36    Post subject:
But I don't want old shit ! lol

Anyway, this looks very cool with its scripts and shitz and everything so I will learn to do some simple things with it and just ... profit.

iNatan is gonna teach me everything he knows.
Back to top
LeoNatan
☢ NFOHump Despot ☢



Posts: 73284
Location: Ramat HaSharon, Israel 🇮🇱
PostPosted: Tue, 2nd Feb 2010 23:54    Post subject:
Basically, AviSynth allows you to load files and apply scripts and functions to them. You need to have Avisynth installed:
http://sourceforge.net/project/showfiles.php?group_id=57023

You need the 32-bit version.

I make my scripts manually. I open my video file in AviDemux, find the frame numbers I want to put and manually create the AVS file. After you install AviSynth, you will have an option to create a new AVS file; do that in the folder of the video. First we need to open the video file:

For anything by AVI:

DirectShowSource("filename.mkv")

For AVI:

AviSource("filename.avi")


No we want to crop. It is done by the Trim function.

DirectShowSource("filename.mkv").Trim(10000,20000)

Or:

DirectShowSource("filename.mkv")
Trim(10000,20000)


This will give you the video between frames 10000 and 20000 including. If you want to join multiple sections from one file, can be done easily:

a = DirectShowSource("filename.mkv")
a.Trim(0, 10000) + a.Trim(50000, 0)


This will give you frames from 0 to 10000 and then 50000 to the end ("0" here denotes EOF - end of file).
Resizing is also important. Say, you want to convert a 1080p file to 720p.

DirectShowSource("filename.mkv").Lanczos4Resize(1280,720)

Or:

DirectShowSource("filename.mkv")
Lanczos4Resize(1280,720)


This will resize the video to 1280x720.

Complete script example:

DirectShowSource("Heat 1995 1080p BluRay x264-CtrlHD.mkv")
Trim(111140,113637)
AddBorders(0, 140, 0, 140, $000000) #To make it 16:9 instead of 2.4:1
Lanczos4Resize(1280,720)


This is the most basic stuff, of course. AviSynth is very complex, but it is as complex as you want it to be.

Now that you have an AVS file, open MeGUI, open the AVS file as input in both video and audio. For video, select the "x264: Unrestricted (DXVA) - 2 pass" profile, for audio select "FAAC: Scratchpad", and select how many bits you want. Remember, this is AAC, so it is very efficient, no need to blow it up to 128. I use 48kbps for my YouTube uploads, and they sound great.
Finally, click Auto Encode, and provide the container you want and the desired final size. It will encode audio first, then do 2 video passes and when finished, will have the file ready.

TL;DR Laughing
Back to top
VGAdeadcafe




Posts: 22230
Location: ★ ಠ_ಠ ★
PostPosted: Wed, 3rd Feb 2010 00:08    Post subject:
Ha, thanks, I did it.

Although AviSource gave me an error that it couldn't find a decoder for "fourcc xvid" , so I had to use DirectShowSource.

Guess tomorrow I'll upload my first YT vid !!!
Back to top
VGAdeadcafe




Posts: 22230
Location: ★ ಠ_ಠ ★
PostPosted: Wed, 3rd Feb 2010 00:51    Post subject:
MOTHERFUCKING YouTube blocked my video right after processing ! Only I can watch it !

FFFFFFUUUUUU

Is there some scrambler I can use ?

Also, iNatan you nub, the muxed video has video/audio desynced by about 1.5 seconds. Trully fucking elite.

EDIT: Avidemux seems to work good ! Very Happy


Last edited by VGAdeadcafe on Wed, 3rd Feb 2010 01:41; edited 1 time in total
Back to top
PumpAction
[Schmadmin]



Posts: 26759

PostPosted: Wed, 3rd Feb 2010 00:54    Post subject:
vgadeadcafe take ulead videostudio 11. great nub tool Smile


=> NFOrce GIF plugin <= - Ryzen 3800X, 16GB DDR4-3200, Sapphire 5700XT Pulse
Back to top
shole




Posts: 3363

PostPosted: Wed, 3rd Feb 2010 02:24    Post subject:
eh?
if your source is .avi, and all you need to do is cut it about, virtualdubmod is STILL the easiest there is
and you don't need to recompress if you don't mind cutting it from the nearnest keyframe (shift+left & shift+right jumps by keyframes)
just cut and save with 'direct stream copy' and it'll save the file in seconds
avisynth is the most powerful, sure, but only if you want to spend ages on writing it and recompress everything
i do love me some avisynth but you don't need nuclear weapons to kill a fly
Back to top
LeoNatan
☢ NFOHump Despot ☢



Posts: 73284
Location: Ramat HaSharon, Israel 🇮🇱
PostPosted: Wed, 3rd Feb 2010 02:49    Post subject:
VGAdeadcafe wrote:
Also, iNatan you nub, the muxed video has video/audio desynced by about 1.5 seconds. Trully fucking elite.

You da nub with da shitty codecs. DirectShowSource uses the system codecs to open the files.
Back to top
Page 1 of 1 All times are GMT + 1 Hour
NFOHump.com Forum Index - Applications
Signature/Avatar nuking: none (can be changed in your profile)  


Display posts from previous:   

Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB 2.0.8 © 2001, 2002 phpBB Group