Quote:
Originally Posted by
freddyftbll 
thanks again for the replies!
@icester : i downloaded that program,and it seems to only accept ssif files for inputs,not mkv

I was letting virtualdub run overnight,to see the results,as it was taking a while,and of course windows updated my computer overnight,and rebooted,lol.
So before i started the project over,i played the avs file through windows media player,and rather than seeing 2 files running side by side,i saw 1 file "shorter" height wise than it should have been.It was 1/2 to 1/3 smaller from top to bottom,than if i player either original left or right file.Im starting to understand avisynth,I just gotta find the right commands to use with it i guess
I make this with avishynt
make a file with extension avs with this 3 lines:
left = DirectshowSource("left.mkv")
right = DirectshowSource("right.mkv")
StackHorizontal(left, right)
And open with virtualdubmod (the avs file) where left.mkv and right.mkv are in the same directory as the *.avs file
or:
how in my work:
left = DirectshowSource("I:\\0pelis\\mkv\\pelis\\Final v_Destination4-3D_L.mkv")
right = DirectshowSource("I:\\0pelis\\mkv\\pelis\\Final v_Destination4-3D_R.mkv")
StackHorizontal(left, right)
Where I:\\0pelis\\mkv\\pelis\\Final v_Destination4-3D_L.mkv is left.mkv and directory.
Then in video (in virtualdub) choose full conversion, the save as ....
Later probably you need resize the movie.
This script is copy of any I read in any post, by now I don't now how make resize at same time, probably is easy.
The time for final destination was (I remember - near 4 hours)
Info by: enrolao84
Full script for half SBS:
Code:
lv = DirectShowSource("left.mkv")
rv = DirectShowSource("right.mkv")
stacked = StackHorizontal(HorizontalReduceBy2(lv), HorizontalReduceBy2(rv))
ConvertToYV12(stacked)
If you have a video that requires crop, then the script becomes:
Code:
lv = DirectShowSource("left.mkv").crop(crop values)
rv = DirectShowSource("right.mkv").crop(crop values)
stacked = StackHorizontal(HorizontalReduceBy2(lv), HorizontalReduceBy2(rv))
ConvertToYV12(stacked)
Mathew Orman