Oppdaterte ffmpeg-scriptet, la til kommentarer.
[einar-bin] / ffmpeg-grab-window-with-sound.bash
index 49ea1e1bc50d8b13a150b78ed73238b0fcf0e927..5737a4c67cefbc8e3ca10cc02bd9ca10d99e61b5 100755 (executable)
@@ -1,10 +1,23 @@
 #!/bin/bash
+# A simple script to grab a screencast of a window using ffmpeg
+# Once started, select the window you want to record, and start 
+# talking/using the indicated program
 
+# Select window to grab info from
 INFO=$(xwininfo -frame)
 
-WIN_GEO=$(echo $INFO | grep -oEe 'geometry [0-9]+x[0-9]+' | grep -oEe '[0-9]+x[0-9]+')
+# Get the window size
+WIN_SIZE=$(echo $INFO | grep -oEe 'geometry [0-9]+x[0-9]+' | grep -oEe '[0-9]+x[0-9]+')
+# Get the window position
 WIN_XY=$(echo $INFO | grep -oEe 'Corners: \+[0-9]+\+[0-9]+' | grep -oEe '[0-9]+\+[0-9]+' | sed -e 's/\+/,/')
-WIN_X=$(echo $WIN_GEO | cut -d "x" -f 1 | awk '{print $1+$1%2}')
-WIN_Y=$(echo $WIN_GEO | cut -d "x" -f 2 | awk '{print $1+$1%2}')
+# Determine window width and window height, and adjust to be divisible by two
+WIN_WIDTH=$(echo $WIN_SIZE | cut -d "x" -f 1 | awk '{print $1+$1%2}')
+WIN_HEIGHT=$(echo $WIN_SIZE | cut -d "x" -f 2 | awk '{print $1+$1%2}')
 
-ffmpeg -f alsa -ac 1 -i pulse -f x11grab -r 30 -s ${WIN_X}x${WIN_Y} -i :0.0+${WIN_XY} -vcodec libx264 -vpre lossless_ultrafast -acodec libmp3lame ${HOME}/screencast-$(date +%F-%H-%M-%S).mkv
+# Run ffmpeg
+ffmpeg \
+ -f alsa -ac 1 -i pulse \ # Audio from alsa, using one channel, using the default pulse input device
+ -f x11grab -r 30 -s ${WIN_WIDTH}x${WIN_HEIGHT} -i :0.0+${WIN_XY} \ # Video from X11, framerate 30
+ -vcodec libx264 -vpre lossless_ultrafast \ # Use the libx264 video encoder with the lossless_ultrafast preset
+ -acodec libmp3lame \ # Use the libmp3lame audio encoder
+ ${HOME}/screencast-$(date +%F-%H-%M-%S).mkv # Output to a file in the user's homedir, using current date and time