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
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
set -x | |
FILTERGRAPH="[0:v]pad=iw:2*trunc(iw*16/18):(ow-iw)/2:(oh-ih)/2[padded];[padded]scale=1080:1920[resized];[resized][1:v]overlay" | |
echo "nullscr,$FILTERGRAPH,nullsink" | graph2dot | |
false | |
for f in $(find input -type f); do |
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
set nocompatible | |
filetype off | |
let vundleVimPath = "~/.vim/bundle/Vundle.vim" | |
let vundleVimInstallPluginPath = "$HOME/.vim/bundle" | |
exe 'set rtp+=' . expand(vundleVimPath) | |
call vundle#begin(vundleVimInstallPluginPath) | |
Plugin 'VundleVim/Vundle.vim' | |
"" End of Vundle package manager preamble | |
""""""""""""""""""""""""""""""""""""""""" |
OlderNewer