fixing typos

This commit is contained in:
Laith 2019-01-01 23:07:33 +01:00 committed by GitHub
parent a410a27f2a
commit 63b83a6925

View file

@ -52,7 +52,7 @@ video() { ffmpeg \
}
webcamhidef() { ffmpeg \
-f v412 \
-f v4l2 \
-i /dev/video0 \
-video_size 1920x1080 \
"$HOME/webcam-$(date '+%y%m%d-%H%M-%S').mkv" &
@ -61,7 +61,7 @@ webcamhidef() { ffmpeg \
}
webcam() { ffmpeg \
-f v412 \
-f v4l2 \
-i /dev/video0 \
-video_size 640x480 \
"$HOME/webcam-$(date '+%y%m%d-%H%M-%S').mkv" &
@ -85,8 +85,8 @@ askrecording() { \
screencast) screencast;;
audio) audio;;
video) video;;
webcam) webcamrecord;;
"webcam (hi-def)") webcamrecord;;
webcam) webcam;;
"webcam (hi-def)") webcamhidef;;
esac
}