Command Flags
Flag | Options | Description |
---|---|---|
-codec:a |
libfaac, libfdk_aac, libvorbis | Audio Codec |
-quality |
best, good, realtime | Video Quality |
-b:a |
128k, 192k, 256k, 320k | Audio Bitrate |
-codec:v |
mpeg4, libx264, libvpx-vp9 | Video Codec |
Command Flags
Flag | Options | Description |
---|---|---|
-codec:a |
libfaac, libfdk_aac, libvorbis | Audio Codec |
-quality |
best, good, realtime | Video Quality |
-b:a |
128k, 192k, 256k, 320k | Audio Bitrate |
-codec:v |
mpeg4, libx264, libvpx-vp9 | Video Codec |
"""Store function on node | |
Usage example: | |
.. code-block:: | |
# Control node | |
ctrl_node_name = 'MY_SCRIPT_NODE' # if None, store on nuke.root() | |
# Define your functions and add them to the dictionary |
def root_settings_to_string(root): | |
"""Serialise the project settings. Used when writing the selected | |
nodes (otherwise things like the frame range would be lost) | |
""" | |
# Write non-default settings, in .nk script format. Also write | |
# user-knob definitons to avoid errors like NUKE-256 | |
rootstring = root.writeKnobs(nuke.TO_SCRIPT | nuke.WRITE_USER_KNOB_DEFS) | |
# TODO: Why doesn't writeKnobs write [first/last]_frame? Also |
import sys | |
sys.path.append(r"C:\\Users\\rafael.silva\\dev\\repo_prototype\\") | |
from importlib import reload | |
import repo | |
reload (repo) | |
from repo import * | |
import sys | |
# Add the following lines to your menu.py to adjust the zoom shortcut on Nuke's nodegraph | |
# Fell free to play with the zoom values so they fit your workflow/setup. | |
nuke.menu('Nuke').addCommand("Viewer/Zoom 1", "nuke.zoom(0.85)", "Alt+1", shortcutContext = 2) | |
nuke.menu('Nuke').addCommand("Viewer/Zoom 2", "nuke.zoom(0.20)", "Alt+2", shortcutContext = 2) | |
nuke.menu('Nuke').addCommand("Viewer/Zoom 3", "nuke.zoom(0.03)", "Alt+3", shortcutContext = 2) |
# Add the following lines to your `menu.py` | |
nuke.menu('Nuke').addCommand("Viewer/Uprez", "nuke.activeViewer().node().knob('downrez').setValue(str(nuke.activeViewer().node().knob('downrez').getValue()-1))", "Alt+z") | |
nuke.menu('Nuke').addCommand("Viewer/Downrez", "nuke.activeViewer().node().knob('downrez').setValue(str(nuke.activeViewer().node().knob('downrez').getValue()+1))", "Alt+x") |
set cut_paste_input [stack 0] | |
push $cut_paste_input | |
Group { | |
name PlanarProjection | |
help "<b>Planar Projection</b>\nGenerates 2D coordinates for points in 3D space. Type in 3D point coordinates, or use vertex selection in 3D viewer and click set to pick average of selected points, or set points to set all four points at once. \n\nYou can connect node output to scene together with your pointcloud or geometry and see where your points are located in 3d space. Double click any of them to move it in 3d space like any traditional nuke transform control. \n\nA matrix transform is also generated to be used with RotoPaint, SplineWarp and GridWarp nodes. If you are using matrix in GridWarp, points have to be in clockwise order, pick them one by one! \n\nCommand set points doesn't respect selection order! \n\nCheck out the demo video on my website! Kudos to Ivan Busquets for help with matrix math. \n\n-- developed by Vit Sedlacek 2012 www.vitsedlacek.com \n\n-- Modified by Jed Smith to make calculation time nearly inst |
// Copyright 2019 Google LLC. | |
// SPDX-License-Identifier: Apache-2.0 | |
// Polynomial approximation in GLSL for the Turbo colormap | |
// Original LUT: https://gist.github.com/mikhailov-work/ee72ba4191942acecc03fe6da94fc73f | |
// Authors: | |
// Colormap Design: Anton Mikhailov ([email protected]) | |
// GLSL Approximation: Ruofei Du ([email protected]) |
Gizmo { | |
name X_Aton1 | |
knobChanged "n = nuke.thisNode()\nif n\[\"use_3d\"].value()==1:\n n\[\"center\"].setEnabled(False)\nelse:\n n\[\"center\"].setEnabled(True)\nn\[\"iterations\"].setValue(int(n\[\"iterations\"].value()))\nif n\[\"mode\"].value()==\"Diffuse\":\n n\[\"diffuse\"].setEnabled(True)\nelse:\n n\[\"diffuse\"].setEnabled(False)\nn\[\"diffuse\"].setValue(max(n\[\"diffuse\"].value(),0))\nn\[\"iterations\"].setValue(max(n\[\"iterations\"].value(),1))" | |
addUserKnob {20 X_Aton} | |
addUserKnob {41 "Local GPU: " T BlinkScript1.gpuName} | |
addUserKnob {41 "Use GPU if Available" T BlinkScript1.useGPUIfAvailable} | |
addUserKnob {26 ""} | |
addUserKnob {12 center t "The point from which rays will be emitted."} | |
center {960 540} | |
addUserKnob {6 use_3d l "use 3d input" t "Use a <b>3D light</b> and a <b>3D camera</b> to calculate the center of the light. When enabled the <b>center</b> parameter will be disabled. Make sure both inputs (Light and Camera) are connected in order for this to work properly." -STAR |
#pragma once | |
// CLI11: Version 1.8.0 | |
// Originally designed by Henry Schreiner | |
// https://github.com/CLIUtils/CLI11 | |
// | |
// This is a standalone header file generated by MakeSingleHeader.py in CLI11/scripts | |
// from: v1.8.0 | |
// | |
// From LICENSE: |