Change state manager render output location
Zitat von fadegboye am 30. Januar 2020, 12:53 UhrHi Richard,
I would like to save my renders and comps to a different folder outside 03_Workflow > Shots > XXX > Rendering folder. I am working with freelancers with DropBox and syncing takes awhile as they setup their sync. They are modellers, textures and riggers and don't need access to them.
Is there a way to change the render location through the state manager or otherwise? I don't have much scripting knowledge so any help would be great.
Many thanks,
Femi
Hi Richard,
I would like to save my renders and comps to a different folder outside 03_Workflow > Shots > XXX > Rendering folder. I am working with freelancers with DropBox and syncing takes awhile as they setup their sync. They are modellers, textures and riggers and don't need access to them.
Is there a way to change the render location through the state manager or otherwise? I don't have much scripting knowledge so any help would be great.
Many thanks,
Femi
Zitat von Magnus am 11. Februar 2020, 14:22 UhrHi there,
This is already possible in Prism, it's just one of those many hidden features. Hopefully Richard get some time to update the docs in the future 🙂
To add custom export path edit the pipeline.ini in the project pipeline folder, please see the image attached.
-Magnus
Hi there,
This is already possible in Prism, it's just one of those many hidden features. Hopefully Richard get some time to update the docs in the future 🙂
To add custom export path edit the pipeline.ini in the project pipeline folder, please see the image attached.
-Magnus
Hochgeladene Dateien:- Du musst dich anmelden um auf Uploads zugreifen zu können.
Zitat von fadegboye am 13. Februar 2020, 14:20 UhrHi Magnus,
is there a place where I can find/use the command for PlayBlast and ImageRender. You are using "simcache" and I tried using "playblast" but it does not work.
Cheers,
Femi
Hi Magnus,
is there a place where I can find/use the command for PlayBlast and ImageRender. You are using "simcache" and I tried using "playblast" but it does not work.
Cheers,
Femi
Zitat von Magnus am 13. Februar 2020, 17:56 UhrDid you edit the pipeline.ini file and add the code as in the picture? It should show up in the statemanager in the paths dropdown. Usually you can choose between local and global, but if you add this code it should appear in that list. It shouldn’t matter what you call the path.
Did you edit the pipeline.ini file and add the code as in the picture? It should show up in the statemanager in the paths dropdown. Usually you can choose between local and global, but if you add this code it should appear in that list. It shouldn’t matter what you call the path.
Zitat von fadegboye am 14. Februar 2020, 20:09 UhrHi Magnus,
I got it working now and I see it in export state manager output path drop down. But I want to save my playblasts and renders to a different path but can't see an output path option for them. Its not available in the Imagerender or playblast tab options. Am I missing something?
Thanks again for your help.
Femi
Hi Magnus,
I got it working now and I see it in export state manager output path drop down. But I want to save my playblasts and renders to a different path but can't see an output path option for them. Its not available in the Imagerender or playblast tab options. Am I missing something?
Thanks again for your help.
Femi
Zitat von Magnus am 14. Februar 2020, 20:14 UhrHi Femi,
I see, I’ve only used it for cache export so I’m not sure if it’s in the image and playblast export settings. (Not near a computer so can’t check right now)
@richardf Do you remember how you set this up? If it is not included it would be a quick thing to add right?
Hi Femi,
I see, I’ve only used it for cache export so I’m not sure if it’s in the image and playblast export settings. (Not near a computer so can’t check right now)
@richardf Do you remember how you set this up? If it is not included it would be a quick thing to add right?
Zitat von RichardF am 17. Februar 2020, 11:24 UhrAt the moment this feature only works for the export state. When I find the time I will add it also for the render and playblast states.
But it's quite easy to modify the render script to do what you want.
At this location:
https://github.com/RichardFrangenberg/Prism/blob/39796b4b1888e2b38113f54c70bb492489702eee/Prism/Scripts/ProjectScripts/StateManagerNodes/default_ImageRender.py#L758
you can add one line like this:
outputPath = outputPath.replace(self.core.projectPath, "X:/my/external/location/")
This simply changes the output location to a location outside of your project folder.
At the moment this feature only works for the export state. When I find the time I will add it also for the render and playblast states.
But it's quite easy to modify the render script to do what you want.
At this location:
you can add one line like this:
outputPath = outputPath.replace(self.core.projectPath, "X:/my/external/location/")
This simply changes the output location to a location outside of your project folder.