I have combined two different protein simulation videos (each 700 KB) to a single video for side by side comparision horizontally, but the single file size has increased to 130 MB.
I have used Virtualdub and Avisynth for this purpose.
I have used AVI format and i need to save the single file in the same format.
Avisynth code (.avs) as follows:
version()
ReduceBy2
a = AVISource("C:\Users\suresh\Desktop\VirtualDub-1\a1.avi")
b = AVISource("C:\Users\suresh\Desktop\VirtualDub-1\a2.avi")
StackHorizontal(a,b)
Can any one point me how to reduce the file size without losing the resolution of the video?.
Thank you for your time.