VideoHelp Forum




+ Reply to Thread
Results 1 to 10 of 10
  1. 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?
    Quote Quote  
  2. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    Post your avisynth script.

    Does your video contain the black bars?
    Quote Quote  
  3. Crop to remove black borders before stacking.
    Quote Quote  
  4. Originally Posted by Baldrick View Post
    Post your avisynth script.

    Does your video contain the black bars?
    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.
    Quote Quote  
  5. DECEASED
    Join Date
    Jun 2009
    Location
    Heaven
    Search Comp PM
    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).
    Quote Quote  
  6. Originally Posted by KurtT View Post
    The two videos separately contain no such black bars. When using StackHorizontal, though, they appear.
    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.
    Quote Quote  
  7. Originally Posted by KurtT View Post
    Code:
    clip1=DirectShowSource("C:\Users\username\video name 1wmv")
    clip2=DirectShowSource("C:\Users\username\video name 2.wmv")
    StackHorizontal(clip1,clip2)
    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)
    Note, I fixed what I assume was a typo in the first filename.
    Last edited by jagabo; 28th Aug 2013 at 19:04.
    Quote Quote  
  8. Originally Posted by jagabo View Post
    Originally Posted by KurtT View Post
    Code:
    clip1=DirectShowSource("C:\Users\username\video name 1wmv")
    clip2=DirectShowSource("C:\Users\username\video name 2.wmv")
    StackHorizontal(clip1,clip2)
    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)
    Note, I fixed what I assume was a typo in the first filename.
    This solved the issue! Thanks so much!
    Quote Quote  
  9. 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)
    Quote Quote  
  10. DECEASED
    Join Date
    Jun 2009
    Location
    Heaven
    Search Comp PM
    [ deleted ]
    Last edited by El Heggunte; 29th Aug 2013 at 09:15. Reason: I need much more coffee
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!