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
#! /bin/bash | |
####################### | |
## Command for converting Backmagic Resolve encoded CineForm files to tiff sequence | |
## As of sept. 2021, resolve does not correctly indicate codec id on cineform files | |
## causing ffmepg to fail. The script forces input codec, and searches for all movies | |
## within the folder where it is run, adding the sequences to subfolders in ./image_seq | |
####################### | |
process_video () { |
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
############ | |
# Blender's camera switching system using markers bound to cameras does not work with command line rendering. | |
# It requires the gui context to exist. Also, it is not very reliable when using multiple computers to render or when | |
# animating camera visibility. | |
# | |
# This script will traverse all existing cameras, evaluating their render_hidden attribute. | |
# It will switch to the first visible camera it encounters. | |
# | |
# The scripts requires enabling allow scripts on load. The "register" optino must be checked for the text data block. | |
# The cameras render_hidden attribute must have at least one keyframe, and the camera object name must start with "cam_". |