某主管希望write节点有多线程渲染的功能,而nuke中的render in background功能恰恰可以多个渲染任务同时执行,于是我考虑使用这个方法来实现。

调 试过程中发现renderinbackground对内存的管理是堪忧的,所以我添加了控制多线程渲染时内存消耗的参数。这个功能写起来很快,写完之后还 得考虑artist的使用习惯,把这个功能做成一个单独的节点放在工具栏里实在不是一个明智之举,artist会嫌麻烦,所以我决定把这个功能集成到 write节点上。
这是最终执行结果:
write节点里多了一个分页,artist用起来很顺手,但是这个功能受限于计算机计算及内存能力,毕竟是单机执行多线程,资源是吃紧的,工程简单,这个功能非常有优势,速度快了好几倍;工程复杂,内存吃紧,这个功能就鸡肋了。
Talk is cheap,show you the code:
#####################################################################
 
 
def RenderInBackground():
    node = nuke.thisNode()
    if node.knob('User'):
        print 'exist'
    else:
        knob_tk = nuke.Tab_Knob('User','RenderInBackground')
        node.addKnob(knob_tk)
    if node.knob('information'):
        print 'exist'
    else:
        knob_tk2 = nuke.Text_Knob('information','Info:')
        knob_tk2.setValue("Please make sure your setting didn't overflow available memory,so enough memory is necessary.")
        node.addKnob(knob_tk2)
    if node.knob('firstframe_1'):
        print 'exist'
    else:
        knob_ff = nuke.Int_Knob('firstframe_1','FirstFrame')
        knob_ff.setValue(1001)
        node.addKnob(knob_ff)
        knob_ff.setTooltip('entry first frame of render range')
    if node.knob('lastframe_1'):
        print 'exist'
    else:
        knob_lf = nuke.Int_Knob('lastframe_1','LastFrame')
        knob_lf.setValue(1100)
        node.addKnob(knob_lf)
        knob_lf.setTooltip('entry last frame of render range')
    if node.knob('splitNum'):
        print 'exist'
    else:
        knob_sn = nuke.Int_Knob('splitNum','splitNum')
        knob_sn.setValue(2)
        node.addKnob(knob_sn)
        knob_sn.setTooltip('entry number of splited framerange')
    if node.knob('maxThreads'):
        print 'exist'
    else:
        knob_mt = nuke.Int_Knob('maxThreads','maxThreads')
        knob_mt.setValue(4)
        node.addKnob(knob_mt)
    if node.knob('maxCache'):
        print 'exist'
    else:
        knob_mc = nuke.Int_Knob('maxCache','maxCache')
        knob_mc.setValue(2000)
        node.addKnob(knob_mc)
    if node.knob('unnamed'):
        print 'exist'
    else:
        knob_tt = nuke.Text_Knob('unnamed','')
        node.addKnob(knob_tt)
    if node.knob('renderinbackground'):
        print 'exist'
    else:
        knob_py = nuke.PyScript_Knob('renderinbackground','RenderInBackground')
        node.addKnob(knob_py)
        knob_py.setCommand('''import time
if nuke.thisNode().knob('file').value().find(':/') == -1:
    nuke.message('file is empty')
else:
    if os.path.exists(os.path.dirname(nuke.thisNode().knob('file').value()))==True:
        print nuke.thisNode().knob('file').value()
    else:
        os.makedirs(os.path.dirname(nuke.thisNode().knob('file').value()))

firstframe_2 = int(nuke.thisNode().knob('firstframe_1').value())
    lastframe_2 = int(nuke.thisNode().knob('lastframe_1').value())
    splitnum_2 = int(nuke.thisNode().knob('splitNum').value())

subrange = int((lastframe_2 + 1 - firstframe_2)/splitnum_2)

maxthreads = nuke.thisNode().knob('maxThreads').value()
    maxcache = nuke.thisNode().knob('maxCache').value()
    view = nuke.views()
    limits = {'maxThreads':maxthreads,'maxCache':'%dM'%maxcache}

for i in range(splitnum_2+1):
        framerange = nuke.FrameRange()
        frameranges = nuke.FrameRanges()

if firstframe_2 - 1 + subrange * (i+1) >= lastframe_2:
            framerange.setLast(lastframe_2)
        else:
            framerange.setLast(firstframe_2 - 1 + subrange * (i+1))
        if lastframe_2 >= firstframe_2 + subrange * i:
            framerange.setFirst(firstframe_2 + subrange * i)
            framerange.setIncrement(1)
            frameranges.add(framerange)
            time.sleep(0.1)
            print frameranges
            nuke.executeBackgroundNuke(nuke.EXE_PATH,[nuke.thisNode()],frameranges,view,limits)
        else:
            pass

inputx = nuke.thisNode()['xpos'].value()
    inputy = nuke.thisNode()['ypos'].value()
    newnode = nuke.nodes.Read(file=nuke.thisNode().knob('file').value(),first=firstframe_2,last=lastframe_2,)
    newnode.setXYpos(int(inputx),int(inputy)+50)'''
    )

