aboutsummaryrefslogtreecommitdiff
path: root/bin/video
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-03-07 16:13:56 -0300
committerEuAndreh <eu@euandre.org>2025-03-07 16:13:56 -0300
commitd699d164980cdbc0943b76677c2f28cd8ab88143 (patch)
treecb69829a0d373288926a6e303d5bc56e7d1e7d63 /bin/video
parentetc/sh/rc: Add -F to "tree" alias (diff)
downloaddotfiles-d699d164980cdbc0943b76677c2f28cd8ab88143.tar.gz
dotfiles-d699d164980cdbc0943b76677c2f28cd8ab88143.tar.xz
bin/{live,process,video,webcam}: Move to "clive" directory
Diffstat (limited to 'bin/video')
-rwxr-xr-xbin/video16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/video b/bin/video
deleted file mode 100755
index bf1de92..0000000
--- a/bin/video
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-set -eu
-
-BT="$(pacmd ls | awk '/^Default sink name: / && $0 = $4')"
-
-COMPATOPTS='-codec:v libx264 -profile:v baseline -level 4 -pix_fmt yuv420p -preset veryfast -codec:a aac'
-QUIETOPTS='-hide_banner -loglevel warning'
-
-exec ffmpeg \
- -f x11grab -probesize 10M -i "$DISPLAY" \
- -f pulse -guess_layout_max 0 -i "$BT".monitor \
- -f pulse -guess_layout_max 0 -i default \
- -filter_complex '[1][2]amix' -ac 2 \
- $QUIETOPTS \
- $COMPATOPTS \
- "$@"