55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
# proxy_template.nk
|
|
#
|
|
# VFX Pull Processor — Nuke proxy render template
|
|
#
|
|
# process.py sets the following knobs at render time:
|
|
# Read_Input.file, Read_Input.first, Read_Input.last,
|
|
# Read_Input.origfirst, Read_Input.origlast
|
|
# Write_Output.file
|
|
#
|
|
# You may insert any intermediate nodes (grades, reformats, LUT transforms,
|
|
# etc.) between Read_Input and Write_Output. process.py only touches the
|
|
# two named nodes, so your pipeline can be as complex as needed.
|
|
#
|
|
# Codec / format notes:
|
|
# The Write_Output node below is pre-set to Apple ProRes 422 HQ (apch)
|
|
# inside a QuickTime container. Change "codec" to suit your facility:
|
|
# apco = ProRes 422 Proxy
|
|
# apcs = ProRes 422 LT
|
|
# apcn = ProRes 422
|
|
# apch = ProRes 422 HQ
|
|
# ap4h = ProRes 4444
|
|
# hap1 = HAP
|
|
# jpeg = Photo-JPEG
|
|
# On Windows you may need mov64 instead of mov32 — swap the codec
|
|
# knob accordingly.
|
|
#
|
|
Root {
|
|
inputs 0
|
|
name proxy_template.nk
|
|
first_frame 1001
|
|
last_frame 1100
|
|
fps 24
|
|
lock_range false
|
|
colorManagement Nuke
|
|
format "2048 1152 0 0 2048 1152 1 2K_Super_35(full-ap)"
|
|
}
|
|
Read {
|
|
inputs 0
|
|
file ""
|
|
name Read_Input
|
|
first 1001
|
|
last 1100
|
|
origfirst 1001
|
|
origlast 1100
|
|
on_error nearest
|
|
}
|
|
Write {
|
|
file ""
|
|
file_type mov
|
|
codec apch
|
|
mov32_codec apch
|
|
name Write_Output
|
|
create_directories true
|
|
}
|