BufferReport v1.1


 
This location is for Registered Users Only.
Perhaps you need to login or register.
Contributor: Mitja Müller-Jend
Graphical, sortable representation of the current buffer usage
Requirements:
11.0, 10.5, 10.0, 9.0, 8.0, 7.1, 7.0 or later
Linux, Mac, Windows
24 Jul 2019
304
Graphical, sortable representation of nukes buffer usage xml

I found nukes built-in Buffer Report not exactly helpful, so I created this little GUI as a weekend project. It displays nukes buffer report xml in a sortable table to help you track down nodes that cause heavy memory usage.

buffer report screenshot

  • Notes:
    • Click on the name of the node to jump to that node in the node graph.
    • The NULL row seems to refer to viewer/playback cache.
    • The buffer report gui does not auto update yet (F5 to update).
    • The bottom memory bar shows nukes overall memory usage.
  • Bugs / Suggestions:
    • Please post any bugs and suggestions here or on gitlab.
  • Installation:
    • Install Qt.py
    • Download from nukepedia or from gitlab.
    • Place the BufferReport folder inside your NUKE_PATH, .nuke folder or PYTHONPATH
    • Add following lines to your menu.py to replace the built-in buffer report:

menu = nuke.menu('Nuke').findItem('Cache')
menu.addCommand('Buffer Report', 'from BufferReport import buffer_table;br_widget = buffer_table.BufferReportWidget();br_widget.show()')

    • If you want the BufferReport as dockable panel also add following lines:

from nukescripts import panels

def get_buffer_report_widget():
    # only import if needed and make the widget restorable from saved layout.
    from BufferReport import buffer_table
    br_widget = buffer_table.BufferReportWidget()
    return br_widget

pane = nuke.getPaneFor('Properties.1')
panels.registerWidgetAsPanel('get_buffer_report_widget', 'Buffer Report', 'de.filmkorn.BufferReport', True).addToPane(pane)

  • Usage: Open the Buffer Report from Cache > BufferReport or from the Pane Menu.

Changelog:

v1.1: Support PySide2 through Qt.py

v1.0: Initial release

 

 

Happy comping!

Copyright (c) 2016 Mitja Mueller-Jend Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please login in order to download these files.

Comments   

 
0 # Lucas Pfaff 2016-12-14 13:00
Das wirkt sehr nützlich, vielen Dank für die Mühe :)

yet I have some issues to install it. I copied all the code from the readme, however it won't start ("No module named Buffer Report" when opened from Cache-Menu, widget is blank).
I can't have an env-var set here and don't use the .nuke folder for scripts, so I put it next to all my other Python-stuff in the network location; "import buffer_table" up front didn't help out either :/
 
 
0 # Mitja Müller-Jend 2016-12-14 15:05
If your other python scripts import without problems, there are only a few things I can think of. If you copied the folder, make sure the __init__.py file is included. Otherwise python won't recognize the folder as a package and will fail to import. Make sure the folder name matches the package name in the import statement (from BufferReport import buffer_table) - looks like you got a space there.
 
 
-1 # Lucas Pfaff 2016-12-14 16:13
Hey thanks for the quick reply :)
I indeed forgot the __init__.py, but that doesn't seem to fix it.
I don't have the script in its own folder, but in my general python folder, so I just dropped the "from BufferReport" in the import as well as the nuke.addCommand commands and now it's working.
Sorry, I'm very new to Python and sometimes don't get how to debug! Thanks again, this tool will sure be helpful :)
 
 
0 # olly -- 2016-12-15 13:05
Really helpful thank you.
 

You have no rights to post comments

We have 3559 guests and 109 members online