Created
May 24, 2016 09:13
-
-
Save jmiserez/65450a29fecf9d1e48eba100feaef889 to your computer and use it in GitHub Desktop.
setdefaultwebcam.bash
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 | |
# Make default camera /dev/video0 point to the "best" camera present. | |
# Source: Jason Eisner http://askubuntu.com/a/520857/145754 | |
# on question http://askubuntu.com/questions/396952/how-to-change-the-default-webcam-changing-dfaults-in-multimedia-selctor-not-wor | |
setdefaultwebcam() { | |
if [ -h /dev/video0 ]; then | |
sudo rm /dev/video0 # not first run: remove our old symlink | |
elif [ -e /dev/video0 ]; then | |
sudo mv /dev/video0 /dev/video0.original # first run: rename original video0 | |
fi | |
if [ -e /dev/video1 ]; then | |
sudo ln -s /dev/video1 /dev/video0 # symlink to video1 since it exists | |
echo "Set default camera /dev/video0 --> external camera /dev/video1" | |
elif [ -e /dev/video0.original ]; then # symlink to video0.original otherwise | |
sudo ln -s /dev/video0.original /dev/video0 | |
echo "Set default camera /dev/video0 --> integrated camera /dev/video0.original" | |
else | |
echo "Sorry, does this machine have no camera devices?" | |
ls -l /dev/video* | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment