Progress log #980
tolgaburcak
started this conversation in
General
Replies: 1 comment 1 reply
-
Most likely, it's related to the AE language used. Nexrender parses AE log files to measure time, and so it happens AE renders time stuff differently in some languages. Alternatively, your rendering composition uses frames instead of seconds to measure progress, which also influences how logs are written. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I couldn't log the progress. I can see files in my tmp folder. It starts rendering, result.25320.22148.m4v file size is increasing slowly but I can't see the progress on console.log(). Do you have any suggestion about this?
code:
result.on('created', job => console.log('project has been created'))
result.on('started', job => console.log('project rendering started'))
result.on('progress', (job, percents) => console.log('project is at: ' + percents + '%'))
result.on('finished', job => console.log('project rendering finished'))
result.on('error', err => console.log('project rendering error', err))
cmd output:
project has been created
project rendering started
project is at: 100%
project rendering finished
worker output:
...
[-pH_niPRfVaEdp5lQclrS] rendering took ~83.706 sec.
...
Thanks
Beta Was this translation helpful? Give feedback.
All reactions