=ROUND( A2/(1024)^(FLOOR(log(A2)/log(1024))), 2) & " " & SWITCH( FLOOR( log(A2) / log(1024) ) ,0,"Bytes",1,"KiB",2,"MiB",3,"GiB",4,"TiB")
This method uses NDI and OBS as a bridge between Premiere Pro.
With a non-standard sequence resolution like 1080 x 1080 (1:1) or 900 x 1080 (5:6), Premiere will attempt to output exactly that resolution to the Blackmagic Decklick or UltraStudio Monitor device.
However, Blackmagic's monitoring devices are SMPTE-compliant and only output standard formats like e.g. 1080p25 (1920 x 1080).
This file contains 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
#!/usr/bin/env bash | |
# (c) Sebastian Reategui 2024 <http://github.com/seb26> | |
# MIT License | |
# USER OPTIONS | |
SANOID_HOME_CONFIG_PATH= # ~/.config/sanoid/sanoid.conf | |
SANOID_REPO_URL=https://github.com/jimsalterjrs/sanoid.git | |
This file contains 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
## Tested on Tmux 3.4, macOS | |
## Set the title of a pane to | |
## - if during an SSH session, then `user@remotehost` - which is retrieved from first parameter after `ssh` of the active ssh process in that pane's tty | |
## - if not, the pane's current path | |
set-option -g automatic-rename on | |
set-option -g automatic-rename-format '#(PANE_SSH_REMOTE_HOST=$(ps -o command= -t "$(tmux display-message -p "#{pane_tty}")" | grep ssh | grep -v grep | cut -d" " -f2); [ -z "$PANE_SSH_REMOTE_HOST" ] && PANE_TITLE=$(tmux display-message -p "#{pane_current_path}") || PANE_TITLE="[$PANE_SSH_REMOTE_HOST]"; echo "$PANE_TITLE")' | |
set-option -g status-interval 1 # seconds | |
## Same as above, but: |