diff options
author | Antonio García-Domínguez <nyoescape@gmail.com> | 2017-08-21 09:13:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 09:13:35 +0200 |
commit | c5cc2c77b6d4c1af14c05a1b5fc04cf414c4b8a7 (patch) | |
tree | db2273e1e72f871fa43a2636de425d5042885c7a | |
parent | e3b70f966fc1c82cf504e255fc376ebd9ef64a9e (diff) | |
parent | cd2303edcf3c335adde841e4e1ba973e8c5ecb00 (diff) |
Merge pull request #47 from timmot/master
Add alternative location for pulse gst plugin
-rwxr-xr-x | prepare-videochat.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prepare-videochat.sh b/prepare-videochat.sh index 5babe86..55d28c7 100755 --- a/prepare-videochat.sh +++ b/prepare-videochat.sh @@ -385,7 +385,7 @@ elif [ $CAPTURE_STREAM = v -o $CAPTURE_STREAM = av ]; then fi # check if the user has the pulse gst plugin installed -if find "/usr/lib/gstreamer-$GST_VER/libgstpulse.so" "/usr/lib/$(uname -m)-linux-gnu/gstreamer-$GST_VER/libgstpulse.so" 2>/dev/null | egrep -q '.*'; then +if find "/usr/lib/gstreamer-$GST_VER/libgstpulseaudio.so" "/usr/lib/gstreamer-$GST_VER/libgstpulse.so" "/usr/lib/$(uname -m)-linux-gnu/gstreamer-$GST_VER/libgstpulse.so" 2>/dev/null | egrep -q '.*'; then # plugin installed, do nothing # info "Found the pulse gst plugin" : |