I want to combine two seperate video files (Split-screen) which have the same technicalities (frames, window, bitrate, etc..) but i do not want to have to re-encode them again to make one .avi file
I am trying to do it with an avisyth script using avspmod and virtualdubmod
but instead of just adding the two videos side by side it recodes them or makes the videos go from compressed to uncompressed.clip1=AVISource("C:\Users\bacev\Videos\raxx 2011-06-19 07-20-00-316.avi")
clip2=AVISource("C:\Users\bacev\Videos\raxx 2011-06-19 07-20-00-316c.avi")
StackHorizontal(clip1, clip2)
Both files are 40.1MB in size, end result gives me a 8GB single avi file.... ??? why?
+ Reply to Thread
Results 1 to 8 of 8
-
Last edited by bseos; 18th Jun 2011 at 18:17.
-
Any .avs that goes as an input in to any converter/editor MUST be (re)encoded in to some new video file if you want the output to be a new file.
You cant just "add" the videos side by site without reencoding, and the output is 8GB because you didn't choose an compression codec in virtualdubmod, and by default it encodes to uncompressed. -
You have to choose a codec. In file-save as you can choose your codec. You are saving as uncompressed rgb when you don't choose a codec.
Donatello - The Shredder? Michelangelo - Maybe all that hardware is for making coleslaw? -
When you use Avisynth with an editor the output is always re-encoded because Avisynth delivers uncompressed frames to its client application.
However, do you really need to create a new video file?
For many purposes, you can simply use the AVS script itself as your new video - it can be played directly by many players and the script is simple enough to be rendered in real time. -
Hi plps,
How to as put 4 diferent videos (2 above and 2 below) both 640x480, totally 1280x960 in final avi.
Looks here:
1 2
3 4
I tried using the stackvertical + horizontal, however does not work.
Any tips?
Tks guys.
Cauptain -
It doesn't work?
a=clip1
b=clip2
c=clip3
d=clip4
StackVertical(StackHorizontal(a,b),StackHorizontal (c,d))
Lanczos4Resize(1280,960) -
Similar Threads
-
Player to play 2 separate videos side by side for 3D effect ?
By andy15star in forum Software PlayingReplies: 9Last Post: 21st Jan 2012, 12:52 -
How to put two videos side by side
By Videographer in forum EditingReplies: 3Last Post: 12th Oct 2011, 20:57 -
Device for 2 videos side-by-side on TV?
By ehusted in forum Portable VideoReplies: 10Last Post: 18th Nov 2009, 01:10 -
compareing 2 videos side by side in same video. (sugestions)
By tessa101 in forum EditingReplies: 4Last Post: 9th Jan 2009, 02:36 -
combine 2 avi(s) into 1 side-by-side?
By dome in forum EditingReplies: 1Last Post: 22nd Oct 2008, 09:51