i have four mp4 files ...i m trying to merge the 4 videos but the quality of the video is gettin compromised..it plays fine if there is only one video..the code is::
a = DirectShowSource("star.mp4")
b = DirectShowSource("star.mp4")
c = DirectShowSource("star.mp4")
d = DirectShowSource("star.mp4")
row1 = StackVertical(a,c)
row2 = StackVertical(b,d)
mosaic = stackhorizontal (row1, row2)
return mosaic
Please help me out..!!!
+ Reply to Thread
Results 1 to 2 of 2
-
-
If you are playing the script directly, the quality should be unchanged. The problem is probably that your computer is not fast enough to play such a large video in real time. If you encode the script with high enough bitrate (or lossless), it should work OK.
I assume in your real script, you have four different videos.
Otherwise, you could just call DirectShowSource once (faster) and use StackVertical(a, a), etc.
Similar Threads
-
Avisynth - Stack 4 Videos But Too Slow - Help!
By controlalt in forum EditingReplies: 10Last Post: 14th Mar 2011, 08:36 -
AviSynth Stack question Playback multiple videos with third video audio
By oroboros74 in forum EditingReplies: 17Last Post: 6th Nov 2010, 18:57 -
mkvmerge is not splitting videos to dvd5 size+ rotating videos+resizing
By rocketman122 in forum EditingReplies: 2Last Post: 24th Aug 2010, 08:12 -
Merging two videos of wedding. Need direction.
By Montezuma45 in forum EditingReplies: 11Last Post: 22nd Jun 2009, 18:56 -
Conversion usiing VirtualDub - 720 X 560 videos into 640 X 360 videos
By candyman9999 in forum Video ConversionReplies: 1Last Post: 13th Jan 2009, 22:13