This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doskey nuke="C:\Program Files\Nuke10.5v2\Nuke10.5.exe" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global proc shelf_Custom () { | |
global string $gBuffStr; | |
global string $gBuffStr0; | |
global string $gBuffStr1; | |
shelfButton | |
-enableCommandRepeat 1 | |
-enable 1 | |
-width 35 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
net stop WTabletServicePro | |
net start WTabletServicePro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use ffmpeg to encode an input to a video with settings suggested by youtube. | |
# Read more at https://support.google.com/youtube/answer/1722171?hl=en | |
ffmpeg -i input.%04d.dpx -c:v libx264 -movflags faststart -crf 0 -pix_fmt yuv420p -r 24 -g 12 -bf 2 -c:a libfdk_aac -b:a 384k -ar 48000 output.mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# files need to be named according to this convention: | |
# name.[####].part_##.ext | |
# example.1001.part_01.exr | |
filext=jpg | |
for i in `ls -t *part_01*`; do | |
echo 'Merging parts for '$i | |
echo ${i%part*}part_01.$filext | |
convert +append ${i%part*}part_01.$filext ${i%part*}part_02.$filext ${i%part*}_top.$filext |
NewerOlder