https://forum.videohelp.com/images/imgfiles/VxXCEEH.jpg
I don't want the giant black lines on the sides of, and in-between both videos. Is there any way to get rid of them?
+ Reply to Thread
Results 1 to 10 of 10
-
-
clip1=DirectShowSource("C:\Users\username\video name 1wmv")
clip2=DirectShowSource("C:\Users\username\video name 2.wmv")
StackHorizontal(clip1,clip2)
The two videos separately contain no such black bars. When using StackHorizontal, though, they appear.
I was reading about the crop() function but was unsure how to use it for what I wanted. -
Just a not-so-wild guess --- there may be a problem between the WMV codecs and the current video drivers / video hardware itself.
Try FFVideoSource() instead of DirectShowSource(), and see if the change makes some difference.
Or you can still try DSS, but making sure the "native" WMV decoder (from Microsoft) is not being used
(that is to say, the videos will then be decoded by ffdshow, or LAV Video, or etc). -
That's a little hard to believe. In what did you open that script? With what did you take the picture? What happens when you open the script in VDub? Do you still see the black bars? And, like El Heggunte, I avoid using DirectShowSource if at all possible.
-
StackHorizontal() can't add pillarbox bars so clip1 and clip2 had the black bars already. Try this:
Code:clip1=DirectShowSource("C:\Users\username\video name 1.wmv").Crop(106,0,-106,-0) clip2=DirectShowSource("C:\Users\username\video name 2.wmv").Crop(106,0,-106,-0) StackHorizontal(clip1,clip2)
Last edited by jagabo; 28th Aug 2013 at 19:04.
-
You might want to crop two more pixels off one side to get a more efficient 640x480 4:3 frame size (8:3 after stacking). Eg: Crop(108,0,-106,-0)
-
[ deleted ]
Last edited by El Heggunte; 29th Aug 2013 at 09:15. Reason: I need much more coffee
Similar Threads
-
Another Ghosting Issue/Frame Blending Dillema
By hizzy7 in forum RestorationReplies: 136Last Post: 16th Feb 2014, 11:12 -
StackHorizontal sync the clips using delay?
By SignedupGuest in forum EditingReplies: 3Last Post: 1st Apr 2013, 18:08 -
xbox 360 capturing Dillema.
By Ramzinho in forum Capturing and VCRReplies: 0Last Post: 13th Jul 2010, 18:46 -
Stackhorizontal error
By zsuppguy in forum Newbie / General discussionsReplies: 10Last Post: 8th Jan 2010, 12:58 -
avisynth- AvsP
By deco81 in forum Newbie / General discussionsReplies: 4Last Post: 29th Dec 2008, 09:39