View Single Post
Old 16th January 2011, 21:10   #295  |  Link
rica
Registered User
 
Join Date: Mar 2008
Posts: 2,021
Hi guys.

The test results: (with DGNV Tools)

Frame Sequential:

Quote:
LoadPlugin("C:\DG\DGDecodeNV.dll")
LoadPlugin("H264StereoSource.dll")
lv = DGSource("C:\H264StereoSource_a2\left.dgi")
rv= H264StereoSource("decoder.cfg",64140)
Interleave(lv, rv)
ConvertToYV12()
Code:
C:\H264StereoSource_a2>x264 --fps 24000/1001 --level 4.1 --sar 1:1 --aud --frames 4000 --frame-packing 5 -o FS.264 FS.avs
Side by Side

Quote:
SetMemoryMax (64)
LoadPlugin("C:\DG\DGDecodeNV.dll")
LoadPlugin("H264StereoSource.dll")
lv = DGSource("C:\H264StereoSource_a2\left.dgi")
rv= H264StereoSource("decoder.cfg",64140)
StackHorizontal(lv, rv)
ConvertToYV12()
Code:
C:\H264StereoSource_a2>x264 --fps 24000/1001 --level 4.1 --sar 1:1 --aud --frames 4000 --frame-packing 3 -o leftright.264 leftright.avs
TopBottom:

Quote:
SetMemoryMax (64)
LoadPlugin("C:\DG\DGDecodeNV.dll")
LoadPlugin("H264StereoSource.dll")
lv = DGSource("C:\H264StereoSource_a2\left.dgi")
rv= H264StereoSource("decoder.cfg",64140)
StackVertical(lv, rv)
ConvertToYV12()
Code:
C:\H264StereoSource_a2>x264 --fps 24000/1001 --level 4.1 --sar 1:1 --aud --frames 4000 --frame-packing 4 -o topbottom.264 topbottom.avs
After remuxing those *.264 files to m2ts via TSMuxer, i tested with Stereoscopic Player and all of them works fine.


_ _ _ _ __ _

As you know i used DGNVTools but not everyone does belong an nVidia card + DGNVTools.

So i gave it a go without DGNVTools.

left.avs:

Quote:
DirectShowSource("C:\H264StereoSource_a2\left.h264")
crop( 0, 4, 0, -4)
final.avs:

Quote:
LoadPlugin("H264StereoSource.dll")
lv = DirectShowSource("C:\H264StereoSource_a2\left.avs")
rv= H264StereoSource("decoder.cfg",64140)
Interleave(lv, rv)
ConvertToYV12()
Code:
:\H264StereoSource_a2>x264 --fps 24000/1001 --level 4.1 --sar 1:1 --aud --frames 4000 --frame-packing 5 -o final.264 final.avs
But something must be wrong here since the video i got finally is not good as FS.264??????

Thanks in advance
_ _ _ __

Last edited by rica; 18th January 2011 at 02:04.
rica is offline   Reply With Quote