View Full Version : 3d side by side to anaglyph
fenomeno83
15th July 2010, 14:00
Hello, I want convert an original side by side (true stereo) movie into anaglyph red and cyan, as stereoscopic player make in realtime..
How can I do?
there is a manner to convert a 2d movie in 3d (or into side by side, or directly into anaglyph red and cyan for example) as show here
http://forum.doom9.org/showthread.php?t=155515
but I don't find any method to convert true stereo side by side L/R 3d movie into anaglyph 3d red and cyan
thanks
Jonaldinho
30th July 2010, 21:20
Download this program and extract it to the desired location http://www.pantarheon.org/AviSynth3DToolbox/zip/ You can create any type of 3D with this programe, the list of features are listed on this page http://www.pantarheon.org/AviSynth3DToolbox/
Your going to need to create some AVS scripts, save all AVS scripts in the same folder as the stereoscopic video. Create an AVS script for your stereoscopic video and crop the right side, save it as left.
eg.
DirectShowSource("Video SideBySide.mkv", fps=23.976, audio=false, convertfps=true)
crop( 0, 0, -1280, 0)
Create another AVS Script for your stereoscopic video and crop the left side, save it as right.
eg.
DirectShowSource("Video SideBySide.mkv", fps=23.976, audio=false, convertfps=true)
crop( 1280, 0, 0, 0)
Finaly create an AVS script for your left and right AVS's to convert it to red/cyan anaglyph. You have to import the program Pantarheon3D.avsi, type in the full destination path to where it's located, then follow the rest from the example.
eg.
Import("C:\Pantarheon 3D AviSynth Toolbox\Pantarheon3D.avsi")
lv = DirectShowSource("Left.avs").ConvertToRGB
rv = DirectShowSource("Right.avs").ConvertToRGB
RCAnaglyph(lv, rv)
ConvertToYV12()
fenomeno83
31st July 2010, 09:58
thanks..I found this tool it after some days :)
newblu
5th December 2010, 22:19
Is there also a software for linux available?
jumpjack
10th April 2011, 21:02
Download this program and extract it to the desired location http://www.pantarheon.org/AviSynth3DToolbox/zip/ You can create any type of 3D with this programe, the list of features are listed on this page http://www.pantarheon.org/AviSynth3DToolbox/
Your going to need to create some AVS scripts,
Is it possibile to write a script which reads video stream from external video source rather than from a file?
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.