nuke.addOnCreate(RenderInBackground,nodeClass = 'Write')

写了一个RenderInBackground的脚本的更多相关文章

  1. 自己写的一个tomcat发布脚本

    闲来无事,就自己写一个shell脚本,方便自己以后在服务器上部署tomcat下的项目.我本地用maven打包,然后每次都要人工去切换一堆堆目录,有点繁琐,所以我写了下面的shell脚本. #! /bi ...

  2. 基于七牛Python SDK写的一个批量下载脚本

    前言 上一篇基于七牛Python SDK写的一个同步脚本所写的脚本只支持上传,不支持文件下载. 虽然这个需求不太强烈,但有可能有人(在备份.迁移时)需要,而官方有没提供对应的工具,所以我就把这个功能也 ...

  3. 把登录和退出功能单独写到一个公共.py脚本,其它用例test1,test2调用公共登录,退出函数

    公共登录/退出函数模块(login_exit.py): #coding:utf-8import timedef login(driver, username, password):#此处的driver ...

  4. python3 写的一个压测脚本(有待开发)

    import requests import queue import threading import time status_code_list = [] exec_time = 0 class ...

  5. python+imageMagick写的一个压缩图片脚本

    !/usr/bin/python import os import cPickle as p import re import Image def imageCompre(imagedir = '.' ...

  6. 写了一个常规性生成merge 的小脚本

    现在使用数据库来写存储过程,动不动参数就会用到xml ,当然罗,优势也很明显,参数相对固定,而且灵活,如果要修改或者什么的,中间接口层也不需要做变化,只需要修改封装的存储过程以及程序传参就ok了. 随 ...

  7. 初步学习nodejs,业余用node写个一个自动创建目录和文件的小脚本,希望对需要的人有所帮助

    初步学习nodejs,业余用node写个一个自动创建目录和文件的小脚本,希望对需要的人有所帮助,如果有bug或者更好的优化方案,也请批评与指正,谢谢,代码如下: var fs = require('f ...

  8. 手把手用Monkey写一个压测脚本

    版权声明: 本账号发布文章均来自公众号,承香墨影(cxmyDev),版权归承香墨影所有. 允许有条件转载,转载请附带底部二维码. 一.为什么需要一个测试脚本? 昨天讲解了Android Monkey命 ...

  9. 写了一个hiero中添加自定义Token的脚本

    Hiero自带Token往往不够用,shotname中自带版本号的情况下要升级版本会很麻烦,比如Shot_0001_v001这样一个序列名,要升级为Shot_0001_v002就必须把_v001之前的 ...

随机推荐

  1. Linux命令--1

    之前一直在学习Linux,不过有点一天打鱼两天晒网的意味,现在希望通过写博客的形式,积累更多的知识,也希望可以帮到同在linux坑中的各位小伙伴们~ PS:我的笔记重点在于通俗,很多命令一百度就有,但 ...

  2. 微软Power BI 每月功能更新系列——12月Power BI 新功能学习

    Power BI Desktop12月产品功能摘要 Power BI 作为实力宠粉达人每月更新不来点新花样,怎么对得起翘首期待的实力铁粉您嘞!一起来看看这一次的Power BI版本的更新又给我们带来了 ...

  3. 【转载】 pytorch之添加BN

    原文地址: https://blog.csdn.net/weixin_40123108/article/details/83509838 ------------------------------- ...

  4. jqGrid 清空单元格的方法

    在工作中,使用到jqGrid的场景是比较多的. 今天在工作中遇到了一个jqGrid的问题,当将单元格的值设置成 '' 空字符串的时候,竟然不会修改成功. $("#mygrid"). ...

  5. UE4 IOS 开发之传感器输入

    Iphone的传感器包括陀螺仪.加速计等. UE4提供了4个按键来收集这些传感器的3维数据.具体位置:ProjectSettings->Input. 其中Tilt数据可以反映Iphone目前的物 ...

  6. 07 Object类,Scanner,Arrays类,String类,StringBuffer类,包装类

    Object类的概述:* A:Object类概述    * 类层次结构的根类    * 所有类都直接或者间接的继承自该类* B:构造方法    * public Object()    * 子类的构造 ...

  7. acm 2057

    ////////////////////////////////////////////////////////////////////////////////#include<iostream ...

  8. hdu1686 Oulipo KMP/AC自动机

    The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e ...

  9. Python中元组、列表、字典的遍历和相互转化

    一.元组,列表,字典的遍历 1.1 元组的遍历 元组的遍历借助 range() 函数,基本思想是通过元组的长度使用for循环进行遍历,代码如下:     fruits=("apple&quo ...

  10. Go Example--通道选择器

    package main import ( "fmt" "time" ) func main() { c1 := make(chan string) c2 := ...