Post Rendering From Trio

WillButcher

New member
I am using a Trio1 machine and trying to post render a clip.
No matter what settings I choose I haven't been able to create a clip.
Is there something obvious I am doing wrong?

All scenes are very basic, no Transition Logic etc.

Any help would be greatly appreciated.

Thanks,

Will.
 
Postrender from Trio with VTW template

Postrender from Trio with VTW template

Hi Will,
Hope this helps. I just tried it from my Trio here towards an external Engine with great success. If it doesnt work with localhost, try your machinename:6800 which is the second Engine on the TrioOne.
 

Attachments

  • SnapshoPostRenderTemplate4Trio.zip
    4.7 KB · Views: 0
  • VTW_Template4Trio.PNG
    VTW_Template4Trio.PNG
    482.5 KB · Views: 4
Hi Lars,
I want to send several pages in viz trio at the same time in TGA RENDERER and RGBA to a folder on the disk.
How could i do it?
 
if your engine has win10 then try the gamebar capture. On the engine type Win+G where Win is the windows key on the keyboard. This will open the gamebar, you can screencapture directly on the screen. Then in Trio just fire away and the output is captured on the engine. Otherwise I wouldnt try to capture multiple pages to a sequence. It doesnt work. Only post on single scenes.
 
sorry but I don't understand you. I just want to take snapshots of several pages of my page list of my show.
 
Thank you very much Lars. I have looked at those options and they are very good. The Render VideoClip option cannot find the commands needed to create a macro and add to a function key. The gui: post_render command is the only one I can use. Are there commands for path, plugin, format, rgb or rgba, Record or stop?
 
if you enable the Trio Show Commands in the lower right corner of trio then you can see the buttonclicks you need to create a macro for it. http://documentation.vizrt.com/viz-trio-guide/3.2/Working_with_Macro_Commands.html

I used a template from VTW in trio with commands like this sent to the engine.
send_vizcmd RENDER_TO_DISK*PLUGIN SET BUILT_IN*RENDER_TO_DISK*JpegRenderer
send vizcmd RENDER_TO_DISK*CLIP_NAME SET MyFilename.jpg
send vizcmd RENDER_TO_DISK*DURATION SET 500
send vizcmd RENDER_TO_DISK*PIXEL_FORMAT SET RGBA
 
I have tried two options:

1.- Macro or Script to a Shortcut Key.
page:read 110
gui:post_render
trio:send_vizcmd RENDER_TO_DISK*PLUGIN SET BUILT_IN*RENDER_TO_DISK*TgaRenderer
trio:send_vizcmd RENDERER WINDOW_RESIZE 1920 1080
trio:send_vizcmd RENDER_TO_DISK*CLIP_NAME SET C:\Users\vizadmin\Desktop\BORRAR\110.tga
trio:send_vizcmd RENDER_TO_DISK*DURATION SET 0
trio:send_vizcmd RENDER_TO_DISK*PIXEL_FORMAT SET RGBA
trio:send_vizcmd RENDER_TO_DISK RECORD

2.- VTW Template.
Sub TWUniButton1Click(Sender)
TrioCmd ("page:read 110")
TrioCmd ("trio:send_vizcmd RENDER_TO_DISK*PLUGIN SET BUILT_IN*RENDER_TO_DISK*TgaRenderer")
TrioCmd ("trio:send_vizcmd RENDERER WINDOW_RESIZE 1920 1080")
TrioCmd ("trio:send_vizcmd RENDER_TO_DISK*CLIP_NAME SET C:\Users\vizadmin\Desktop\BORRAR\110.tga")
TrioCmd ("trio:send_vizcmd RENDER_TO_DISK*DURATION SET 0")
TrioCmd ("trio:send_vizcmd RENDER_TO_DISK*PIXEL_FORMAT SET RGBA")
TrioCmd ("trio:send_vizcmd RENDER_TO_DISK RECORD NO_OVERWRITE 1920 1080")
End sub

And neither option works.
 
Last edited:
Since your duration is set to 0 anyway, why not just send the one command?
RENDERER SNAPSHOT \\C:\Users\vizadmin\Desktop\BORRAR\110.tga RGBA 1920 1080
 
It gives me an error.

What I really want is to read a page to the preview window and then save it to a folder on the local disk (and thus with multiple pages from my page list)
 
Last edited:
Thank you very much for everything Lars, in the end I got it.

Why don't the TGArenderer plugins have a compression codec?
 
Back
Top