Any chance for MVC (3D) support? If I start a 3D project in Vegas, Debugmode Frameserver only renders 1 "eye"...
Depending on what Vegas and your encoder support, you could probably create a workaround using avisynth. If possible, have Vegas output a side-by-side video. Then, use two Avisynth scripts that split the side-by-side video into left and right AVS scripts using the Crop function. Finally, supply these scripts to your encoder in place of two video files. Of course, this also depends on Frameserver allowing its footage to be accessed twice...
--
You received this message because you are subscribed to the Google Groups "frameserver-discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/frameserver-discuss/-/9J0mWFwRxY0J.
To post to this group, send email to frameserv...@googlegroups.com.
To unsubscribe from this group, send email to frameserver-dis...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/frameserver-discuss?hl=en.
Depending on what Vegas and your encoder support, you could probably create a workaround using avisynth. If possible, have Vegas output a side-by-side video. Then, use two Avisynth scripts that split the side-by-side video into left and right AVS scripts using the Crop function. Finally, supply these scripts to your encoder in place of two video files. Of course, this also depends on Frameserver allowing its footage to be accessed twice...
OK, thank you a LOT for the help - it IS possible with updated software ;)
1: Start Sony Vegas 11
2: Set project properties to full HD, 1920x1080, 3D stereoscopic side-by-side full, 32 bit full range pixel format.
3: Edit the video with transitions etc. as it should present it self
4: Select render, deselect every filter option so that Debugmode Frameserver appears. Start render, select RGB32 in Frameserver and save file "frameserver.avi"
5: Use these 2 AVS (AVIsynth) files:
File left.avs
AviSource("d:\frameserver.avi")
crop(0,0,1920,1080)
File right.avs
AviSource("d:\frameserver.avi")
crop(1920,0,0,0)
6: Go to favorite MV encoder and load the 2 .AVS files. Encode and be happy :)
--
You received this message because you are subscribed to the Google Groups "frameserver-discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/frameserver-discuss/-/MC7H0dO1Dt0J.
To post to this group, send email to frameserv...@googlegroups.com.
To unsubscribe from this group, send email to frameserver-dis...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/frameserver-discuss?hl=en.