Dаrren Kitchen Posted December 19, 2009 Share Posted December 19, 2009 Anyone else here mess thie AVISynth for video editing? I use this script for making videos that look like the presentations for Defcon: #Defcon style video composite AviSynth script by Adrian http://irongeek.com #The next line is mostly for specifying and resizing the live video to put in the corner. #It also does some other filtering to make the video specs match. Use the Trim function to make things sync. livevid = DirectShowSource("file0003.avi").ConvertToRGB24().LanczosResize(208,156).Trim(300,0,false).ConvertFPS(25) #The line tells the script what to use for the large section of the video where I put the slide show/what was being projected slides = DirectShowSource("issasc_transcoded.avi").ConvertToRGB24().LanczosResize(640,480).Trim(0,0,false).ConvertFPS(25) #Just a for a logo for the corner, I use it to give info avout the presentation. Has to be 208x324. corner = ImageSource("corner.png",pixel_type="RGB24").ConvertFPS(25) #Now to dd all the file together livepluscorner = StackVertical(livevid,corner).AudioDub(livevid) StackHorizontal(livepluscorner,slides) Also, I like AVIDemux, but it's a pain to set up for batch conversions. With Mediacoder, I can transcode just about any video format, even AVISynth scripts: http://mediacoder.sourceforge.net/ Quote Link to comment Share on other sites More sharing options...
Ingo Posted December 19, 2009 Share Posted December 19, 2009 404 Quote Link to comment Share on other sites More sharing options...
Dаrren Kitchen Posted December 19, 2009 Author Share Posted December 19, 2009 I'm pretty sure the URL is right, but the site is down right now. Quote Link to comment Share on other sites More sharing options...
deleted Posted December 20, 2009 Share Posted December 20, 2009 They have another site http://www.mediacoderhq.com/index.htm Quote Link to comment Share on other sites More sharing options...
digip Posted December 20, 2009 Share Posted December 20, 2009 Firs thit on google is the SF site, but link is down. IS this the same program: http://en.wikipedia.org/wiki/MediaCoder If so, maybe they moved to a new business model, and no longer open source on source forge? I use AVI-Synth in virtual dub from time to time, but I havent done any video editing in ages. Quote Link to comment Share on other sites More sharing options...
h3%5kr3w Posted December 20, 2009 Share Posted December 20, 2009 Heya there Iron Geek! Thanks again for the stickers!!! (@ phreaknic) Hmm.. Never used AVISynth but I have definitely heard of it. I'll check it out (though I don't have any video worth doing anything with) Quote Link to comment Share on other sites More sharing options...
psydT0ne Posted December 20, 2009 Share Posted December 20, 2009 If your chasing AVISynth, verson 2.5 comes packaged into AUTOGK,(autogordianknot)...my fav divx conversion prog. Quote Link to comment Share on other sites More sharing options...
bingowings85 Posted December 21, 2009 Share Posted December 21, 2009 AVIsynth is pure hackery and I could never get my head round it. way back in 2002 to convert an AVI to DVD you needed to split the audio using some other app then make an AVIsynth container to be burnt or something. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.