=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).
| #!/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 | |
| ## 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: |
| #!/bin/bash | |
| input_file="$1" | |
| basename=$(basename "$input_file" | sed 's/\.[^.]*$//') # remove extension | |
| timestamp=$(date +%H%M%S) | |
| output_file="${basename}_${timestamp}.mp4" | |
| ffmpeg \ | |
| -i "$input_file" \ | |
| -c:v libx264 \ # best H.264 encoder |
This python script will take an input of HTML or webarchive of the login page of https://internetbanking.mebank.com.au, parse the semi structured HTML content and return the transactions as structured data: JSON, CSV.
As of 05/12/2025, Australian bank MEBank (division of Bank of Queensland) offers an Internet banking platform with no function for transaction export, such as to CSV or OFX.
So this will do the job in the interim.