Search found 831 matches
- Wed Jun 22, 2022 9:26 am
- Forum: Blender
- Topic: No More Progress Bar in Afwatch
- Replies: 9
- Views: 300
Re: No More Progress Bar in Afwatch
Look at https://docs.python.org/3/library/re.html#match-objects >>> import re >>> re.search('Rendered (\d+)/(\d+) Tiles','Fra:1 Mem:840.29M (Peak 1682.40M) | Time:00:06.59 | Remaining:18:15.69 | Mem:1147.60M, Peak:1153.71M | Scene, ViewLayer | Rendered 1/12 Tiles, Sample 80/4096').groups() ('1', '12...
- Mon Jun 20, 2022 12:30 pm
- Forum: Blender
- Topic: No More Progress Bar in Afwatch
- Replies: 9
- Views: 300
Re: No More Progress Bar in Afwatch
So from this string we can parse and store total tiles count and the current tile number.
Code: Select all
Rendered 1/12 Tiles
- Mon Jun 20, 2022 10:50 am
- Forum: Blender
- Topic: No More Progress Bar in Afwatch
- Replies: 9
- Views: 300
Re: No More Progress Bar in Afwatch
Hi!
Does Blender(Cycles) prints some info about tiles count before the render?
If so, parser should parse tiles number first, then caclulate total percentage using tiles count.
Does Blender(Cycles) prints some info about tiles count before the render?
If so, parser should parse tiles number first, then caclulate total percentage using tiles count.
Re: Keyshot
Hi!
Afanasy just run commands.
If there is a command to render specific frame (range), it can be distributed over farm by Afanasy.
Afanasy has a JSON protocol and Python API.
If a software has a Python scripting language, it can be easily integrated with Afanasy.
Afanasy just run commands.
If there is a command to render specific frame (range), it can be distributed over farm by Afanasy.
Afanasy has a JSON protocol and Python API.
If a software has a Python scripting language, it can be easily integrated with Afanasy.
- Wed Jun 15, 2022 4:59 pm
- Forum: Setup
- Topic: Afserver access rights
- Replies: 2
- Views: 163
Re: Afserver access rights
As for a temporary solution.
You can totally disable WebGUI, and allow users to use Watch only.
You can totally disable WebGUI, and allow users to use Watch only.
- Wed Jun 15, 2022 4:56 pm
- Forum: Setup
- Topic: Afserver access rights
- Replies: 2
- Views: 163
Re: Afserver access rights
Hi! There are several rights modes in Afanasy GUIs: https://cgru.readthedocs.io/en/latest/afanasy/watch.html#modes User mode and two administrative. You can't configure rights for User/Visor/GOD modes. They are build in. There is no authentication mechanism in Afanasy server. GUI just tells that I a...
- Tue Jun 14, 2022 11:12 am
- Forum: News
- Topic: CGRU Version 3.2.2 Released.
- Replies: 4
- Views: 1162
Re: CGRU Version 3.2.2 Released.
I see your PM, and answered it.
Have you received a reply?
Have you received a reply?
- Tue Jun 14, 2022 10:16 am
- Forum: News
- Topic: CGRU Version 3.2.2 Released.
- Replies: 4
- Views: 1162
Re: CGRU Version 3.2.2 Released.
Hi!
Yes.
We can start to talk by this forum PMs or by email (in contacts https://cgru.readthedocs.io/en/latest/c ... tacts.html).
Yes.
We can start to talk by this forum PMs or by email (in contacts https://cgru.readthedocs.io/en/latest/c ... tacts.html).
- Wed Jun 08, 2022 1:07 pm
- Forum: Feature Requests
- Topic: choose CPU thread number
- Replies: 2
- Views: 232
Re: choose CPU thread number
Hello! Afanasy has no limit for a number of threads that task processes can run on. And there are no plans to implement it in the near future. Such an issue is not so rare. We and others face it periodically. And almost in all cases soft can do this limit in scene (simulation) settings. Sometimes th...
- Mon Jun 06, 2022 8:56 am
- Forum: Blender
- Topic: No More Progress Bar in Afwatch
- Replies: 9
- Views: 300
Re: No More Progress Bar in Afwatch
Thank You!