for every ffmpeg option, there exists a matching small script written by some frustrated programmer who can't remember the arguments, so they wrote a script to remember it for them
@foone I did this with tar lmao
ctar, xtar, and ttar, which create, extract, and list contents of, gzipped tarballs.
They're in my bashrc as:
alias ctar=tar -czvf
alias xtar=tar -xzvf
alias ttar=tar -tzvf
@dragonarchitect @foone
c create
x extract
t targets
v verbose
z comprezzed (zlib)
f file (requires an argument)
the order doesn't really matter
@dragonarchitect @foone the trick is that the file must come directly after the f because it's its value!
@dragonarchitect @foone i often just `tar cf thing.tar *`, verbose is too verbose and compressing is unnecessary. personally i find the wrappers to be more cumbersome here